lol
1module github.com/evilsocket/opensnitch/daemon
2
3go 1.14
4
5require (
6 github.com/fsnotify/fsnotify v1.4.7
7 github.com/golang/protobuf v1.5.0
8 github.com/google/gopacket v1.1.14
9 github.com/google/nftables v0.1.0
10 github.com/google/uuid v1.3.0
11 github.com/iovisor/gobpf v0.2.0
12 github.com/varlink/go v0.4.0
13 github.com/vishvananda/netlink v0.0.0-20210811191823-e1a867c6b452
14 github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae
15 golang.org/x/net v0.0.0-20211209124913-491a49abca63
16 golang.org/x/sys v0.0.0-20211205182925-97ca703d548d
17 google.golang.org/grpc v1.32.0
18 google.golang.org/protobuf v1.26.0
19)
20
21require (
22 github.com/BurntSushi/toml v0.4.1 // indirect
23 github.com/google/go-cmp v0.5.6 // indirect
24 github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
25 github.com/mdlayher/netlink v1.4.2 // indirect
26 github.com/mdlayher/socket v0.0.0-20211102153432-57e3fa563ecb // indirect
27 golang.org/x/mod v0.5.1 // indirect
28 golang.org/x/text v0.3.7 // indirect
29 golang.org/x/tools v0.1.8 // indirect
30 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
31 google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
32 honnef.co/go/tools v0.2.2 // indirect
33)