go.mod 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. module github.com/gravitl/netmaker
  2. go 1.15
  3. require (
  4. github.com/aws/aws-sdk-go v1.34.28
  5. github.com/davecgh/go-spew v1.1.1
  6. github.com/dgrijalva/jwt-go v3.2.0+incompatible
  7. github.com/go-playground/validator/v10 v10.5.0
  8. github.com/go-sql-driver/mysql v1.6.0 // indirect
  9. github.com/golang/protobuf v1.5.2
  10. github.com/gorilla/handlers v1.5.1
  11. github.com/gorilla/mux v1.8.0
  12. github.com/jinzhu/copier v0.3.2 // indirect
  13. github.com/mattn/go-sqlite3 v1.14.8
  14. github.com/rqlite/gorqlite v0.0.0-20210514125552-08ff1e76b22f
  15. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  16. github.com/stretchr/testify v1.6.1
  17. github.com/txn2/txeh v1.3.0
  18. github.com/urfave/cli v1.22.5 // indirect
  19. github.com/urfave/cli/v2 v2.3.0
  20. github.com/vishvananda/netlink v1.1.0
  21. go.mongodb.org/mongo-driver v1.4.3
  22. golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
  23. golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
  24. golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
  25. golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
  26. golang.org/x/text v0.3.5 // indirect
  27. golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
  28. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20200609130330-bd2cb7843e1b
  29. google.golang.org/genproto v0.0.0-20210201151548-94839c025ad4 // indirect
  30. google.golang.org/grpc v1.35.0
  31. google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0 // indirect
  32. google.golang.org/protobuf v1.26.0
  33. gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  34. )