mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Add go.mod and go.sum to fix issue below, ``` $ go build ../../server/etcdserver/api/snap/snapshotter.go:33:2: missing go.sum entry for module providing package go.etcd.io/raft/v3 (imported by go.etcd.io/etcd/server/v3/etcdserver/api/snap); to add: go get go.etcd.io/etcd/server/v3/etcdserver/api/snap@v3.6.0-alpha.0 ../../server/storage/wal/walpb/record.pb.go:14:2: missing go.sum entry for module providing package go.etcd.io/raft/v3/raftpb (imported by go.etcd.io/etcd/v3/tools/etcd-dump-logs); to add: go get go.etcd.io/etcd/v3/tools/etcd-dump-logs ``` Signed-off-by: Benjamin Wang <wachao@vmware.com>
43 lines
1.5 KiB
Modula-2
43 lines
1.5 KiB
Modula-2
module go.etcd.io/etcd/tools/etcd-dump-logs/v3
|
|
|
|
go 1.19
|
|
|
|
replace (
|
|
go.etcd.io/etcd/api/v3 => ../../api
|
|
go.etcd.io/etcd/client/pkg/v3 => ../../client/pkg
|
|
go.etcd.io/etcd/pkg/v3 => ../../pkg
|
|
go.etcd.io/etcd/server/v3 => ../../server
|
|
)
|
|
|
|
require (
|
|
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0
|
|
go.etcd.io/etcd/client/pkg/v3 v3.6.0-alpha.0
|
|
go.etcd.io/etcd/pkg/v3 v3.6.0-alpha.0
|
|
go.etcd.io/etcd/server/v3 v3.0.0-00010101000000-000000000000
|
|
go.etcd.io/raft/v3 v3.0.0-20221201111702-eaa6808e1f7a
|
|
go.uber.org/zap v1.24.0
|
|
)
|
|
|
|
require (
|
|
github.com/benbjohnson/clock v1.1.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/coreos/go-semver v0.3.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/prometheus/client_golang v1.12.2 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
golang.org/x/net v0.2.0 // indirect
|
|
golang.org/x/sys v0.2.0 // indirect
|
|
golang.org/x/text v0.4.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect
|
|
google.golang.org/grpc v1.51.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
)
|