-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
34 lines (31 loc) · 1.13 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
33
34
module github.com/boreq/bolt-ui
require (
github.com/NYTimes/gziphandler v1.1.0
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/boreq/errors v0.1.0
github.com/boreq/guinea v0.0.0-20190218203212-75c10cec45e9
github.com/boreq/rest v0.1.0
github.com/fxamacker/cbor/v2 v2.7.0
github.com/google/wire v0.6.0
github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec
github.com/julienschmidt/httprouter v1.2.0
github.com/oklog/ulid/v2 v2.0.2
github.com/pkg/errors v0.8.1
github.com/polydawn/refmt v0.89.0
github.com/rs/cors v1.6.0
github.com/stretchr/testify v1.7.0
go.etcd.io/bbolt v1.3.3
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/sys v0.23.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
go 1.23