mirror of https://github.com/knative/client.git
35 lines
1.3 KiB
Modula-2
35 lines
1.3 KiB
Modula-2
module knative.dev/client
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/cobra v1.0.1-0.20200715031239-b95db644ed1c
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.7.0
|
|
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
|
|
gotest.tools v2.2.0+incompatible
|
|
k8s.io/api v0.18.8
|
|
k8s.io/apimachinery v0.18.8
|
|
k8s.io/cli-runtime v0.18.8
|
|
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
|
|
k8s.io/code-generator v0.18.8
|
|
knative.dev/eventing v0.17.1-0.20200922201940-baa7cd3e8254
|
|
knative.dev/networking v0.0.0-20200922180040-a71b40c69b15
|
|
knative.dev/pkg v0.0.0-20200922164940-4bf40ad82aab
|
|
knative.dev/serving v0.17.1-0.20200922232940-9d0250fcaaec
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
// Temporary pinning certain libraries. Please check periodically, whether these are still needed
|
|
// ----------------------------------------------------------------------------------------------
|
|
replace (
|
|
k8s.io/api => k8s.io/api v0.18.8
|
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.8
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.18.8
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.8
|
|
k8s.io/client-go => k8s.io/client-go v0.18.8
|
|
k8s.io/code-generator => k8s.io/code-generator v0.18.8
|
|
)
|