-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
28 lines (25 loc) · 930 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
module github.com/brightzheng100/vind
require (
github.com/docker/docker v1.13.1
github.com/ghodss/yaml v1.0.0
github.com/google/go-github/v24 v24.0.1
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.3.0
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.2.2
gopkg.in/yaml.v2 v2.2.2
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.3.3 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c // indirect
)
go 1.23