go.mod 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. module github.com/gravitl/netmaker
  2. go 1.19
  3. require (
  4. github.com/eclipse/paho.mqtt.golang v1.4.3
  5. github.com/go-playground/validator/v10 v10.20.0
  6. github.com/golang-jwt/jwt/v4 v4.5.0
  7. github.com/google/uuid v1.6.0
  8. github.com/gorilla/handlers v1.5.2
  9. github.com/gorilla/mux v1.8.1
  10. github.com/lib/pq v1.10.9
  11. github.com/mattn/go-sqlite3 v1.14.22
  12. github.com/rqlite/gorqlite v0.0.0-20240122221808-a8a425b1a6aa
  13. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  14. github.com/stretchr/testify v1.9.0
  15. github.com/txn2/txeh v1.5.5
  16. golang.org/x/crypto v0.23.0
  17. golang.org/x/net v0.22.0 // indirect
  18. golang.org/x/oauth2 v0.20.0
  19. golang.org/x/sys v0.20.0 // indirect
  20. golang.org/x/text v0.15.0 // indirect
  21. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20221104135756-97bc4ad4a1cb
  22. gopkg.in/yaml.v3 v3.0.1
  23. )
  24. require (
  25. filippo.io/edwards25519 v1.1.0
  26. github.com/c-robinson/iplib v1.0.8
  27. github.com/posthog/posthog-go v0.0.0-20211028072449-93c17c49e2b0
  28. )
  29. require (
  30. github.com/coreos/go-oidc/v3 v3.9.0
  31. github.com/gorilla/websocket v1.5.1
  32. golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
  33. )
  34. require (
  35. github.com/go-jose/go-jose/v3 v3.0.3
  36. github.com/guumaster/tablewriter v0.0.10
  37. github.com/matryer/is v1.4.1
  38. github.com/olekukonko/tablewriter v0.0.5
  39. github.com/spf13/cobra v1.8.0
  40. )
  41. require (
  42. cloud.google.com/go/compute/metadata v0.3.0 // indirect
  43. github.com/gabriel-vasile/mimetype v1.4.3 // indirect
  44. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  45. github.com/rivo/uniseg v0.2.0 // indirect
  46. github.com/spf13/pflag v1.0.5 // indirect
  47. )
  48. require (
  49. github.com/davecgh/go-spew v1.1.1 // indirect
  50. github.com/felixge/httpsnoop v1.0.3 // indirect
  51. github.com/go-playground/locales v0.14.1 // indirect
  52. github.com/go-playground/universal-translator v0.18.1 // indirect
  53. github.com/hashicorp/go-version v1.7.0
  54. github.com/leodido/go-urn v1.4.0 // indirect
  55. github.com/mattn/go-runewidth v0.0.13 // indirect
  56. github.com/pmezard/go-difflib v1.0.0 // indirect
  57. github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
  58. golang.org/x/sync v0.1.0 // indirect
  59. )