-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
26 lines (23 loc) · 891 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
module github.com/gojek/xp
go 1.17
require (
github.com/ghodss/yaml v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.3.0
github.com/urfave/cli v1.20.0
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/mattn/goveralls v0.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.1.0 // indirect
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect
golang.org/x/text v0.3.0 // indirect
golang.org/x/tools v0.0.0-20190517183331-d88f79806bbd // indirect
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)