forked from linkerd/linkerd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
59 lines (56 loc) · 2.34 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
module github.com/linkerd/linkerd2
go 1.14
require (
contrib.go.opencensus.io/exporter/ocagent v0.6.0
github.com/Azure/go-autorest/autorest v0.11.3 // indirect
github.com/briandowns/spinner v0.0.0-20190212173954-5cf08d0ac778
github.com/clarketm/json v1.13.4
github.com/containernetworking/cni v0.6.1-0.20180218032124-142cde0c766c
github.com/elazarl/goproxy v0.0.0-20190711103511-473e67f1d7d2 // indirect
github.com/elazarl/goproxy/ext v0.0.0-20190711103511-473e67f1d7d2 // indirect
github.com/emicklei/proto v1.6.8
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fatih/color v1.9.0
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.0
github.com/go-openapi/spec v0.19.3
github.com/golang/protobuf v1.4.3
github.com/gorilla/websocket v1.4.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/imdario/mergo v0.3.8
github.com/julienschmidt/httprouter v1.2.0
github.com/linkerd/linkerd2-proxy-api v0.1.15
github.com/linkerd/linkerd2-proxy-init v1.3.8
github.com/mattn/go-isatty v0.0.12
github.com/mattn/go-runewidth v0.0.4
github.com/nsf/termbox-go v0.0.0-20180613055208-5c94acc5e6eb
github.com/onsi/gomega v1.8.1 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/browser v0.0.0-20170505125900-c90ca0c84f15
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/common v0.10.0
github.com/sergi/go-diff v1.0.0
github.com/servicemeshinterface/smi-sdk-go v0.4.1
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
go.opencensus.io v0.22.2
golang.org/x/net v0.0.0-20200707034311-ab3426394381
golang.org/x/tools v0.0.0-20200616133436-c1934b75d054
google.golang.org/grpc v1.31.1
google.golang.org/protobuf v1.24.0
helm.sh/helm/v3 v3.4.1
k8s.io/api v0.19.3
k8s.io/apiextensions-apiserver v0.19.3
k8s.io/apimachinery v0.19.3
k8s.io/client-go v0.19.3
k8s.io/code-generator v0.19.3
k8s.io/klog/v2 v2.2.0
k8s.io/kube-aggregator v0.18.8
sigs.k8s.io/yaml v1.2.0
)
// to avoid the `github.com/golang/protobuf/protoc-gen-go/generator` deprecation warning
// (see https://github.com/golang/protobuf/issues/1104)
replace github.com/grpc-ecosystem/grpc-gateway => github.com/grpc-ecosystem/grpc-gateway v1.14.8