-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
34 lines (31 loc) · 1.08 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
31
32
33
34
module github.com/some-programs/natbwmon
go 1.23.2
require (
github.com/benbjohnson/hashfs v0.2.2
github.com/coreos/go-iptables v0.8.0
github.com/florianl/go-conntrack v0.4.0
github.com/gizak/termui/v3 v3.1.0
github.com/go-pa/flagutil v0.1.0
github.com/justinas/alice v1.2.0
github.com/matryer/is v1.4.0
github.com/mxmCherry/movavg v1.1.2
github.com/peterbourgon/ff/v3 v3.4.0
github.com/rs/zerolog v1.33.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)
require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
github.com/mdlayher/socket v0.5.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rs/xid v1.6.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
)