2018-11-28 22:29:09 +05:30
|
|
|
module github.com/dexidp/dex
|
|
|
|
|
2021-02-17 14:48:26 +05:30
|
|
|
go 1.16
|
2020-01-30 22:21:35 +05:30
|
|
|
|
2018-11-28 22:29:09 +05:30
|
|
|
require (
|
2021-02-11 04:43:07 +05:30
|
|
|
github.com/AppsFlyer/go-sundheit v0.3.1
|
2019-07-31 11:39:38 +05:30
|
|
|
github.com/beevik/etree v1.1.0
|
2021-01-14 00:26:09 +05:30
|
|
|
github.com/coreos/go-oidc/v3 v3.0.0
|
2020-07-23 13:54:34 +05:30
|
|
|
github.com/dexidp/dex/api/v2 v2.0.0
|
2021-04-26 14:20:00 +05:30
|
|
|
github.com/felixge/httpsnoop v1.0.2
|
2019-07-31 11:39:38 +05:30
|
|
|
github.com/ghodss/yaml v1.0.0
|
2021-04-06 12:31:29 +05:30
|
|
|
github.com/go-ldap/ldap/v3 v3.3.0
|
2021-04-01 12:53:52 +05:30
|
|
|
github.com/go-sql-driver/mysql v1.6.0
|
2020-12-29 17:21:31 +05:30
|
|
|
github.com/gorilla/handlers v1.5.1
|
|
|
|
github.com/gorilla/mux v1.8.0
|
2019-07-31 11:39:38 +05:30
|
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
|
|
github.com/kylelemons/godebug v1.1.0
|
2021-04-22 12:24:28 +05:30
|
|
|
github.com/lib/pq v1.10.1
|
2021-03-22 20:53:01 +05:30
|
|
|
github.com/mattermost/xml-roundtrip-validator v0.1.0
|
2021-04-15 12:27:54 +05:30
|
|
|
github.com/mattn/go-sqlite3 v1.14.7
|
2021-01-26 13:46:30 +05:30
|
|
|
github.com/oklog/run v1.1.0
|
2020-12-08 08:31:28 +05:30
|
|
|
github.com/pkg/errors v0.9.1
|
2021-03-25 00:53:45 +05:30
|
|
|
github.com/prometheus/client_golang v1.10.0
|
2020-12-08 05:24:45 +05:30
|
|
|
github.com/russellhaering/goxmldsig v1.1.0
|
2021-03-10 12:37:37 +05:30
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2021-02-15 14:36:38 +05:30
|
|
|
github.com/spf13/cobra v1.1.3
|
2021-01-15 04:00:40 +05:30
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-01-14 23:46:13 +05:30
|
|
|
go.etcd.io/etcd/client/v3 v3.5.0-alpha.0
|
|
|
|
go.etcd.io/etcd/pkg/v3 v3.5.0-alpha.0
|
2021-03-25 00:53:45 +05:30
|
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
|
|
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
|
2021-04-21 12:25:25 +05:30
|
|
|
golang.org/x/oauth2 v0.0.0-20210413134643-5e61552d6c78
|
|
|
|
google.golang.org/api v0.45.0
|
|
|
|
google.golang.org/grpc v1.37.0
|
2021-03-22 23:08:52 +05:30
|
|
|
google.golang.org/protobuf v1.26.0
|
2021-01-14 00:26:09 +05:30
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2019-12-18 21:30:57 +05:30
|
|
|
sigs.k8s.io/testing_frameworks v0.1.2
|
2018-11-28 22:29:09 +05:30
|
|
|
)
|
2020-06-30 11:08:57 +05:30
|
|
|
|
2020-07-01 17:50:57 +05:30
|
|
|
replace github.com/dexidp/dex/api/v2 => ./api/v2
|