2018-11-28 16:59:09 +00:00
|
|
|
module github.com/dexidp/dex
|
|
|
|
|
2021-02-17 09:18:26 +00:00
|
|
|
go 1.16
|
2020-01-30 16:51:35 +00:00
|
|
|
|
2018-11-28 16:59:09 +00:00
|
|
|
require (
|
2021-02-10 23:13:07 +00:00
|
|
|
github.com/AppsFlyer/go-sundheit v0.3.1
|
2019-07-31 06:09:38 +00:00
|
|
|
github.com/beevik/etree v1.1.0
|
2021-01-13 18:56:09 +00:00
|
|
|
github.com/coreos/go-oidc/v3 v3.0.0
|
2020-07-23 08:24:34 +00:00
|
|
|
github.com/dexidp/dex/api/v2 v2.0.0
|
2020-01-30 16:53:51 +00:00
|
|
|
github.com/felixge/httpsnoop v1.0.1
|
2019-07-31 06:09:38 +00:00
|
|
|
github.com/ghodss/yaml v1.0.0
|
2021-03-22 14:23:39 +00:00
|
|
|
github.com/go-ldap/ldap/v3 v3.2.4
|
2021-04-01 07:23:52 +00:00
|
|
|
github.com/go-sql-driver/mysql v1.6.0
|
2020-12-29 11:51:31 +00:00
|
|
|
github.com/gorilla/handlers v1.5.1
|
|
|
|
github.com/gorilla/mux v1.8.0
|
2019-07-31 06:09:38 +00:00
|
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
|
|
github.com/kylelemons/godebug v1.1.0
|
2021-03-08 08:02:20 +00:00
|
|
|
github.com/lib/pq v1.10.0
|
2021-03-22 15:23:01 +00:00
|
|
|
github.com/mattermost/xml-roundtrip-validator v0.1.0
|
2021-01-14 17:44:30 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.6
|
2021-01-26 08:16:30 +00:00
|
|
|
github.com/oklog/run v1.1.0
|
2021-02-15 15:24:26 +00:00
|
|
|
github.com/onsi/ginkgo v1.8.0 // indirect
|
|
|
|
github.com/onsi/gomega v1.5.0 // indirect
|
2020-12-08 03:01:28 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2021-01-14 18:16:13 +00:00
|
|
|
github.com/prometheus/client_golang v1.5.1
|
2020-12-07 23:54:45 +00:00
|
|
|
github.com/russellhaering/goxmldsig v1.1.0
|
2021-03-10 07:07:37 +00:00
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2021-02-15 09:06:38 +00:00
|
|
|
github.com/spf13/cobra v1.1.3
|
2021-01-14 22:30:40 +00:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-01-14 18:16:13 +00:00
|
|
|
go.etcd.io/etcd/client/v3 v3.5.0-alpha.0
|
|
|
|
go.etcd.io/etcd/pkg/v3 v3.5.0-alpha.0
|
2021-01-14 17:44:30 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
|
|
|
golang.org/x/net v0.0.0-20201224014010-6772e930b67b
|
2021-01-14 18:16:13 +00:00
|
|
|
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
|
2021-02-15 15:24:26 +00:00
|
|
|
golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3 // indirect
|
2021-01-14 18:16:13 +00:00
|
|
|
google.golang.org/api v0.35.0
|
|
|
|
google.golang.org/grpc v1.32.0
|
2021-03-22 17:38:52 +00:00
|
|
|
google.golang.org/protobuf v1.26.0
|
2021-01-13 18:56:09 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2019-12-18 16:00:57 +00:00
|
|
|
sigs.k8s.io/testing_frameworks v0.1.2
|
2018-11-28 16:59:09 +00:00
|
|
|
)
|
2020-06-30 05:38:57 +00:00
|
|
|
|
2020-07-01 12:20:57 +00:00
|
|
|
replace github.com/dexidp/dex/api/v2 => ./api/v2
|