-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
29 lines (24 loc) · 919 Bytes
/
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
module github.com/uc-cdis/gen3-client
go 1.17
require (
github.com/golang/mock v1.6.0
github.com/hashicorp/go-version v1.4.0
github.com/mitchellh/go-homedir v1.1.0
github.com/spf13/cobra v1.3.0
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e
gopkg.in/cheggaaa/pb.v1 v1.0.28
gopkg.in/ini.v1 v1.66.3
)
require (
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.4.0
replace gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.1