-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Chris S. Kim
authored
Mar 22, 2024
1 parent
fea6926
commit f3f2175
Showing
23 changed files
with
247 additions
and
118 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
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
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
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
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
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
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
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
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
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,18 +1,35 @@ | ||
module github.com/hashicorp/consul/go-sso | ||
|
||
go 1.13 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/coreos/go-oidc v2.1.0+incompatible | ||
github.com/hashicorp/go-cleanhttp v0.5.1 | ||
github.com/hashicorp/go-hclog v0.12.0 | ||
github.com/hashicorp/go-uuid v1.0.2 | ||
github.com/mitchellh/go-testing-interface v1.14.0 | ||
github.com/mitchellh/pointerstructure v1.0.0 | ||
github.com/coreos/go-oidc/v3 v3.9.0 | ||
github.com/go-jose/go-jose/v3 v3.0.3 | ||
github.com/hashicorp/consul v1.18.0 | ||
github.com/hashicorp/go-cleanhttp v0.5.2 | ||
github.com/hashicorp/go-hclog v1.5.0 | ||
github.com/hashicorp/go-uuid v1.0.3 | ||
github.com/mitchellh/pointerstructure v1.2.1 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20191106202628-ed6320f186d4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 | ||
gopkg.in/square/go-jose.v2 v2.4.1 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/oauth2 v0.15.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fatih/color v1.14.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/square/go-jose.v2 v2.5.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.