-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
34 lines (31 loc) · 1.18 KB
/
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
29
30
31
32
33
34
module github.com/pgstenberg/saml2-oidc-proxy
go 1.21.4
require (
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/crewjam/saml v0.4.14
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204
github.com/fsnotify/fsnotify v1.7.0
github.com/google/uuid v1.6.0
github.com/gorilla/securecookie v1.1.2
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattermost/xml-roundtrip-validator v0.1.0
github.com/zenazn/goji v1.0.1
golang.org/x/oauth2 v0.13.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/beevik/etree v1.1.0 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/pquerna/cachecontrol v0.2.0 // indirect
github.com/russellhaering/goxmldsig v1.3.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)