forked from pwillie/oidc-ingress
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
26 lines (24 loc) · 937 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
module github.com/finbourne/oidc-ingress
go 1.15
require (
github.com/alicebob/miniredis/v2 v2.13.3
github.com/coreos/go-oidc v2.0.0+incompatible
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/ghodss/yaml v1.0.0
github.com/go-chi/chi v3.3.2+incompatible
github.com/go-chi/render v1.0.1
github.com/go-chi/valve v0.0.0-20170920024740-9e45288364f4
github.com/go-redis/redis/v7 v7.4.0
github.com/gorilla/securecookie v1.1.1
github.com/namsral/flag v1.7.4-pre
github.com/pkg/errors v0.9.1
github.com/pquerna/cachecontrol v0.0.0-20200921180117-858c6e7e6b7e // indirect
github.com/prometheus/client_golang v1.7.1
github.com/rs/xid v1.2.1
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.6.1
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)