mirror of https://github.com/knative/client.git
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module knative.dev/client
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.2
|
|
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-20201002170205-7f63de1d35b0
|
|
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.18.1-0.20201029213834-0535f9b33fe8
|
|
knative.dev/hack v0.0.0-20201028205534-fe80f1c8af68
|
|
knative.dev/networking v0.0.0-20201029132834-0fb5d8bc0634
|
|
knative.dev/pkg v0.0.0-20201029122234-6d905b3f84a6
|
|
knative.dev/serving v0.18.1-0.20201029234034-837d1e442c34
|
|
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/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
|
|
)
|