forked from kyma-project/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
63 lines (59 loc) · 3.22 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module github.com/kyma-project/cli
go 1.12
replace (
github.com/census-instrumentation/opencensus-proto v0.1.0-0.20181214143942-ba49f56771b8 => github.com/census-instrumentation/opencensus-proto v0.0.3-0.20181214143942-ba49f56771b8
// etcd and ugorji need to be versioned together and we need ot force the version from terraform 0.12.13 otherwise we have an ambiguous import
github.com/coreos/etcd v3.3.10+incompatible => github.com/coreos/etcd v3.3.15+incompatible
github.com/ugorji/go v0.0.0-20180813092308-00b869d2f4a5 => github.com/ugorji/go v0.0.0-20181204163529-d75b2dcb6bc8
// Docker client has an issue on windows with the latest sys package, we have to fix the version
golang.org/x/sys => golang.org/x/sys v0.0.0-20190710143415-6ec70d6a5542
)
require (
github.com/Masterminds/semver v1.5.0
github.com/Microsoft/go-winio v0.4.15-0.20200113171025-3fe6c5262873 // indirect
github.com/Microsoft/hcsshim v0.8.7 // indirect
github.com/avast/retry-go v2.4.3+incompatible
github.com/briandowns/spinner v1.7.0
github.com/containerd/containerd v1.3.0 // indirect
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c // indirect
github.com/daviddengcn/go-colortext v0.0.0-20180409174941-186a3d44e920
github.com/docker/cli v0.0.0-20190925022749-754388324470
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.4.2-0.20191101170500-ac7306503d23
github.com/docker/docker-credential-helpers v0.6.3 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/fatih/color v1.7.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golangplus/bytes v0.0.0-20160111154220-45c989fe5450 // indirect
github.com/golangplus/fmt v0.0.0-20150411045040-2a5d6d7d2995 // indirect
github.com/golangplus/testing v0.0.0-20180327235837-af21d9c3145e // indirect
github.com/google/go-cmp v0.4.0 // indirect
github.com/gorilla/mux v1.7.4 // indirect
github.com/imdario/mergo v0.3.8 // indirect
github.com/kyma-incubator/hydroform/install v0.0.0-20200713083457-944d1a7c76ee
github.com/kyma-incubator/hydroform/provision v0.0.0-20200528121905-83605518328f
github.com/kyma-incubator/octopus v0.0.0-20191009105757-2e9d86cd9967
github.com/kyma-project/kyma v0.5.1-0.20200211132707-0a36a0f31d7e
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/olekukonko/tablewriter v0.0.1
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runc v0.1.1 // indirect
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4
github.com/pkg/errors v0.8.1
github.com/spf13/cobra v0.0.5
github.com/stretchr/testify v1.4.0
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20191029155521-f43be2a4598c // indirect
google.golang.org/genproto v0.0.0-20191002211648-c459b9ce5143 // indirect
google.golang.org/grpc v1.27.1 // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.2.8
gotest.tools v2.2.0+incompatible
k8s.io/api v0.0.0-20191114100237-2cd11237263f
k8s.io/apimachinery v0.0.0-20191004115701-31ade1b30762
k8s.io/client-go v12.0.0+incompatible
sigs.k8s.io/yaml v1.1.0
)