go.mod 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. module github.com/coreos/etcd
  2. go 1.12
  3. require (
  4. github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
  5. github.com/bgentry/speakeasy v0.1.0
  6. github.com/coreos/bbolt v1.3.1-coreos.6
  7. github.com/coreos/go-semver v0.2.0
  8. github.com/coreos/go-systemd v0.0.0-20170731111925-d21964639418
  9. github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf
  10. github.com/cpuguy83/go-md2man v0.0.0-20170603125239-23709d084719 // indirect
  11. github.com/dgrijalva/jwt-go v3.0.0+incompatible
  12. github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4
  13. github.com/fatih/color v1.7.0 // indirect
  14. github.com/gogo/protobuf v1.2.1
  15. github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903
  16. github.com/golang/protobuf v1.3.2
  17. github.com/google/btree v1.0.0
  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 v0.0.0-20170826090648-0dafe0d496ea
  22. github.com/grpc-ecosystem/grpc-gateway v1.3.0
  23. github.com/inconshreveable/mousetrap v1.0.0 // indirect
  24. github.com/jonboulle/clockwork v0.1.0
  25. github.com/json-iterator/go v1.1.7
  26. github.com/kr/pty v1.0.0
  27. github.com/mattn/go-colorable v0.1.2 // indirect
  28. github.com/mattn/go-runewidth v0.0.2 // indirect
  29. github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
  30. github.com/modern-go/reflect2 v1.0.1
  31. github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5
  32. github.com/onsi/ginkgo v1.8.0 // indirect
  33. github.com/onsi/gomega v1.5.0 // indirect
  34. github.com/pkg/errors v0.8.1 // indirect
  35. github.com/prometheus/client_golang v0.0.0-20171005112915-5cec1d0429b0
  36. github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612
  37. github.com/prometheus/common v0.0.0-20171104095907-e3fb1a1acd76 // indirect
  38. github.com/prometheus/procfs v0.0.0-20171017214025-a6e9df898b13 // indirect
  39. github.com/russross/blackfriday v0.0.0-20170728175326-4048872b16cc // indirect
  40. github.com/sirupsen/logrus v1.0.3 // indirect
  41. github.com/soheilhy/cmux v0.1.4
  42. github.com/spf13/cobra v0.0.0-20151124153217-1c44ec8d3f15
  43. github.com/spf13/pflag v1.0.0
  44. github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8
  45. github.com/urfave/cli v1.18.0
  46. github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18
  47. go.uber.org/atomic v1.3.1 // indirect
  48. go.uber.org/multierr v1.1.0 // indirect
  49. go.uber.org/zap v1.10.0
  50. golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
  51. golang.org/x/net v0.0.0-20190813000000-74dc4d7220e7
  52. golang.org/x/time v0.0.0-20170420181420-c06e80d9300e
  53. google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
  54. google.golang.org/grpc v1.23.0
  55. gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
  56. gopkg.in/cheggaaa/pb.v1 v1.0.2
  57. gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
  58. gopkg.in/yaml.v2 v2.2.2
  59. sigs.k8s.io/yaml v1.1.0
  60. )