...
1module go.etcd.io/etcd/raft/v3
2
3go 1.21
4
5require (
6 github.com/cockroachdb/datadriven v1.0.2
7 github.com/gogo/protobuf v1.3.2
8 github.com/golang/protobuf v1.5.4
9 go.etcd.io/etcd/client/pkg/v3 v3.5.13
10)
11
12require (
13 github.com/google/go-cmp v0.5.9 // indirect
14 github.com/pmezard/go-difflib v1.0.0 // indirect
15 google.golang.org/protobuf v1.33.0 // indirect
16)
17
18// Bad imports are sometimes causing attempts to pull that code.
19// This makes the error more explicit.
20replace go.etcd.io/etcd => ./FORBIDDEN_DEPENDENCY
21
22replace go.etcd.io/etcd/v3 => ./FORBIDDEN_DEPENDENCY
23
24replace go.etcd.io/etcd/client/pkg/v3 => ../client/pkg
View as plain text