2019-03-26 21:04:58 +00:00
|
|
|
module github.com/hashicorp/consul/api
|
|
|
|
|
2023-02-18 19:58:39 +00:00
|
|
|
go 1.19
|
2019-03-26 21:04:58 +00:00
|
|
|
|
2024-03-05 14:52:55 +00:00
|
|
|
replace (
|
|
|
|
github.com/hashicorp/consul/proto-public => ../proto-public
|
|
|
|
github.com/hashicorp/consul/sdk => ../sdk
|
|
|
|
)
|
2019-03-26 21:04:58 +00:00
|
|
|
|
2024-02-29 16:56:00 +00:00
|
|
|
retract v1.28.0 // tag was mutated
|
|
|
|
|
2019-03-26 21:04:58 +00:00
|
|
|
require (
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/google/go-cmp v0.5.9
|
2024-06-05 17:31:43 +00:00
|
|
|
github.com/hashicorp/consul/proto-public v0.6.1
|
|
|
|
github.com/hashicorp/consul/sdk v0.16.1
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
|
|
|
github.com/hashicorp/go-hclog v1.5.0
|
2023-10-11 20:39:09 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2020-01-28 10:54:49 +00:00
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/hashicorp/go-uuid v1.0.3
|
2022-10-04 23:51:37 +00:00
|
|
|
github.com/hashicorp/serf v0.10.1
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2024-05-04 00:18:51 +00:00
|
|
|
github.com/stretchr/testify v1.8.4
|
2023-09-08 16:20:14 +00:00
|
|
|
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63
|
2024-03-06 23:04:42 +00:00
|
|
|
google.golang.org/protobuf v1.33.0
|
2022-11-10 16:26:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/armon/go-metrics v0.4.1 // indirect
|
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2024-05-04 00:18:51 +00:00
|
|
|
github.com/fatih/color v1.16.0 // indirect
|
2024-03-06 23:04:42 +00:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/google/btree v1.0.1 // indirect
|
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
|
|
github.com/hashicorp/go-msgpack v0.5.5 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
|
2022-11-18 16:32:01 +00:00
|
|
|
github.com/hashicorp/go-version v1.2.1 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
|
|
github.com/hashicorp/memberlist v0.5.0 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2024-05-04 00:18:51 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/miekg/dns v1.1.41 // indirect
|
|
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
2022-07-21 21:56:11 +00:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
2024-04-08 19:18:40 +00:00
|
|
|
golang.org/x/net v0.24.0 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
golang.org/x/sync v0.2.0 // indirect
|
2024-04-08 19:18:40 +00:00
|
|
|
golang.org/x/sys v0.19.0 // indirect
|
2024-03-05 14:52:55 +00:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
|
|
google.golang.org/grpc v1.56.3 // indirect
|
2023-06-05 20:08:39 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2019-03-26 21:04:58 +00:00
|
|
|
)
|