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