-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (22 loc) · 808 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/Arnobkumarsaha/oauth
go 1.20
require (
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/coreos/go-oidc/v3 v3.5.0
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/spf13/cobra v1.7.0
golang.org/x/oauth2 v0.6.0
)
require (
cloud.google.com/go/compute/metadata v0.2.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pquerna/cachecontrol v0.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.8.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)