2020-09-18 19:56:24 +00:00
|
|
|
module go.pinniped.dev
|
2020-07-03 00:05:59 +00:00
|
|
|
|
|
|
|
go 1.14
|
2020-07-06 23:07:21 +00:00
|
|
|
|
2020-07-07 19:35:20 +00:00
|
|
|
require (
|
2020-12-17 19:08:15 +00:00
|
|
|
cloud.google.com/go v0.60.0 // indirect
|
2020-09-12 00:56:05 +00:00
|
|
|
github.com/MakeNowJust/heredoc/v2 v2.0.1
|
2021-01-20 17:54:44 +00:00
|
|
|
github.com/coreos/go-oidc/v3 v3.0.0
|
2020-08-25 15:27:18 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-02-24 22:37:31 +00:00
|
|
|
github.com/go-logr/logr v0.4.0
|
|
|
|
github.com/go-logr/stdr v0.4.0
|
2021-02-25 15:39:25 +00:00
|
|
|
github.com/go-openapi/spec v0.20.3
|
2020-10-21 17:54:26 +00:00
|
|
|
github.com/gofrs/flock v0.8.0
|
2021-02-25 15:39:55 +00:00
|
|
|
github.com/golang/mock v1.5.0
|
2021-03-05 05:59:54 +00:00
|
|
|
github.com/google/go-cmp v0.5.5
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/google/gofuzz v1.2.0
|
2020-11-11 01:58:00 +00:00
|
|
|
github.com/gorilla/securecookie v1.1.1
|
2021-01-27 19:49:30 +00:00
|
|
|
github.com/oleiade/reflections v1.0.1 // indirect
|
2020-12-17 22:30:34 +00:00
|
|
|
github.com/onsi/ginkgo v1.13.0 // indirect
|
2021-03-09 05:50:01 +00:00
|
|
|
github.com/ory/fosite v0.39.0
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/pkg/browser v0.0.0-20201207095918-0426ae3fba23
|
2020-12-01 22:53:22 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-10-13 15:41:53 +00:00
|
|
|
github.com/sclevine/agouti v3.0.0+incompatible
|
2020-07-27 23:49:43 +00:00
|
|
|
github.com/sclevine/spec v1.4.0
|
2021-02-24 22:37:31 +00:00
|
|
|
github.com/spf13/cobra v1.1.3
|
2020-08-19 18:21:07 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2021-02-24 22:37:31 +00:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2020-12-17 19:08:15 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20201217014255-9d1352758620
|
2020-11-04 15:15:19 +00:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
2020-12-17 19:08:15 +00:00
|
|
|
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
|
|
|
|
golang.org/x/tools v0.0.0-20200825202427-b303f430e36d // indirect
|
2020-11-04 14:55:18 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2021-02-19 15:26:53 +00:00
|
|
|
k8s.io/api v0.20.4
|
|
|
|
k8s.io/apimachinery v0.20.4
|
|
|
|
k8s.io/apiserver v0.20.4
|
|
|
|
k8s.io/client-go v0.20.4
|
|
|
|
k8s.io/component-base v0.20.4
|
2021-01-13 01:27:41 +00:00
|
|
|
k8s.io/gengo v0.0.0-20201113003025-83324d819ded
|
2021-03-15 17:36:36 +00:00
|
|
|
k8s.io/klog/v2 v2.8.0
|
2021-02-19 15:26:53 +00:00
|
|
|
k8s.io/kube-aggregator v0.20.4
|
2021-02-09 15:46:38 +00:00
|
|
|
k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd
|
2020-12-17 19:08:15 +00:00
|
|
|
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
|
2020-07-14 15:50:14 +00:00
|
|
|
sigs.k8s.io/yaml v1.2.0
|
2020-07-07 19:35:20 +00:00
|
|
|
)
|
2021-02-16 23:05:33 +00:00
|
|
|
|
|
|
|
// Workaround a broken module version (see https://github.com/oleiade/reflections/issues/14).
|
|
|
|
// We need this until none of our deps tries to pull in v1.0.0, otherwise some tools like
|
|
|
|
// Dependabot will fail on our module.
|
|
|
|
replace github.com/oleiade/reflections v1.0.0 => github.com/oleiade/reflections v1.0.1
|