diff --git a/go.mod b/go.mod index 54bee19..bd9da71 100644 --- a/go.mod +++ b/go.mod @@ -3,11 +3,13 @@ module git.bullercodeworks.com/brian/gask go 1.16 require ( - git.bullercodeworks.com/brian/go-todotxt v1.0.0 + git.bullercodeworks.com/brian/go-todotxt v1.0.1 git.bullercodeworks.com/brian/termbox-screen v0.0.0-20190712162752-c91f70ac38c6 git.bullercodeworks.com/brian/termbox-util v0.0.0-20200220160819-dc6d6950ba00 git.bullercodeworks.com/brian/user-config v0.0.0-20170914134719-16e743ec93a2 github.com/BurntSushi/toml v0.3.1 // indirect github.com/casimir/xdg-go v0.0.0-20160329195404-372ccc2180da // indirect + github.com/mattn/go-runewidth v0.0.10 // indirect github.com/nsf/termbox-go v1.1.0 + github.com/rivo/uniseg v0.2.0 // indirect ) diff --git a/go.sum b/go.sum index 107ec4c..64964b8 100644 --- a/go.sum +++ b/go.sum @@ -2,6 +2,8 @@ git.bullercodeworks.com/brian/go-todotxt v0.0.0-20210317161427-e7c5dfe04c31 h1:E git.bullercodeworks.com/brian/go-todotxt v0.0.0-20210317161427-e7c5dfe04c31/go.mod h1:MS8w9yuyAlDxjdxe/3mgfOovifM8aMbH7Z2Ac14J7N8= git.bullercodeworks.com/brian/go-todotxt v1.0.0 h1:FnezIGRtDBYHXx/CenjOKhtv35gR8Y7VGyNT+zpcX/k= git.bullercodeworks.com/brian/go-todotxt v1.0.0/go.mod h1:MS8w9yuyAlDxjdxe/3mgfOovifM8aMbH7Z2Ac14J7N8= +git.bullercodeworks.com/brian/go-todotxt v1.0.1 h1:iHfc2s9hb9DD4y6y+mc8SDZmm0M17tQWb42EOva+qmw= +git.bullercodeworks.com/brian/go-todotxt v1.0.1/go.mod h1:MS8w9yuyAlDxjdxe/3mgfOovifM8aMbH7Z2Ac14J7N8= git.bullercodeworks.com/brian/termbox-screen v0.0.0-20190712162752-c91f70ac38c6 h1:H9ZIWuAcWRHZ4NqXWiIv9RFS35U4wL90fiPm5kbbDJ8= git.bullercodeworks.com/brian/termbox-screen v0.0.0-20190712162752-c91f70ac38c6/go.mod h1:ELIb2SMnFJN+1SY1cThGR55UQyke8AcFBHr9y071j90= git.bullercodeworks.com/brian/termbox-util v0.0.0-20200220160819-dc6d6950ba00 h1:h2IQSbnljgd41m6uriwE3SewC5MsHez8cOrpgQ/OnF0= @@ -14,5 +16,10 @@ github.com/casimir/xdg-go v0.0.0-20160329195404-372ccc2180da h1:hjpZV7G49m1bly++ github.com/casimir/xdg-go v0.0.0-20160329195404-372ccc2180da/go.mod h1:dywSSi3sMtJn2IjiYfJciP9tjVVeIVRa7AE7N5WLUBo= github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.10 h1:CoZ3S2P7pvtP45xOtBw+/mDL2z0RKI576gSkzRRpdGg= +github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= github.com/nsf/termbox-go v1.1.0 h1:R+GIXVMaDxDQ2VHem5vO5h0mI8ZxLECTUNw1ZzXODzI= github.com/nsf/termbox-go v1.1.0/go.mod h1:T0cTdVuOwf7pHQNtfhnEbzHbcNyCEcVU4YPpouCbVxo= +github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=