go.mod 1.1 KB

12345678910111213141516171819202122232425262728
  1. module github.com/gravitl/netmaker
  2. go 1.15
  3. require (
  4. github.com/go-playground/validator/v10 v10.5.0
  5. github.com/golang-jwt/jwt/v4 v4.0.0
  6. github.com/golang/protobuf v1.5.2 // indirect
  7. github.com/gorilla/handlers v1.5.1
  8. github.com/gorilla/mux v1.8.0
  9. github.com/lib/pq v1.10.3
  10. github.com/mattn/go-sqlite3 v1.14.8
  11. github.com/rqlite/gorqlite v0.0.0-20210514125552-08ff1e76b22f
  12. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  13. github.com/stretchr/testify v1.6.1
  14. github.com/txn2/txeh v1.3.0
  15. github.com/urfave/cli/v2 v2.3.0
  16. golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
  17. golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
  18. golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect
  19. golang.org/x/text v0.3.7-0.20210524175448-3115f89c4b99 // indirect
  20. golang.zx2c4.com/wireguard v0.0.0-20210805125648-3957e9b9dd19 // indirect
  21. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20210913210325-91d1988e44de
  22. google.golang.org/genproto v0.0.0-20210201151548-94839c025ad4 // indirect
  23. google.golang.org/grpc v1.35.0
  24. google.golang.org/protobuf v1.26.0
  25. gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  26. )