|
1 | 1 | module github.com/shipwright-io/cli
|
2 | 2 |
|
3 |
| -go 1.15 |
| 3 | +go 1.17 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/mailru/easyjson v0.7.1 // indirect |
7 |
| - github.com/onsi/gomega v1.10.3 |
8 |
| - github.com/shipwright-io/build v0.6.0 |
| 6 | + github.com/onsi/gomega v1.17.0 |
| 7 | + github.com/shipwright-io/build v0.7.0 |
9 | 8 | github.com/spf13/cobra v1.2.1
|
10 | 9 | github.com/spf13/pflag v1.0.5
|
11 | 10 | github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c
|
12 |
| - k8s.io/api v0.20.6 |
13 |
| - k8s.io/apimachinery v0.20.6 |
14 |
| - k8s.io/cli-runtime v0.20.2 |
15 |
| - k8s.io/client-go v0.20.6 |
16 |
| - k8s.io/klog/v2 v2.5.0 |
17 |
| - k8s.io/utils v0.0.0-20210629042839-4a2b36d8d73f |
| 11 | + k8s.io/api v0.21.7 |
| 12 | + k8s.io/apimachinery v0.21.7 |
| 13 | + k8s.io/cli-runtime v0.21.7 |
| 14 | + k8s.io/client-go v0.21.7 |
| 15 | + k8s.io/klog/v2 v2.9.0 |
| 16 | + k8s.io/utils v0.0.0-20210802155522-efc7438f0176 |
| 17 | +) |
| 18 | + |
| 19 | +require ( |
| 20 | + github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 21 | + github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 22 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 23 | + github.com/evanphx/json-patch v4.11.0+incompatible // indirect |
| 24 | + github.com/go-errors/errors v1.0.1 // indirect |
| 25 | + github.com/go-logr/logr v0.4.0 // indirect |
| 26 | + github.com/go-openapi/jsonpointer v0.19.5 // indirect |
| 27 | + github.com/go-openapi/jsonreference v0.19.5 // indirect |
| 28 | + github.com/go-openapi/spec v0.20.3 // indirect |
| 29 | + github.com/go-openapi/swag v0.19.15 // indirect |
| 30 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 31 | + github.com/golang/protobuf v1.5.2 // indirect |
| 32 | + github.com/google/btree v1.0.0 // indirect |
| 33 | + github.com/google/go-cmp v0.5.6 // indirect |
| 34 | + github.com/google/gofuzz v1.2.0 // indirect |
| 35 | + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 36 | + github.com/google/uuid v1.3.0 // indirect |
| 37 | + github.com/googleapis/gnostic v0.5.5 // indirect |
| 38 | + github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect |
| 39 | + github.com/imdario/mergo v0.3.12 // indirect |
| 40 | + github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 41 | + github.com/josharian/intern v1.0.0 // indirect |
| 42 | + github.com/json-iterator/go v1.1.11 // indirect |
| 43 | + github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 44 | + github.com/mailru/easyjson v0.7.7 // indirect |
| 45 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 46 | + github.com/modern-go/reflect2 v1.0.1 // indirect |
| 47 | + github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 48 | + github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
| 49 | + github.com/pkg/errors v0.9.1 // indirect |
| 50 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 51 | + github.com/stretchr/testify v1.7.0 // indirect |
| 52 | + github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect |
| 53 | + go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect |
| 54 | + golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect |
| 55 | + golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 // indirect |
| 56 | + golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 // indirect |
| 57 | + golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect |
| 58 | + golang.org/x/text v0.3.6 // indirect |
| 59 | + golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect |
| 60 | + google.golang.org/appengine v1.6.7 // indirect |
| 61 | + google.golang.org/protobuf v1.27.1 // indirect |
| 62 | + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
| 63 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 64 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 65 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 66 | + k8s.io/kube-openapi v0.0.0-20211110012726-3cc51fd1e909 // indirect |
| 67 | + sigs.k8s.io/controller-runtime v0.9.7 // indirect |
| 68 | + sigs.k8s.io/kustomize/api v0.8.8 // indirect |
| 69 | + sigs.k8s.io/kustomize/kyaml v0.10.17 // indirect |
| 70 | + sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect |
| 71 | + sigs.k8s.io/yaml v1.3.0 // indirect |
18 | 72 | )
|
19 | 73 |
|
20 | 74 | replace github.com/go-openapi/spec => github.com/go-openapi/spec v0.19.3 // Needed, otherwise we will hit this https://github.com/knative/client/pull/1207#issuecomment-770845105
|
0 commit comments