go.mod 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. module github.com/gravitl/netmaker
  2. go 1.23
  3. require (
  4. github.com/blang/semver v3.5.1+incompatible
  5. github.com/eclipse/paho.mqtt.golang v1.4.3
  6. github.com/go-playground/validator/v10 v10.24.0
  7. github.com/golang-jwt/jwt/v4 v4.5.1
  8. github.com/google/uuid v1.6.0
  9. github.com/gorilla/handlers v1.5.2
  10. github.com/gorilla/mux v1.8.1
  11. github.com/lib/pq v1.10.9
  12. github.com/mattn/go-sqlite3 v1.14.24
  13. github.com/rqlite/gorqlite v0.0.0-20240122221808-a8a425b1a6aa
  14. github.com/seancfoley/ipaddress-go v1.7.0
  15. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  16. github.com/stretchr/testify v1.10.0
  17. github.com/txn2/txeh v1.5.5
  18. go.uber.org/automaxprocs v1.6.0
  19. golang.org/x/crypto v0.32.0
  20. golang.org/x/net v0.34.0 // indirect
  21. golang.org/x/oauth2 v0.24.0
  22. golang.org/x/sys v0.29.0 // indirect
  23. golang.org/x/text v0.21.0 // indirect
  24. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20221104135756-97bc4ad4a1cb
  25. gopkg.in/yaml.v3 v3.0.1
  26. )
  27. require (
  28. filippo.io/edwards25519 v1.1.0
  29. github.com/c-robinson/iplib v1.0.8
  30. github.com/posthog/posthog-go v1.2.24
  31. )
  32. require (
  33. github.com/coreos/go-oidc/v3 v3.9.0
  34. github.com/gorilla/websocket v1.5.3
  35. golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
  36. )
  37. require (
  38. github.com/goombaio/namegenerator v0.0.0-20181006234301-989e774b106e
  39. github.com/guumaster/tablewriter v0.0.10
  40. github.com/matryer/is v1.4.1
  41. github.com/olekukonko/tablewriter v0.0.5
  42. github.com/spf13/cobra v1.8.1
  43. gopkg.in/mail.v2 v2.3.1
  44. )
  45. require (
  46. cloud.google.com/go/compute/metadata v0.3.0 // indirect
  47. github.com/gabriel-vasile/mimetype v1.4.8 // indirect
  48. github.com/go-jose/go-jose/v3 v3.0.3 // indirect
  49. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  50. github.com/kr/text v0.2.0 // indirect
  51. github.com/rivo/uniseg v0.2.0 // indirect
  52. github.com/seancfoley/bintree v1.3.1 // indirect
  53. github.com/spf13/pflag v1.0.5 // indirect
  54. gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
  55. )
  56. require (
  57. github.com/davecgh/go-spew v1.1.1 // indirect
  58. github.com/felixge/httpsnoop v1.0.3 // indirect
  59. github.com/go-playground/locales v0.14.1 // indirect
  60. github.com/go-playground/universal-translator v0.18.1 // indirect
  61. github.com/hashicorp/go-version v1.7.0
  62. github.com/leodido/go-urn v1.4.0 // indirect
  63. github.com/mattn/go-runewidth v0.0.13 // indirect
  64. github.com/pmezard/go-difflib v1.0.0 // indirect
  65. golang.org/x/sync v0.10.0 // indirect
  66. )