forked from ajmyyra/ambassador-auth-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
27 lines (24 loc) · 953 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
26
27
module github.com/doc-ai/ambassador-auth-oidc
go 1.17
require (
github.com/coreos/go-oidc v2.0.0+incompatible
github.com/go-redis/redis v6.14.2+incompatible
github.com/golang-jwt/jwt/v4 v4.4.1
github.com/google/uuid v1.0.0
github.com/gorilla/handlers v1.4.0
github.com/gorilla/mux v1.6.2
golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4
)
require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.17.0 // indirect
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
google.golang.org/appengine v1.2.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/square/go-jose.v2 v2.1.9 // indirect
)