From fcc8ad05df75d73f10f9aaa1c468a11a66a48f87 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 21 Jan 2021 00:24:01 +0100 Subject: netstack: further sequester with own go.mod and go.sum In order to avoid even the flirtation with passing on these dependencies to ordinary consumers of wireguard-go, this commit makes a new go.mod that's entirely separate from the root one. Signed-off-by: Jason A. Donenfeld --- tun/netstack/go.mod | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tun/netstack/go.mod (limited to 'tun/netstack/go.mod') diff --git a/tun/netstack/go.mod b/tun/netstack/go.mod new file mode 100644 index 0000000..0b4fbb1 --- /dev/null +++ b/tun/netstack/go.mod @@ -0,0 +1,9 @@ +module golang.zx2c4.com/wireguard/tun/netstack + +go 1.15 + +require ( + golang.org/x/net v0.0.0-20201110031124-69a78807bb2b + golang.zx2c4.com/wireguard v0.0.20201118 + gvisor.dev/gvisor v0.0.0-20210109011639-2fb7a49fea98 +) -- cgit v1.2.3