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
|
|
|
|
2019-03-27 12:54:56 +00:00
|
|
|
replace github.com/hashicorp/consul/sdk => ../sdk
|
2019-03-26 21:04:58 +00:00
|
|
|
|
|
|
|
require (
|
2022-04-14 20:55:10 +00:00
|
|
|
github.com/google/go-cmp v0.5.7
|
2023-03-08 20:37:50 +00:00
|
|
|
github.com/hashicorp/consul/sdk v0.13.1
|
2019-03-26 21:04:58 +00:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.1
|
2022-10-19 16:31:36 +00:00
|
|
|
github.com/hashicorp/go-hclog v0.12.0
|
2020-01-28 10:54:49 +00:00
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
2022-07-21 21:56:11 +00:00
|
|
|
github.com/hashicorp/go-uuid v1.0.2
|
2022-10-04 23:51:37 +00:00
|
|
|
github.com/hashicorp/serf v0.10.1
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.4.1
|
|
|
|
github.com/stretchr/testify v1.7.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/fatih/color v1.9.0 // indirect
|
|
|
|
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect
|
|
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
|
|
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
|
|
|
|
github.com/hashicorp/go-msgpack v0.5.3 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.0 // indirect
|
|
|
|
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
|
2022-07-21 21:56:11 +00:00
|
|
|
github.com/kr/pretty v0.2.1 // indirect
|
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.6 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
|
|
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
|
2022-11-10 16:26:01 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
|
|
|
github.com/stretchr/objx v0.1.0 // indirect
|
2022-07-21 21:56:11 +00:00
|
|
|
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
|
2022-07-21 21:56:11 +00:00
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
2022-11-10 16:26:01 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
2019-03-26 21:04:58 +00:00
|
|
|
)
|