-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgo.mod
26 lines (23 loc) · 822 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/itzg/saml-auth-proxy
require (
github.com/crewjam/saml v0.4.14
github.com/itzg/go-flagsfiller v1.15.0
github.com/itzg/zapconfigs v0.1.0
github.com/patrickmn/go-cache v2.1.0+incompatible
go.uber.org/zap v1.27.0
golang.org/x/sync v0.11.0
)
require (
github.com/beevik/etree v1.4.1 // indirect
github.com/crewjam/httperr v0.2.0 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/russellhaering/goxmldsig v1.4.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
)
go 1.22