-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
30 lines (27 loc) · 1021 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
module github.com/fengye87/hud
go 1.23.4
require (
github.com/docker/docker v27.4.0+incompatible
github.com/gdamore/tcell/v2 v2.7.4
github.com/rivo/tview v0.0.0-20241103174730-c76f7879f592
github.com/vishvananda/netlink v1.3.0
gopkg.in/ini.v1 v1.67.0
)
require (
github.com/containerd/log v0.1.0 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/vishvananda/netns v0.0.5 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.1 // indirect
)