-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
go.mod
25 lines (22 loc) · 773 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
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.10.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.1 // 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