go.mod 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. module go.etcd.io/etcd
  2. require (
  3. github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
  4. github.com/bgentry/speakeasy v0.1.0
  5. github.com/coreos/go-semver v0.2.0
  6. github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7
  7. github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf
  8. github.com/davecgh/go-spew v1.1.1 // indirect
  9. github.com/dgrijalva/jwt-go v3.2.0+incompatible
  10. github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4
  11. github.com/fatih/color v1.7.0 // indirect
  12. github.com/ghodss/yaml v1.0.0
  13. github.com/gogo/protobuf v1.0.0
  14. github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
  15. github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903
  16. github.com/golang/protobuf v1.2.0
  17. github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a
  18. github.com/google/uuid v1.0.0
  19. github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c // indirect
  20. github.com/grpc-ecosystem/go-grpc-middleware v1.0.0
  21. github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
  22. github.com/grpc-ecosystem/grpc-gateway v1.4.1
  23. github.com/inconshreveable/mousetrap v1.0.0 // indirect
  24. github.com/jonboulle/clockwork v0.1.0
  25. github.com/kr/pty v1.0.0
  26. github.com/mattn/go-colorable v0.0.9 // indirect
  27. github.com/mattn/go-isatty v0.0.4 // indirect
  28. github.com/mattn/go-runewidth v0.0.2 // indirect
  29. github.com/matttproud/golang_protobuf_extensions v1.0.0 // indirect
  30. github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5
  31. github.com/onsi/gomega v1.4.2 // indirect
  32. github.com/pkg/errors v0.8.0 // indirect
  33. github.com/pmezard/go-difflib v1.0.0 // indirect
  34. github.com/prometheus/client_golang v0.8.0
  35. github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612
  36. github.com/prometheus/common v0.0.0-20180518154759-7600349dcfe1 // indirect
  37. github.com/prometheus/procfs v0.0.0-20180612222113-7d6f385de8be // indirect
  38. github.com/sirupsen/logrus v1.0.5 // indirect
  39. github.com/soheilhy/cmux v0.1.4
  40. github.com/spf13/cobra v0.0.3
  41. github.com/spf13/pflag v1.0.1
  42. github.com/stretchr/testify v1.2.2 // indirect
  43. github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8
  44. github.com/ugorji/go v1.1.1
  45. github.com/urfave/cli v1.18.0
  46. github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2
  47. go.etcd.io/bbolt v1.3.1-etcd.7
  48. go.uber.org/atomic v1.3.2 // indirect
  49. go.uber.org/multierr v1.1.0 // indirect
  50. go.uber.org/zap v1.9.1
  51. golang.org/x/crypto v0.0.0-20180608092829-8ac0e0d97ce4
  52. golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
  53. golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2
  54. google.golang.org/genproto v0.0.0-20180608181217-32ee49c4dd80 // indirect
  55. google.golang.org/grpc v1.14.0
  56. gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
  57. gopkg.in/cheggaaa/pb.v1 v1.0.25
  58. gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
  59. gopkg.in/yaml.v2 v2.2.2
  60. )