diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-09-27 14:18:38 -0600 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-09-27 14:19:15 -0600 |
commit | bb745b2ea3264bb764cac77c4fa8e69cf9b2a975 (patch) | |
tree | 9ead346dee4c446f99dc79f954aef40c2ec3682b /go.mod | |
parent | fcc601dbf0f6b626ec1d47a880cbe64f9c8fe385 (diff) |
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.mod | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ) |