mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
25 lines
623 B
Modula-2
25 lines
623 B
Modula-2
module go.etcd.io/etcd/raft/v3
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/cockroachdb/datadriven v1.0.2
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/protobuf v1.5.3
|
|
go.etcd.io/etcd/client/pkg/v3 v3.5.11
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
)
|
|
|
|
// Bad imports are sometimes causing attempts to pull that code.
|
|
// This makes the error more explicit.
|
|
replace go.etcd.io/etcd => ./FORBIDDEN_DEPENDENCY
|
|
|
|
replace go.etcd.io/etcd/v3 => ./FORBIDDEN_DEPENDENCY
|
|
|
|
replace go.etcd.io/etcd/client/pkg/v3 => ../client/pkg
|