mirror of https://github.com/status-im/consul.git
83 lines
3.4 KiB
Modula-2
83 lines
3.4 KiB
Modula-2
module github.com/hashicorp/consul/testing/deployer
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/avast/retry-go v3.0.0+incompatible
|
|
github.com/google/go-cmp v0.5.9
|
|
github.com/hashicorp/consul-server-connection-manager v0.1.4
|
|
github.com/hashicorp/consul/api v1.26.1
|
|
github.com/hashicorp/consul/proto-public v0.5.1
|
|
github.com/hashicorp/consul/sdk v0.15.0
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
|
github.com/hashicorp/go-hclog v1.5.0
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
|
github.com/hashicorp/go-version v1.2.1
|
|
github.com/hashicorp/hcl/v2 v2.16.2
|
|
github.com/mitchellh/copystructure v1.2.0
|
|
github.com/rboyer/safeio v0.2.2
|
|
github.com/stretchr/testify v1.8.3
|
|
golang.org/x/crypto v0.14.0
|
|
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63
|
|
google.golang.org/grpc v1.56.3
|
|
google.golang.org/protobuf v1.30.0
|
|
)
|
|
|
|
require (
|
|
github.com/agext/levenshtein v1.2.1 // indirect
|
|
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
|
|
github.com/armon/go-metrics v0.4.1 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/fatih/color v1.14.1 // indirect
|
|
github.com/go-logr/logr v1.2.4 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/go-netaddrs v0.1.0 // indirect
|
|
github.com/hashicorp/go-uuid v1.0.3 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/hashicorp/serf v0.10.1 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_golang v1.11.1 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
github.com/zclconf/go-cty v1.12.1 // indirect
|
|
golang.org/x/net v0.17.0 // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
golang.org/x/text v0.13.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/api v0.26.2 // indirect
|
|
k8s.io/apimachinery v0.26.2 // indirect
|
|
k8s.io/klog/v2 v2.100.1 // indirect
|
|
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
|
|
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/hashicorp/consul/api => ../../api
|
|
github.com/hashicorp/consul/proto-public => ../../proto-public
|
|
github.com/hashicorp/consul/sdk => ../../sdk
|
|
)
|