diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-29 17:42:28 -0600 |
---|---|---|
committer | Simon Rozman <simon@rozman.si> | 2019-08-30 15:34:17 +0200 |
commit | 14df9c3e75fce5dcb709e46f860838cc88d4033a (patch) | |
tree | cd9d83f88b00f59304bda531c1db12c4ff94075e /go.mod | |
parent | 353f0956bccf4919f7764166f1dd0f2c8bb7cca2 (diff) |
wintun: take mutex so that deletion uses the right name
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -3,7 +3,8 @@ module golang.zx2c4.com/wireguard go 1.12 require ( - golang.org/x/crypto v0.0.0-20190617133340-57b3e21c3d56 - golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 - golang.org/x/sys v0.0.0-20190618155005-516e3c20635f + golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472 + golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 + golang.org/x/sys v0.0.0-20190830023255-19e00faab6ad + golang.org/x/text v0.3.2 ) |