mirror of https://github.com/k3s-io/k3s
21 lines
613 B
Modula-2
21 lines
613 B
Modula-2
module go.etcd.io/etcd/raft/v3
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054 // indirect
|
|
github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
go.etcd.io/etcd/client/pkg/v3 v3.5.0
|
|
)
|
|
|
|
// 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
|