forked from newrelic/sidecar
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
73 lines (70 loc) · 3.54 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
64
65
66
67
68
69
70
71
72
73
module github.com/NinesStack/sidecar
go 1.21
require (
github.com/NinesStack/memberlist v0.0.0-20170522194404-cfac2b5cf519
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878
github.com/containerd/continuity v0.0.0-20181203112020-004b46473808 // indirect
github.com/envoyproxy/go-control-plane v0.10.3
github.com/fsouza/go-dockerclient v1.3.1
github.com/gogo/protobuf v1.2.1 // indirect
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.6.2
github.com/hashicorp/go-cleanhttp v0.5.0
github.com/jarcoal/httpmock v1.2.0
github.com/kelseyhightower/envconfig v1.3.0
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/pquerna/ffjson v0.0.0-20171002144729-d49c2bc1aa13
github.com/relistan/go-director v0.0.0-20181104164737-5f56787d9731
github.com/sirupsen/logrus v1.0.6
github.com/smartystreets/assertions v1.2.0 // indirect
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff
google.golang.org/grpc v1.45.0
google.golang.org/protobuf v1.28.0
gopkg.in/alecthomas/kingpin.v2 v2.2.5
gopkg.in/jarcoal/httpmock.v1 v1.0.0-20170412085702-cf52904a3cf0
gopkg.in/relistan/rubberneck.v1 v1.0.1
)
require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Microsoft/go-winio v0.4.11 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 // indirect
github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721 // indirect
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc // indirect
github.com/docker/docker v0.7.3-0.20180827131323-0c5f8d2b9b23 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.3.3 // indirect
github.com/docker/libnetwork v0.8.0-dev.2.0.20180608203834-19279f049241 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-multierror v1.0.0 // indirect
github.com/hashicorp/go-sockaddr v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.1 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/miekg/dns v1.0.14 // indirect
github.com/onsi/gomega v1.4.2 // indirect
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runc v0.1.1 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/relistan/rubberneck v1.1.0 // indirect
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7 // indirect
gotest.tools v2.2.0+incompatible // indirect
)