aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/go.mod
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-10-28 15:09:04 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-10-29 21:09:26 +0200
commit539979e99b3c8cb42a0df163a5626c62cfcb6696 (patch)
treeb853f7db4682d4139c69f8454c756f6ee781fe19 /go.mod
parentfetcher,winhttp: force TLS 1.2 on Win 8.0 and 7 (diff)
downloadwireguard-windows-539979e99b3c8cb42a0df163a5626c62cfcb6696.tar.xz
wireguard-windows-539979e99b3c8cb42a0df163a5626c62cfcb6696.zip
manager: cleanup legacy wintun
It's not good to leave cruft around from the upgrade case when people want to uninstall, so we remove wintun in the uninstaller manually (without the help of wintun.dll, which we no longer ship). But also, so that we can eventually drop that code, we also remove it opportunistically when the manager starts. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--go.mod8
1 files changed, 4 insertions, 4 deletions
diff --git a/go.mod b/go.mod
index b54d9293..55779a43 100644
--- a/go.mod
+++ b/go.mod
@@ -6,9 +6,9 @@ require (
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794
github.com/lxn/win v0.0.0-20210218163916-a377121e959e
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
- golang.org/x/net v0.0.0-20211020060615-d418f374d309
- golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359
- golang.org/x/text v0.3.8-0.20211004125949-5bd84dd9b33b
+ golang.org/x/net v0.0.0-20211029160332-540bb53d3b2e
+ golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8
+ golang.org/x/text v0.3.8-0.20211029042148-bb1c79828956
)
require (
@@ -20,5 +20,5 @@ require (
replace (
github.com/lxn/walk => golang.zx2c4.com/wireguard/windows v0.0.0-20210121140954-e7fc19d483bd
github.com/lxn/win => golang.zx2c4.com/wireguard/windows v0.0.0-20210224134948-620c54ef6199
- golang.org/x/sys => golang.zx2c4.com/wireguard/windows v0.0.0-20211026085405-4db69cf28188
+ golang.org/x/sys => golang.zx2c4.com/wireguard/windows v0.0.0-20211029170807-5c05bdce0504
)