...
1module go.etcd.io/etcd/pkg/v3
2
3go 1.21
4
5require (
6 github.com/creack/pty v1.1.11
7 github.com/dustin/go-humanize v1.0.0
8 github.com/spf13/cobra v1.1.3
9 github.com/spf13/pflag v1.0.5
10 github.com/stretchr/testify v1.8.4
11 go.etcd.io/etcd/client/pkg/v3 v3.5.13
12 go.uber.org/zap v1.17.0
13 google.golang.org/grpc v1.59.0
14)
15
16require (
17 github.com/davecgh/go-spew v1.1.1 // indirect
18 github.com/golang/protobuf v1.5.4 // indirect
19 github.com/inconshreveable/mousetrap v1.0.0 // indirect
20 github.com/pmezard/go-difflib v1.0.0 // indirect
21 go.uber.org/atomic v1.7.0 // indirect
22 go.uber.org/multierr v1.6.0 // indirect
23 golang.org/x/net v0.17.0 // indirect
24 golang.org/x/sys v0.13.0 // indirect
25 golang.org/x/text v0.13.0 // indirect
26 google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
27 google.golang.org/protobuf v1.33.0 // indirect
28 gopkg.in/yaml.v3 v3.0.1 // indirect
29)
30
31replace (
32 go.etcd.io/etcd => ./FORBIDDEN_DEPENDENCY
33 go.etcd.io/etcd/api/v3 => ./FORBIDDEN_DEPENDENCY
34 go.etcd.io/etcd/client/pkg/v3 => ../client/pkg
35 go.etcd.io/etcd/tests/v3 => ./FORBIDDEN_DEPENDENCY
36 go.etcd.io/etcd/v3 => ./FORBIDDEN_DEPENDENCY
37)
View as plain text