summaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-09-27 14:18:38 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2021-09-27 14:19:15 -0600
commitbb745b2ea3264bb764cac77c4fa8e69cf9b2a975 (patch)
tree9ead346dee4c446f99dc79f954aef40c2ec3682b /go.mod
parentrwcancel: use ppoll on Linux for Android (diff)
downloadwireguard-go-bb745b2ea3264bb764cac77c4fa8e69cf9b2a975.tar.xz
wireguard-go-bb745b2ea3264bb764cac77c4fa8e69cf9b2a975.zip
rwcancel: use unix.Poll again but bump x/sys so it uses ppoll under the hood
This reverts commit fcc601dbf0f6b626ec1d47a880cbe64f9c8fe385 but then bumps go.mod. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 3 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index 18769da..5d8388b 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module golang.zx2c4.com/wireguard
go 1.16
require (
- golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
- golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
- golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57
+ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
+ golang.org/x/net v0.0.0-20210927181540-4e4d966f7476
+ golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6
)