41 lines
1.3 KiB
Modula-2
41 lines
1.3 KiB
Modula-2
module github.com/tx7do/kratos-bootstrap/config/consul
|
|
|
|
go 1.22.0
|
|
|
|
toolchain go1.22.1
|
|
|
|
replace (
|
|
github.com/armon/go-metrics => github.com/hashicorp/go-metrics v0.4.1
|
|
github.com/imdario/mergo => dario.cat/mergo v0.3.16
|
|
|
|
github.com/tx7do/kratos-bootstrap/api => ../../api
|
|
)
|
|
|
|
require (
|
|
github.com/go-kratos/kratos/v2 v2.8.2
|
|
github.com/hashicorp/consul/api v1.30.0
|
|
github.com/tx7do/kratos-bootstrap/api v0.0.5
|
|
)
|
|
|
|
require (
|
|
dario.cat/mergo v1.0.1 // indirect
|
|
github.com/armon/go-metrics v0.5.3 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
github.com/hashicorp/go-hclog v1.6.3 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
github.com/hashicorp/golang-lru v1.0.2 // indirect
|
|
github.com/hashicorp/serf v0.10.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
|
|
golang.org/x/sys v0.27.0 // indirect
|
|
google.golang.org/protobuf v1.35.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|