mirror of https://github.com/status-im/consul.git
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
module github.com/hashicorp/consul/go-sso
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
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/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
|
|
)
|