diff options
author | 2019-08-05 10:57:33 +0200 | |
---|---|---|
committer | 2019-08-05 20:12:19 +0200 | |
commit | b2ae271c4c9ab275745fe7719fab6216aab601db (patch) | |
tree | 6407d33ef235eb03d635fe22dbd61b408221c18e /go.mod.master | |
parent | version: bump (diff) | |
download | wireguard-windows-b2ae271c4c9ab275745fe7719fab6216aab601db.tar.xz wireguard-windows-b2ae271c4c9ab275745fe7719fab6216aab601db.zip |
go.mod: operate like a normal go module
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r-- | go.mod.master | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/go.mod.master b/go.mod.master new file mode 100644 index 00000000..41ba98b8 --- /dev/null +++ b/go.mod.master @@ -0,0 +1,18 @@ +module golang.zx2c4.com/wireguard/windows + +require ( + golang.zx2c4.com/wireguard master + + golang.org/x/crypto latest + golang.org/x/net latest + golang.org/x/sys latest + golang.org/x/text latest + + github.com/lxn/walk latest + github.com/lxn/win latest +) + +replace ( + github.com/lxn/walk => golang.zx2c4.com/wireguard/windows pkg/walk + github.com/lxn/win => golang.zx2c4.com/wireguard/windows pkg/walk-win +) |