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/mitchellh/go-homedir v1.1.0
|
|
github.com/spf13/cobra v0.0.6
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.6.2
|
|
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
|
|
gotest.tools v2.2.0+incompatible
|
|
k8s.io/api v0.17.6
|
|
k8s.io/apimachinery v0.17.6
|
|
k8s.io/cli-runtime v0.17.6
|
|
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
|
|
knative.dev/eventing v0.15.1-0.20200608083719-c024353a712c
|
|
knative.dev/pkg v0.0.0-20200606224418-7ed1d4a552bc
|
|
knative.dev/serving v0.15.1-0.20200608114919-92e849c1db9c
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
// Temporary pinning certain libraries. Please check periodically, whether these are still needed
|
|
// ----------------------------------------------------------------------------------------------
|
|
|
|
// Fix for `[` in help messages and shell completion code
|
|
// See https://github.com/spf13/cobra/pull/899
|
|
replace (
|
|
github.com/spf13/cobra => github.com/chmouel/cobra v0.0.0-20191021105835-a78788917390
|
|
k8s.io/api => k8s.io/api v0.17.6
|
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.17.6
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.17.6
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.17.6
|
|
k8s.io/client-go => k8s.io/client-go v0.17.6
|
|
k8s.io/code-generator => k8s.io/code-generator v0.17.6
|
|
)
|