2019-04-12 21:54:35 +00:00
|
|
|
module github.com/hashicorp/vault/api
|
|
|
|
|
2023-04-24 12:44:39 +00:00
|
|
|
// The Go version directive for the api package should normally only be updated when
|
|
|
|
// code in the api package requires a newer Go version to build. It should not
|
|
|
|
// automatically track the Go version used to build Vault itself. Many projects import
|
|
|
|
// the api module and we don't want to impose a newer version on them any more than we
|
|
|
|
// have to.
|
2022-10-31 13:52:04 +00:00
|
|
|
go 1.19
|
2019-04-12 21:54:35 +00:00
|
|
|
|
|
|
|
require (
|
2021-05-06 18:04:26 +00:00
|
|
|
github.com/cenkalti/backoff/v3 v3.0.0
|
2023-05-23 12:25:58 +00:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.0
|
2020-06-23 11:01:39 +00:00
|
|
|
github.com/go-test/deep v1.0.2
|
2021-07-21 00:42:00 +00:00
|
|
|
github.com/hashicorp/errwrap v1.1.0
|
2021-12-01 13:05:49 +00:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
2021-07-21 00:42:00 +00:00
|
|
|
github.com/hashicorp/go-hclog v0.16.2
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2020-07-08 19:04:11 +00:00
|
|
|
github.com/hashicorp/go-retryablehttp v0.6.6
|
2020-06-23 11:01:39 +00:00
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
2022-06-02 21:31:45 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6
|
2023-02-06 14:41:56 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
|
2019-04-12 21:54:35 +00:00
|
|
|
github.com/hashicorp/hcl v1.0.0
|
2022-05-17 15:44:32 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2023-02-22 13:46:12 +00:00
|
|
|
golang.org/x/net v0.7.0
|
2020-07-08 19:04:11 +00:00
|
|
|
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
|
2019-04-12 21:54:35 +00:00
|
|
|
)
|
2022-06-09 20:15:18 +00:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/fatih/color v1.7.0 // indirect
|
2023-02-06 14:41:56 +00:00
|
|
|
github.com/google/go-cmp v0.5.7 // indirect
|
2022-06-09 20:15:18 +00:00
|
|
|
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
|
|
|
|
github.com/mattn/go-colorable v0.1.6 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
2023-02-22 13:46:12 +00:00
|
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
|
|
golang.org/x/text v0.7.0 // indirect
|
2022-06-09 20:15:18 +00:00
|
|
|
)
|