-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
28 lines (25 loc) · 810 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
28
module github.com/danicc097/oidc-server/v3
go 1.19
require (
github.com/fsnotify/fsnotify v1.6.0
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/securecookie v1.1.1
github.com/sirupsen/logrus v1.9.3
github.com/zitadel/logging v0.3.4
github.com/zitadel/oidc/v2 v2.6.3
golang.org/x/text v0.9.0
gopkg.in/square/go-jose.v2 v2.6.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/gorilla/schema v1.2.0 // indirect
github.com/muhlemmer/gu v0.3.1 // indirect
github.com/rs/cors v1.9.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sys v0.8.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.29.1 // indirect
)