-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade dependencies inside api/auth/aws go mod
- Loading branch information
1 parent
780229f
commit d36af1c
Showing
2 changed files
with
92 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,41 @@ | ||
module github.com/hashicorp/vault/api/auth/aws | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.55.5 | ||
github.com/hashicorp/go-hclog v1.6.3 | ||
github.com/hashicorp/go-secure-stdlib/awsutil v0.3.0 | ||
github.com/hashicorp/go-uuid v1.0.3 | ||
github.com/hashicorp/vault/api v1.15.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.49.22 | ||
github.com/hashicorp/go-hclog v0.16.2 | ||
github.com/hashicorp/go-secure-stdlib/awsutil v0.1.6 | ||
github.com/hashicorp/go-uuid v1.0.2 | ||
github.com/hashicorp/vault/api v1.12.0 | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/fatih/color v1.18.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // 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 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
) |
Oops, something went wrong.