41 lines
1.4 KiB
Modula-2
41 lines
1.4 KiB
Modula-2
module github.com/tx7do/kratos-bootstrap/remoteconfig/etcd
|
|
|
|
go 1.24.0
|
|
|
|
toolchain go1.24.3
|
|
|
|
replace (
|
|
github.com/tx7do/kratos-bootstrap/api => ../../api
|
|
github.com/tx7do/kratos-bootstrap/utils => ../../utils
|
|
)
|
|
|
|
require (
|
|
github.com/go-kratos/kratos/v2 v2.8.4
|
|
github.com/tx7do/kratos-bootstrap/api v0.0.21
|
|
go.etcd.io/etcd/client/v3 v3.6.0
|
|
google.golang.org/grpc v1.72.2
|
|
)
|
|
|
|
require (
|
|
dario.cat/mergo v1.0.2 // indirect
|
|
github.com/coreos/go-semver v0.3.1 // indirect
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
go.etcd.io/etcd/api/v3 v3.6.0 // indirect
|
|
go.etcd.io/etcd/client/pkg/v3 v3.6.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
golang.org/x/net v0.40.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
golang.org/x/text v0.25.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|