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
|
2020-10-06 00:09:51 +00:00
|
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
2020-08-25 15:27:18 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/go-logr/logr v0.3.0
|
2020-09-14 17:57:07 +00:00
|
|
|
github.com/go-logr/stdr v0.2.0
|
2020-10-21 17:54:26 +00:00
|
|
|
github.com/gofrs/flock v0.8.0
|
2020-08-28 22:21:11 +00:00
|
|
|
github.com/golang/mock v1.4.4
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/google/go-cmp v0.5.4
|
|
|
|
github.com/google/gofuzz v1.2.0
|
2020-11-11 01:58:00 +00:00
|
|
|
github.com/gorilla/securecookie v1.1.1
|
2020-12-17 22:30:34 +00:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
|
|
github.com/onsi/ginkgo v1.13.0 // indirect
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/ory/fosite v0.36.0
|
|
|
|
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
|
2020-12-17 19:08:15 +00:00
|
|
|
github.com/spf13/cobra v1.1.1
|
2020-08-19 18:21:07 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2020-07-07 19:35:20 +00:00
|
|
|
github.com/stretchr/testify v1.6.1
|
2021-01-08 18:21:59 +00:00
|
|
|
go.pinniped.dev/generated/1.20/apis v0.0.0-00010101000000-000000000000
|
|
|
|
go.pinniped.dev/generated/1.20/client v0.0.0-00010101000000-000000000000
|
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-12-17 22:30:34 +00:00
|
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
2020-11-04 14:55:18 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1
|
2020-12-17 19:08:15 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
|
2021-01-08 18:21:59 +00:00
|
|
|
k8s.io/api v0.20.1
|
|
|
|
k8s.io/apimachinery v0.20.1
|
|
|
|
k8s.io/apiserver v0.20.1
|
|
|
|
k8s.io/client-go v0.20.1
|
|
|
|
k8s.io/component-base v0.20.1
|
2020-12-17 19:08:15 +00:00
|
|
|
k8s.io/klog/v2 v2.4.0
|
2021-01-08 18:21:59 +00:00
|
|
|
k8s.io/kube-aggregator v0.20.1
|
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
|
|
|
)
|
2020-07-29 21:24:16 +00:00
|
|
|
|
2020-08-05 21:28:47 +00:00
|
|
|
replace (
|
2021-01-07 22:58:09 +00:00
|
|
|
go.pinniped.dev/generated/1.20/apis => ./generated/1.20/apis
|
|
|
|
go.pinniped.dev/generated/1.20/client => ./generated/1.20/client
|
2020-08-05 21:28:47 +00:00
|
|
|
)
|