go.mod 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. module github.com/slackhq/nebula
  2. go 1.17
  3. require (
  4. github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  5. github.com/armon/go-radix v1.0.0
  6. github.com/cespare/xxhash/v2 v2.1.1 // indirect
  7. github.com/cyberdelia/go-metrics-graphite v0.0.0-20161219230853-39f87cc3b432
  8. github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
  9. github.com/flynn/noise v0.0.0-20210331153838-4bdb43be3117
  10. github.com/gogo/protobuf v1.3.2
  11. github.com/golang/protobuf v1.5.0
  12. github.com/google/gopacket v1.1.19
  13. github.com/imdario/mergo v0.3.8
  14. github.com/kardianos/service v1.1.0
  15. github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
  16. github.com/miekg/dns v1.1.25
  17. github.com/nbrownus/go-metrics-prometheus v0.0.0-20180622211546-6e6d5173d99c
  18. github.com/prometheus/client_golang v1.2.1
  19. github.com/prometheus/client_model v0.0.0-20191202183732-d1d2010b5bee // indirect
  20. github.com/prometheus/procfs v0.0.8 // indirect
  21. github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563
  22. github.com/sirupsen/logrus v1.4.2
  23. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  24. github.com/songgao/water v0.0.0-20190725173103-fd331bda3f4b
  25. github.com/stretchr/testify v1.6.1
  26. github.com/vishvananda/netlink v1.0.1-0.20190522153524-00009fb8606a
  27. github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect
  28. golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
  29. golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
  30. golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
  31. google.golang.org/protobuf v1.26.0
  32. gopkg.in/yaml.v2 v2.2.7
  33. )
  34. require (
  35. github.com/beorn7/perks v1.0.1 // indirect
  36. github.com/davecgh/go-spew v1.1.1 // indirect
  37. github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
  38. github.com/pmezard/go-difflib v1.0.0 // indirect
  39. github.com/prometheus/common v0.7.0 // indirect
  40. golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
  41. gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
  42. )