-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
35 lines (30 loc) · 937 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module wgnetwork
go 1.19
require (
github.com/google/nftables v0.1.0
github.com/google/uuid v1.3.0
github.com/vishvananda/netlink v1.1.0
github.com/vishvananda/netns v0.0.4
go.etcd.io/bbolt v1.3.7
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
)
require (
github.com/miekg/dns v1.1.55
github.com/zyablitsev/qrencode-go v0.0.0-20230210110517-327dd2bd36f2
)
require (
golang.org/x/mod v0.12.0 // indirect
golang.org/x/tools v0.11.0 // indirect
)
require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/mdlayher/genetlink v1.3.2 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
github.com/mdlayher/socket v0.4.1 // indirect
golang.org/x/crypto v0.11.0
golang.org/x/net v0.12.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.10.0
golang.zx2c4.com/wireguard v0.0.0-20230704135630-469159ecf7d1 // indirect
)