34 lines
1.1 KiB
Modula-2
34 lines
1.1 KiB
Modula-2
module code.cacert.org/cacert/oidc-demo-app
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.3.2
|
|
github.com/gorilla/sessions v1.2.2
|
|
github.com/knadh/koanf v1.5.0
|
|
github.com/lestrrat-go/jwx v1.2.29
|
|
github.com/nicksnyder/go-i18n/v2 v2.4.0
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/spf13/pflag v1.0.5
|
|
golang.org/x/oauth2 v0.20.0
|
|
golang.org/x/text v0.15.0
|
|
)
|
|
|
|
require (
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/gorilla/securecookie v1.1.2 // indirect
|
|
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
|
|
github.com/lestrrat-go/blackmagic v1.0.2 // 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
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
)
|