2020-09-18 19:56:24 +00:00
|
|
|
module go.pinniped.dev
|
2020-07-03 00:05:59 +00:00
|
|
|
|
2021-06-30 16:50:01 +00:00
|
|
|
go 1.16
|
2020-07-06 23:07:21 +00:00
|
|
|
|
2020-07-07 19:35:20 +00:00
|
|
|
require (
|
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
|
2021-06-01 20:15:47 +00:00
|
|
|
github.com/creack/pty v1.1.13
|
2020-08-25 15:27:18 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-04-09 15:38:53 +00:00
|
|
|
github.com/go-ldap/ldap/v3 v3.3.0
|
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-05-21 16:16:07 +00:00
|
|
|
github.com/go-openapi/spec v0.20.3 // indirect
|
2021-06-28 01:28:52 +00:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2021-06-16 01:22:04 +00:00
|
|
|
github.com/golang/mock v1.6.0
|
2021-05-25 05:51:17 +00:00
|
|
|
github.com/google/go-cmp v0.5.6
|
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-03-11 00:57:15 +00:00
|
|
|
github.com/gorilla/websocket v1.4.2
|
2020-12-17 22:30:34 +00:00
|
|
|
github.com/onsi/ginkgo v1.13.0 // indirect
|
2021-05-28 14:52:49 +00:00
|
|
|
github.com/ory/fosite v0.40.2
|
2021-05-21 15:00:19 +00:00
|
|
|
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
|
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-07-05 01:28:57 +00:00
|
|
|
github.com/spf13/cobra v1.2.1
|
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
|
2021-07-12 01:20:59 +00:00
|
|
|
github.com/tdewolff/minify/v2 v2.9.19
|
2021-05-21 15:06:29 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
|
|
|
|
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023
|
2021-07-02 01:11:11 +00:00
|
|
|
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
|
2021-05-21 15:06:29 +00:00
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
|
|
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
|
2021-06-08 05:41:45 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0
|
2021-07-27 18:18:08 +00:00
|
|
|
k8s.io/api v0.21.3
|
|
|
|
k8s.io/apimachinery v0.21.3
|
|
|
|
k8s.io/apiserver v0.21.3
|
|
|
|
k8s.io/client-go v0.21.3
|
|
|
|
k8s.io/component-base v0.21.3
|
2021-05-21 15:07:00 +00:00
|
|
|
k8s.io/gengo v0.0.0-20210203185629-de9496dff47b
|
2021-07-27 18:18:08 +00:00
|
|
|
k8s.io/klog/v2 v2.10.0
|
|
|
|
k8s.io/kube-aggregator v0.21.3
|
2021-05-21 15:07:41 +00:00
|
|
|
k8s.io/utils v0.0.0-20210521133846-da695404a2bc
|
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
|
2021-03-18 20:54:55 +00:00
|
|
|
|
|
|
|
// We were never vulnerable to CVE-2020-26160 but this avoids future issues
|
|
|
|
// This fork is not particularly better though:
|
|
|
|
// https://github.com/form3tech-oss/jwt-go/issues/7
|
|
|
|
// We use the SHA of github.com/form3tech-oss/jwt-go@v3.2.2 to get around "used for two different module paths"
|
|
|
|
// https://golang.org/issues/26904
|
|
|
|
replace github.com/dgrijalva/jwt-go v3.2.0+incompatible => github.com/form3tech-oss/jwt-go v0.0.0-20200915135329-9162a5abdbc0
|
2021-05-28 14:52:49 +00:00
|
|
|
|
|
|
|
// Pin gRPC back to v1.29.1 (the version required by Kubernetes), but also override a module that's only used in some tests.
|
|
|
|
// This is required because sometime after v1.29.1, they moved this package into a separate module.
|
|
|
|
replace (
|
|
|
|
google.golang.org/grpc => google.golang.org/grpc v1.29.1
|
|
|
|
google.golang.org/grpc/examples => ./hack/dependencyhacks/grpcexamples/
|
|
|
|
)
|