2021-03-27 20:42:07 +08:00
|
|
|
module github.com/gravitl/netmaker
|
|
|
|
|
2021-12-13 07:04:41 +08:00
|
|
|
go 1.17
|
2021-03-27 20:42:07 +08:00
|
|
|
|
|
|
|
require (
|
2022-01-13 05:23:34 +08:00
|
|
|
github.com/eclipse/paho.mqtt.golang v1.3.5
|
2022-01-03 23:08:19 +08:00
|
|
|
github.com/go-playground/validator/v10 v10.10.0
|
2021-12-07 07:21:32 +08:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.2.0
|
2021-09-23 12:25:28 +08:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2021-03-27 20:42:07 +08:00
|
|
|
github.com/gorilla/handlers v1.5.1
|
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-11-09 07:16:32 +08:00
|
|
|
github.com/lib/pq v1.10.4
|
2022-01-03 23:09:10 +08:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.10
|
2021-07-21 05:18:45 +08:00
|
|
|
github.com/rqlite/gorqlite v0.0.0-20210514125552-08ff1e76b22f
|
2021-07-15 04:47:05 +08:00
|
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
2021-10-21 07:22:44 +08:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-05-01 11:07:25 +08:00
|
|
|
github.com/txn2/txeh v1.3.0
|
2021-07-15 04:47:05 +08:00
|
|
|
github.com/urfave/cli/v2 v2.3.0
|
2021-08-31 03:58:23 +08:00
|
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
|
2021-09-23 12:25:28 +08:00
|
|
|
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
|
2021-10-28 10:08:36 +08:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
2021-08-31 03:58:23 +08:00
|
|
|
golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect
|
2021-09-23 12:25:28 +08:00
|
|
|
golang.org/x/text v0.3.7-0.20210524175448-3115f89c4b99 // indirect
|
2021-08-31 03:58:23 +08:00
|
|
|
golang.zx2c4.com/wireguard v0.0.0-20210805125648-3957e9b9dd19 // indirect
|
2021-09-22 05:50:09 +08:00
|
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20210913210325-91d1988e44de
|
2021-03-27 20:42:07 +08:00
|
|
|
google.golang.org/genproto v0.0.0-20210201151548-94839c025ad4 // indirect
|
2022-01-03 23:08:51 +08:00
|
|
|
google.golang.org/grpc v1.43.0
|
2021-10-21 00:07:38 +08:00
|
|
|
google.golang.org/protobuf v1.27.1
|
2022-01-13 05:23:34 +08:00
|
|
|
gopkg.in/ini.v1 v1.66.2
|
2021-10-28 10:08:36 +08:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
2021-03-27 20:42:07 +08:00
|
|
|
)
|
2021-12-13 07:04:41 +08:00
|
|
|
|
|
|
|
require (
|
|
|
|
cloud.google.com/go v0.34.0 // indirect
|
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
|
2022-01-03 23:01:37 +08:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2021-12-13 07:04:41 +08:00
|
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
|
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
|
|
github.com/google/go-cmp v0.5.5 // indirect
|
2022-01-10 23:55:05 +08:00
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
2021-12-13 07:04:41 +08:00
|
|
|
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
|
|
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
|
|
github.com/mdlayher/genetlink v1.0.0 // indirect
|
|
|
|
github.com/mdlayher/netlink v1.4.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/russross/blackfriday/v2 v2.0.1 // indirect
|
|
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
|
|
google.golang.org/appengine v1.4.0 // indirect
|
|
|
|
)
|