summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-05-15 11:52:20 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit76e709193614b3668d3c31a078e667473af20369 (patch)
tree66f0e6caf03e19b5034c687e3b4c3cbd904be03a /go.mod
parentc1847c9cf76cb17e5b027ac4c0aea99d15852d45 (diff)
Initial i18n implementation
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod15
1 files changed, 11 insertions, 4 deletions
diff --git a/go.mod b/go.mod
index 71b28ef..9d83c74 100644
--- a/go.mod
+++ b/go.mod
@@ -3,13 +3,20 @@ module github.com/eduvpn/eduvpn-common
go 1.18
require (
- github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267
+ github.com/jedisct1/go-minisign v0.0.0-20230513092556-d96eb068239a
+ github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
+ golang.org/x/text v0.9.0
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
)
require (
+ golang.org/x/mod v0.8.0 // indirect
+ golang.org/x/tools v0.6.0 // indirect
+)
+
+require (
github.com/go-errors/errors v1.4.2
- golang.org/x/crypto v0.12.0 // indirect
- golang.org/x/net v0.14.0
- golang.org/x/sys v0.11.0 // indirect
+ golang.org/x/crypto v0.9.0 // indirect
+ golang.org/x/net v0.10.0
+ golang.org/x/sys v0.8.0 // indirect
)