forked from linkerd/linkerd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
63 lines (59 loc) · 2.53 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/linkerd/linkerd2
go 1.16
require (
contrib.go.opencensus.io/exporter/ocagent v0.7.0
github.com/briandowns/spinner v0.0.0-20190212173954-5cf08d0ac778
github.com/clarketm/json v1.15.7
github.com/containernetworking/cni v0.6.1-0.20180218032124-142cde0c766c
github.com/elazarl/goproxy v0.0.0-20190711103511-473e67f1d7d2 // indirect
github.com/emicklei/proto v1.9.1
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fatih/color v1.13.0
github.com/fsnotify/fsnotify v1.5.1
github.com/ghodss/yaml v1.0.0
github.com/go-openapi/spec v0.19.5
github.com/golang/protobuf v1.5.2
github.com/gorilla/websocket v1.4.2
github.com/grantae/certinfo v0.0.0-20170412194111-59d56a35515b
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/imdario/mergo v0.3.12
github.com/julienschmidt/httprouter v1.3.0
github.com/linkerd/linkerd2-proxy-api v0.3.0
github.com/linkerd/linkerd2-proxy-init v1.5.1
github.com/mattn/go-isatty v0.0.14
github.com/mattn/go-runewidth v0.0.13
github.com/nsf/termbox-go v0.0.0-20180613055208-5c94acc5e6eb
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/browser v0.0.0-20170505125900-c90ca0c84f15
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.32.1
github.com/sergi/go-diff v1.2.0
github.com/servicemeshinterface/smi-sdk-go v0.5.0
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
go.opencensus.io v0.23.0
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
golang.org/x/tools v0.1.7
google.golang.org/grpc v1.42.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
google.golang.org/protobuf v1.27.1
helm.sh/helm/v3 v3.6.3
k8s.io/api v0.21.3
k8s.io/apiextensions-apiserver v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/client-go v0.21.3
k8s.io/code-generator v0.22.3
k8s.io/klog/v2 v2.30.0
k8s.io/kube-aggregator v0.21.3
rsc.io/letsencrypt v0.0.3 // indirect
sigs.k8s.io/yaml v1.3.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
// avoids scanners hitting the alert described in https://github.com/helm/helm/issues/7846
// this should be removed when helm upgrades that dependency on runc
replace github.com/opencontainers/runc => github.com/opencontainers/runc v1.0.2