go.mod 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. module github.com/slackhq/nebula
  2. go 1.20
  3. require (
  4. dario.cat/mergo v1.0.0
  5. github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
  6. github.com/armon/go-radix v1.0.0
  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/google/gopacket v1.1.19
  11. github.com/kardianos/service v1.2.2
  12. github.com/miekg/dns v1.1.56
  13. github.com/nbrownus/go-metrics-prometheus v0.0.0-20210712211119-974a6260965f
  14. github.com/prometheus/client_golang v1.17.0
  15. github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
  16. github.com/sirupsen/logrus v1.9.3
  17. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  18. github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
  19. github.com/stretchr/testify v1.8.4
  20. github.com/vishvananda/netlink v1.1.1-0.20211118161826-650dca95af54
  21. golang.org/x/crypto v0.16.0
  22. golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53
  23. golang.org/x/net v0.19.0
  24. golang.org/x/sync v0.5.0
  25. golang.org/x/sys v0.15.0
  26. golang.org/x/term v0.15.0
  27. golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2
  28. golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b
  29. golang.zx2c4.com/wireguard/windows v0.5.3
  30. google.golang.org/protobuf v1.31.0
  31. gopkg.in/yaml.v2 v2.4.0
  32. gvisor.dev/gvisor v0.0.0-20230504175454-7b0a1988a28f
  33. )
  34. require (
  35. github.com/beorn7/perks v1.0.1 // indirect
  36. github.com/cespare/xxhash/v2 v2.2.0 // indirect
  37. github.com/davecgh/go-spew v1.1.1 // indirect
  38. github.com/golang/protobuf v1.5.3 // indirect
  39. github.com/google/btree v1.0.1 // indirect
  40. github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
  41. github.com/pmezard/go-difflib v1.0.0 // indirect
  42. github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
  43. github.com/prometheus/common v0.44.0 // indirect
  44. github.com/prometheus/procfs v0.11.1 // indirect
  45. github.com/vishvananda/netns v0.0.4 // indirect
  46. golang.org/x/mod v0.12.0 // indirect
  47. golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
  48. golang.org/x/tools v0.13.0 // indirect
  49. gopkg.in/yaml.v3 v3.0.1 // indirect
  50. )