mirror of https://github.com/knative/client.git
44 lines
1.6 KiB
Modula-2
44 lines
1.6 KiB
Modula-2
module knative.dev/client
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.4
|
|
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/mitchellh/mapstructure v1.3.1 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/smartystreets/assertions v1.0.0 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/spf13/cobra v1.0.1-0.20200715031239-b95db644ed1c
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.7.0
|
|
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
|
|
gopkg.in/ini.v1 v1.56.0 // indirect
|
|
gotest.tools v2.2.0+incompatible
|
|
k8s.io/api v0.18.12
|
|
k8s.io/apimachinery v0.18.12
|
|
k8s.io/cli-runtime v0.18.12
|
|
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
|
|
k8s.io/code-generator v0.18.12
|
|
knative.dev/eventing v0.20.0
|
|
knative.dev/hack v0.0.0-20201214230143-4ed1ecb8db24
|
|
knative.dev/networking v0.0.0-20210107024535-ecb89ced52d9
|
|
knative.dev/pkg v0.0.0-20210107022335-51c72e24c179
|
|
knative.dev/serving v0.20.0
|
|
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.12
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.18.12
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.12
|
|
k8s.io/client-go => k8s.io/client-go v0.18.12
|
|
k8s.io/code-generator => k8s.io/code-generator v0.18.12
|
|
)
|
|
|
|
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.12
|