-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
27 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,4 +1,4 @@ | ||
VERSION=1.2.0 | ||
VERSION=1.2.1 | ||
|
||
.PHONY: release | ||
release: build/bin/aws_signing_helper | ||
|
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,22 +1,20 @@ | ||
module github.com/aws/rolesanywhere-credential-helper | ||
|
||
go 1.21 | ||
go 1.23.2 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.50.30 | ||
github.com/aws/aws-sdk-go v1.55.5 | ||
github.com/miekg/pkcs11 v1.1.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 | ||
golang.org/x/crypto v0.20.0 | ||
golang.org/x/net v0.21.0 | ||
golang.org/x/sys v0.17.0 | ||
golang.org/x/term v0.17.0 | ||
golang.org/x/crypto v0.28.0 | ||
golang.org/x/net v0.30.0 | ||
golang.org/x/sys v0.26.0 | ||
golang.org/x/term v0.25.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
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