Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
52 lines (49 sloc)
2.16 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/ahmetb/kubectx | |
go 1.17 | |
require ( | |
facette.io/natsort v0.0.0-20181210072756-2cd4dd1e2dcb | |
github.com/fatih/color v1.9.0 | |
github.com/google/go-cmp v0.5.2 | |
github.com/mattn/go-isatty v0.0.14 | |
github.com/pkg/errors v0.9.1 | |
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c | |
k8s.io/apimachinery v0.21.0-alpha.1 | |
k8s.io/client-go v0.21.0-alpha.1 | |
) | |
require ( | |
cloud.google.com/go v0.54.0 // indirect | |
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | |
github.com/Azure/go-autorest/autorest v0.11.12 // indirect | |
github.com/Azure/go-autorest/autorest/adal v0.9.5 // indirect | |
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | |
github.com/Azure/go-autorest/logger v0.2.0 // indirect | |
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | |
github.com/davecgh/go-spew v1.1.1 // indirect | |
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect | |
github.com/go-logr/logr v0.2.0 // indirect | |
github.com/gogo/protobuf v1.3.1 // indirect | |
github.com/golang/protobuf v1.4.3 // indirect | |
github.com/google/gofuzz v1.1.0 // indirect | |
github.com/googleapis/gnostic v0.4.1 // indirect | |
github.com/imdario/mergo v0.3.9 // indirect | |
github.com/json-iterator/go v1.1.10 // indirect | |
github.com/mattn/go-colorable v0.1.4 // indirect | |
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | |
github.com/modern-go/reflect2 v1.0.1 // indirect | |
github.com/spf13/pflag v1.0.5 // indirect | |
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect | |
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect | |
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | |
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | |
golang.org/x/text v0.3.4 // indirect | |
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | |
google.golang.org/appengine v1.6.5 // indirect | |
google.golang.org/protobuf v1.25.0 // indirect | |
gopkg.in/inf.v0 v0.9.1 // indirect | |
gopkg.in/yaml.v2 v2.2.8 // indirect | |
k8s.io/api v0.21.0-alpha.1 // indirect | |
k8s.io/klog/v2 v2.4.0 // indirect | |
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect | |
sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect | |
sigs.k8s.io/yaml v1.2.0 // indirect | |
) |