-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
30 lines (27 loc) · 1.03 KB
/
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
module github.com/eiginn/nftrace
go 1.22
require (
github.com/coreos/go-iptables v0.6.0
github.com/florianl/go-nflog/v2 v2.0.1
github.com/gofrs/flock v0.8.1
github.com/gopacket/gopacket v1.1.0
github.com/lorenzosaino/go-sysctl v0.3.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/mdlayher/netlink v1.7.1 // indirect
github.com/mdlayher/socket v0.4.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20230223210539-50820d90acfd // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/tools v0.6.0 // indirect
honnef.co/go/tools v0.4.2 // indirect
)