go.mod 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. module github.com/gravitl/netmaker
  2. go 1.23.0
  3. toolchain go1.23.7
  4. require (
  5. github.com/blang/semver v3.5.1+incompatible
  6. github.com/eclipse/paho.mqtt.golang v1.4.3
  7. github.com/go-playground/validator/v10 v10.26.0
  8. github.com/golang-jwt/jwt/v4 v4.5.2
  9. github.com/google/uuid v1.6.0
  10. github.com/gorilla/handlers v1.5.2
  11. github.com/gorilla/mux v1.8.1
  12. github.com/lib/pq v1.10.9
  13. github.com/mattn/go-sqlite3 v1.14.28
  14. github.com/rqlite/gorqlite v0.0.0-20240122221808-a8a425b1a6aa
  15. github.com/seancfoley/ipaddress-go v1.7.0
  16. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  17. github.com/stretchr/testify v1.10.0
  18. github.com/txn2/txeh v1.5.5
  19. go.uber.org/automaxprocs v1.6.0
  20. golang.org/x/crypto v0.38.0
  21. golang.org/x/net v0.37.0 // indirect
  22. golang.org/x/oauth2 v0.29.0
  23. golang.org/x/sys v0.33.0 // indirect
  24. golang.org/x/text v0.25.0 // indirect
  25. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20221104135756-97bc4ad4a1cb
  26. gopkg.in/yaml.v3 v3.0.1
  27. )
  28. require (
  29. filippo.io/edwards25519 v1.1.0
  30. github.com/c-robinson/iplib v1.0.8
  31. github.com/posthog/posthog-go v1.5.5
  32. )
  33. require (
  34. github.com/coreos/go-oidc/v3 v3.14.1
  35. github.com/gorilla/websocket v1.5.3
  36. golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
  37. )
  38. require (
  39. github.com/goombaio/namegenerator v0.0.0-20181006234301-989e774b106e
  40. github.com/guumaster/tablewriter v0.0.10
  41. github.com/matryer/is v1.4.1
  42. github.com/olekukonko/tablewriter v0.0.5
  43. github.com/spf13/cobra v1.9.1
  44. gopkg.in/mail.v2 v2.3.1
  45. gorm.io/datatypes v1.2.5
  46. gorm.io/driver/postgres v1.5.11
  47. gorm.io/driver/sqlite v1.5.7
  48. gorm.io/gorm v1.26.1
  49. )
  50. require (
  51. cloud.google.com/go/compute/metadata v0.3.0 // indirect
  52. github.com/gabriel-vasile/mimetype v1.4.8 // indirect
  53. github.com/go-jose/go-jose/v4 v4.0.5 // indirect
  54. github.com/go-sql-driver/mysql v1.8.1 // indirect
  55. github.com/google/go-cmp v0.7.0 // indirect
  56. github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
  57. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  58. github.com/jackc/pgpassfile v1.0.0 // indirect
  59. github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
  60. github.com/jackc/pgx/v5 v5.7.2 // indirect
  61. github.com/jackc/puddle/v2 v2.2.2 // indirect
  62. github.com/jinzhu/inflection v1.0.0 // indirect
  63. github.com/jinzhu/now v1.1.5 // indirect
  64. github.com/kr/text v0.2.0 // indirect
  65. github.com/rivo/uniseg v0.2.0 // indirect
  66. github.com/rogpeppe/go-internal v1.14.1 // indirect
  67. github.com/seancfoley/bintree v1.3.1 // indirect
  68. github.com/spf13/pflag v1.0.6 // indirect
  69. gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
  70. gorm.io/driver/mysql v1.5.6 // indirect
  71. )
  72. require (
  73. github.com/davecgh/go-spew v1.1.1 // indirect
  74. github.com/felixge/httpsnoop v1.0.3 // indirect
  75. github.com/go-playground/locales v0.14.1 // indirect
  76. github.com/go-playground/universal-translator v0.18.1 // indirect
  77. github.com/hashicorp/go-version v1.7.0
  78. github.com/leodido/go-urn v1.4.0 // indirect
  79. github.com/mattn/go-runewidth v0.0.13 // indirect
  80. github.com/pmezard/go-difflib v1.0.0 // indirect
  81. golang.org/x/sync v0.14.0 // indirect
  82. )