1module go.etcd.io/etcd
2
3go 1.14
4
5require (
6	github.com/bgentry/speakeasy v0.1.0
7	github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa
8	github.com/coreos/go-semver v0.2.0
9	github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7
10	github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf
11	github.com/creack/pty v1.1.7
12	github.com/dgrijalva/jwt-go v3.2.0+incompatible
13	github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4
14	github.com/fatih/color v1.7.0 // indirect
15	github.com/gogo/protobuf v1.2.1
16	github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903
17	github.com/golang/protobuf v1.3.2
18	github.com/google/btree v1.0.0
19	github.com/google/uuid v1.0.0
20	github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c // indirect
21	github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
22	github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
23	github.com/grpc-ecosystem/grpc-gateway v1.9.5
24	github.com/inconshreveable/mousetrap v1.0.0 // indirect
25	github.com/jonboulle/clockwork v0.1.0
26	github.com/json-iterator/go v1.1.7
27	github.com/mattn/go-colorable v0.0.9 // indirect
28	github.com/mattn/go-isatty v0.0.4 // indirect
29	github.com/mattn/go-runewidth v0.0.2 // indirect
30	github.com/modern-go/reflect2 v1.0.1
31	github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5
32	github.com/prometheus/client_golang v1.0.0
33	github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
34	github.com/sirupsen/logrus v1.4.2 // indirect
35	github.com/soheilhy/cmux v0.1.4
36	github.com/spf13/cobra v0.0.3
37	github.com/spf13/pflag v1.0.1
38	github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8
39	github.com/urfave/cli v1.20.0
40	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2
41	go.etcd.io/bbolt v1.3.3
42	go.uber.org/atomic v1.3.2 // indirect
43	go.uber.org/multierr v1.1.0 // indirect
44	go.uber.org/zap v1.10.0
45	golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
46	golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
47	golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7
48	golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456 // indirect
49	golang.org/x/text v0.3.3 // indirect
50	golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2
51	golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect
52	google.golang.org/grpc v1.26.0
53	gopkg.in/cheggaaa/pb.v1 v1.0.25
54	gopkg.in/yaml.v2 v2.2.2
55	honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
56	sigs.k8s.io/yaml v1.1.0
57)
58