2023-07-29 15:46:33 +00:00
|
|
|
module code.cacert.org/cacert/oidc-demo-app
|
2021-09-11 10:16:14 +00:00
|
|
|
|
2023-07-29 15:46:33 +00:00
|
|
|
go 1.19
|
2021-09-11 11:37:31 +00:00
|
|
|
|
|
|
|
require (
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/BurntSushi/toml v1.3.2
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/gorilla/sessions v1.2.1
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/knadh/koanf v1.5.0
|
|
|
|
github.com/lestrrat-go/jwx v1.2.26
|
|
|
|
github.com/nicksnyder/go-i18n/v2 v2.2.1
|
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2023-07-29 15:46:33 +00:00
|
|
|
golang.org/x/oauth2 v0.10.0
|
|
|
|
golang.org/x/text v0.11.0
|
2021-09-11 11:37:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
|
|
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
|
|
|
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/lestrrat-go/blackmagic v1.0.1 // indirect
|
|
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
|
|
|
github.com/lestrrat-go/iter v1.0.2 // indirect
|
|
|
|
github.com/lestrrat-go/option v1.0.1 // indirect
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2023-07-29 15:46:33 +00:00
|
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
2021-09-11 11:37:31 +00:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-07-29 15:46:33 +00:00
|
|
|
golang.org/x/crypto v0.11.0 // indirect
|
|
|
|
golang.org/x/net v0.12.0 // indirect
|
|
|
|
golang.org/x/sys v0.10.0 // indirect
|
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2021-09-11 11:37:31 +00:00
|
|
|
)
|