-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
33 lines (29 loc) · 1.11 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
module github.com/wtsi-hgi/go-farmer
go 1.22.0
require github.com/elastic/go-elasticsearch/v7 v7.17.10
require (
github.com/deneonet/benc v1.0.9
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/inconshreveable/log15 v2.16.0+incompatible
github.com/mailru/easyjson v0.7.7
github.com/smartystreets/goconvey v1.8.1
github.com/spf13/cobra v1.2.1
golang.org/x/sync v0.7.0
gopkg.in/tylerb/graceful.v1 v1.2.15
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/go-stack/stack v1.8.1 // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/smarty/assertions v1.15.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/exp v0.0.0-20240707233637-46b078467d37 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
)