go.mod 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. module github.com/gravitl/netmaker
  2. go 1.19
  3. require (
  4. github.com/eclipse/paho.mqtt.golang v1.4.2
  5. github.com/go-playground/validator/v10 v10.11.1
  6. github.com/golang-jwt/jwt/v4 v4.4.2
  7. github.com/google/uuid v1.3.0
  8. github.com/gorilla/handlers v1.5.1
  9. github.com/gorilla/mux v1.8.0
  10. github.com/lib/pq v1.10.7
  11. github.com/mattn/go-sqlite3 v1.14.16
  12. github.com/rqlite/gorqlite v0.0.0-20210514125552-08ff1e76b22f
  13. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  14. github.com/stretchr/testify v1.8.1
  15. github.com/txn2/txeh v1.3.0
  16. golang.org/x/crypto v0.3.0
  17. golang.org/x/net v0.2.0 // indirect
  18. golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
  19. golang.org/x/sys v0.2.0 // indirect
  20. golang.org/x/text v0.4.0 // indirect
  21. golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c
  22. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220324164955-056925b7df31
  23. google.golang.org/protobuf v1.28.1 // indirect
  24. gopkg.in/yaml.v3 v3.0.1
  25. )
  26. require (
  27. filippo.io/edwards25519 v1.0.0
  28. github.com/c-robinson/iplib v1.0.3
  29. github.com/go-ping/ping v1.1.0
  30. github.com/posthog/posthog-go v0.0.0-20211028072449-93c17c49e2b0
  31. )
  32. require (
  33. github.com/coreos/go-oidc/v3 v3.4.0
  34. github.com/gorilla/websocket v1.5.0
  35. github.com/pkg/errors v0.9.1
  36. github.com/sirupsen/logrus v1.9.0
  37. golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
  38. gortc.io/stun v1.23.0
  39. )
  40. require (
  41. github.com/gravitl/netclient v0.0.0-20221228022055-5bdb0bc7861d
  42. github.com/matryer/is v1.4.0
  43. )
  44. require (
  45. cloud.google.com/go/compute v1.7.0 // indirect
  46. github.com/davecgh/go-spew v1.1.1 // indirect
  47. github.com/felixge/httpsnoop v1.0.3 // indirect
  48. github.com/go-playground/locales v0.14.0 // indirect
  49. github.com/go-playground/universal-translator v0.18.0 // indirect
  50. github.com/golang/protobuf v1.5.2 // indirect
  51. github.com/google/go-cmp v0.5.8 // indirect
  52. github.com/hashicorp/go-version v1.6.0
  53. github.com/josharian/native v1.0.0 // indirect
  54. github.com/leodido/go-urn v1.2.1 // indirect
  55. github.com/mdlayher/genetlink v1.2.0 // indirect
  56. github.com/mdlayher/netlink v1.6.0 // indirect
  57. github.com/mdlayher/socket v0.1.1 // indirect
  58. github.com/pmezard/go-difflib v1.0.0 // indirect
  59. github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
  60. golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
  61. google.golang.org/appengine v1.6.7 // indirect
  62. gopkg.in/square/go-jose.v2 v2.6.0 // indirect
  63. )