2021-05-02 22:49:16 +00:00
|
|
|
module goauthentik.io
|
|
|
|
|
2023-03-20 17:15:36 +00:00
|
|
|
go 1.20
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
require (
|
2023-06-06 19:40:19 +00:00
|
|
|
beryju.io/ldap v0.1.0
|
2021-08-09 07:02:29 +00:00
|
|
|
github.com/Netflix/go-env v0.0.0-20210215222557-e437a7e7f9fb
|
2021-06-16 10:02:02 +00:00
|
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
2023-02-07 09:58:08 +00:00
|
|
|
github.com/garyburd/redigo v1.6.4
|
2023-08-02 08:57:33 +00:00
|
|
|
github.com/getsentry/sentry-go v0.23.0
|
2022-09-12 08:11:41 +00:00
|
|
|
github.com/go-http-utils/etag v0.0.0-20161124023236-513ea8f21eb1
|
2023-06-12 08:22:06 +00:00
|
|
|
github.com/go-ldap/ldap/v3 v3.4.5
|
2023-04-18 07:52:05 +00:00
|
|
|
github.com/go-openapi/runtime v0.26.0
|
2023-03-28 10:01:19 +00:00
|
|
|
github.com/go-openapi/strfmt v0.21.7
|
2021-09-08 18:04:56 +00:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2021-07-17 17:38:33 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2021-06-16 10:05:30 +00:00
|
|
|
github.com/gorilla/handlers v1.5.1
|
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-09-08 18:04:56 +00:00
|
|
|
github.com/gorilla/securecookie v1.1.1
|
|
|
|
github.com/gorilla/sessions v1.2.1
|
2022-02-16 08:09:39 +00:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
2023-01-02 08:29:04 +00:00
|
|
|
github.com/jellydator/ttlcache/v3 v3.0.1
|
2021-08-09 07:02:29 +00:00
|
|
|
github.com/nmcclain/asn1-ber v0.0.0-20170104154839-2661553a0484
|
2023-03-15 19:25:39 +00:00
|
|
|
github.com/pires/go-proxyproto v0.7.0
|
2023-06-16 11:06:02 +00:00
|
|
|
github.com/prometheus/client_golang v1.16.0
|
2023-06-05 09:02:47 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2023-04-21 08:31:22 +00:00
|
|
|
github.com/spf13/cobra v1.7.0
|
2023-05-31 10:21:57 +00:00
|
|
|
github.com/stretchr/testify v1.8.4
|
2023-08-18 09:41:47 +00:00
|
|
|
goauthentik.io/api/v3 v3.2023061.12
|
2023-02-12 15:34:57 +00:00
|
|
|
golang.org/x/exp v0.0.0-20230210204819-062eb4c674ab
|
2023-08-07 15:51:53 +00:00
|
|
|
golang.org/x/oauth2 v0.11.0
|
2023-06-15 08:49:44 +00:00
|
|
|
golang.org/x/sync v0.3.0
|
2022-05-08 14:48:53 +00:00
|
|
|
gopkg.in/boj/redistore.v1 v1.0.0-20160128113310-fc113767cd6b
|
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2023-03-20 15:54:35 +00:00
|
|
|
layeh.com/radius v0.0.0-20210819152912-ad72663a72ab
|
2022-05-08 14:48:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-06-12 08:22:06 +00:00
|
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
2023-03-28 10:01:19 +00:00
|
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
2022-05-08 14:48:53 +00:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-04-14 08:34:56 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2022-05-08 14:48:53 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
|
|
|
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
|
2022-09-11 21:18:31 +00:00
|
|
|
github.com/go-http-utils/fresh v0.0.0-20161124030543-7231e26a4b27 // indirect
|
|
|
|
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a // indirect
|
2022-11-30 07:37:48 +00:00
|
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2023-04-18 07:52:05 +00:00
|
|
|
github.com/go-openapi/analysis v0.21.4 // indirect
|
2023-03-28 10:01:19 +00:00
|
|
|
github.com/go-openapi/errors v0.20.3 // indirect
|
2022-05-08 14:48:53 +00:00
|
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
2023-04-18 07:52:05 +00:00
|
|
|
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
|
|
|
github.com/go-openapi/loads v0.21.2 // indirect
|
|
|
|
github.com/go-openapi/spec v0.20.8 // indirect
|
|
|
|
github.com/go-openapi/swag v0.22.3 // indirect
|
|
|
|
github.com/go-openapi/validate v0.22.1 // indirect
|
2023-03-09 11:21:26 +00:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2023-04-21 08:31:22 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2022-05-08 14:48:53 +00:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2023-04-14 08:34:56 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2023-03-28 10:01:19 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2022-05-08 14:48:53 +00:00
|
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/pquerna/cachecontrol v0.0.0-20201205024021-ac21108117ac // indirect
|
2022-11-09 10:00:18 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
2023-04-14 08:34:56 +00:00
|
|
|
github.com/prometheus/common v0.42.0 // indirect
|
2023-06-16 11:06:02 +00:00
|
|
|
github.com/prometheus/procfs v0.10.1 // indirect
|
2023-04-14 08:34:56 +00:00
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2023-04-21 08:31:22 +00:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2023-03-28 10:01:19 +00:00
|
|
|
go.mongodb.org/mongo-driver v1.11.3 // indirect
|
2023-04-18 07:52:05 +00:00
|
|
|
go.opentelemetry.io/otel v1.14.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v1.14.0 // indirect
|
2023-08-07 15:51:53 +00:00
|
|
|
golang.org/x/crypto v0.12.0 // indirect
|
|
|
|
golang.org/x/net v0.14.0 // indirect
|
|
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
|
|
golang.org/x/text v0.12.0 // indirect
|
2021-06-16 10:02:02 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-06-27 09:17:00 +00:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2021-06-16 10:02:02 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
|
2022-06-07 07:22:46 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2021-05-02 22:49:16 +00:00
|
|
|
)
|