-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
32 lines (29 loc) · 1.21 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
module github.com/nccgroup/kubetcd
go 1.19
require (
github.com/coreos/bbolt v1.3.1-coreos.3
github.com/coreos/etcd v3.1.11+incompatible
github.com/google/safetext v0.0.0-20220914124124-e18e3fe012bf
github.com/spf13/cobra v0.0.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.0.0-20180521142803-feb48db456a5
k8s.io/apimachinery v0.0.0-20180515182440-31dade610c05
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7 // indirect
github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/json-iterator/go v0.0.0-20171212105241-13f86432b882 // indirect
github.com/spf13/pflag v1.0.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/inf.v0 v0.9.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)