wireguard-go-bridge: reduce version checks and cleanup

We now rely on -trimpath which restricts us to >= 1.13, and the patch
application should fail too. This has the downside that the user will
need to clean their xcode project when they upgrade go, though.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld
2019-10-08 16:59:02 +02:00
parent 0d8108d8da
commit f120a6aab0
3 changed files with 21 additions and 39 deletions
+4 -5
View File
@@ -1,10 +1,9 @@
module golang.zx2c4.com/wireguard/ios
go 1.12
go 1.13
require (
golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc // indirect
golang.org/x/net v0.0.0-20191003171128-d98b1b443823 // indirect
golang.org/x/sys v0.0.0-20191003212358-c178f38b412c
golang.zx2c4.com/wireguard v0.0.20190908
golang.org/x/net v0.0.0-20191007182048-72f939374954 // indirect
golang.org/x/sys v0.0.0-20191008105621-543471e840be
golang.zx2c4.com/wireguard v0.0.20190909-0.20191008144818-222f0f8000e8
)