-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (29 loc) · 1.16 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module github.com/pankona/hashira
require (
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/gofrs/uuid v4.4.0+incompatible
github.com/mattn/go-runewidth v0.0.16
github.com/pankona/gocui v0.3.1-0.20190107094646-a6233010013f
github.com/pankona/orderedmap v0.0.0-20190220081458-0d2a73efbdac
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.10.0
go.etcd.io/bbolt v1.3.10
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.35.2
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jesseduffield/termbox-go v0.0.0-20200823212418-a2289ed6aafe // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.20