-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (21 loc) · 965 Bytes
/
go.mod
File metadata and controls
26 lines (21 loc) · 965 Bytes
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/d-rk/mini-saml-idp
// to see the generated version of a commit run: go get github.com/d-rk/saml/samlidp@61c99c350b8e
replace github.com/crewjam/saml => github.com/d-rk/saml v0.0.0-20221107072552-9683ee7f8450
replace github.com/crewjam/saml/samlidp => github.com/d-rk/saml/samlidp v0.0.0-20221107072552-9683ee7f8450
// for local development
// replace github.com/crewjam/saml => ../saml
// replace github.com/crewjam/saml/samlidp => ../saml/samlidp
go 1.18
require (
github.com/crewjam/saml v0.0.0-00010101000000-000000000000
github.com/crewjam/saml/samlidp v0.0.0-20220625143334-5e0ffd290abf
github.com/pkg/errors v0.9.1
github.com/zenazn/goji v1.0.1
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
)
require (
github.com/beevik/etree v1.1.0 // indirect
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect
github.com/russellhaering/goxmldsig v1.1.1 // indirect
)