go.mod 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. module github.com/slackhq/nebula
  2. go 1.17
  3. require (
  4. github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
  5. github.com/armon/go-radix v1.0.0
  6. github.com/cespare/xxhash/v2 v2.1.2 // indirect
  7. github.com/cyberdelia/go-metrics-graphite v0.0.0-20161219230853-39f87cc3b432
  8. github.com/flynn/noise v1.0.0
  9. github.com/gogo/protobuf v1.3.2
  10. github.com/golang/protobuf v1.5.2
  11. github.com/google/gopacket v1.1.19
  12. github.com/imdario/mergo v0.3.8
  13. github.com/kardianos/service v1.2.0
  14. github.com/miekg/dns v1.1.43
  15. github.com/nbrownus/go-metrics-prometheus v0.0.0-20210712211119-974a6260965f
  16. github.com/prometheus/client_golang v1.11.0
  17. github.com/prometheus/client_model v0.2.0 // indirect
  18. github.com/prometheus/procfs v0.7.3 // indirect
  19. github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
  20. github.com/sirupsen/logrus v1.8.1
  21. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  22. github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
  23. github.com/stretchr/testify v1.7.0
  24. github.com/vishvananda/netlink v1.1.0
  25. github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
  26. golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
  27. golang.org/x/net v0.0.0-20211101193420-4a448f8816b3
  28. golang.org/x/sys v0.0.0-20211102192858-4dd72447c267
  29. google.golang.org/protobuf v1.27.1
  30. gopkg.in/yaml.v2 v2.4.0
  31. )
  32. require (
  33. github.com/beorn7/perks v1.0.1 // indirect
  34. github.com/davecgh/go-spew v1.1.1 // indirect
  35. github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
  36. github.com/pmezard/go-difflib v1.0.0 // indirect
  37. github.com/prometheus/common v0.32.1 // indirect
  38. golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
  39. gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
  40. )