-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
54 lines (50 loc) · 1.92 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module gitlab.node-3.net/zander/zander
go 1.22
require (
github.com/alecthomas/kong v0.8.1
github.com/pkg/errors v0.9.1
)
require (
github.com/adrg/xdg v0.4.0
github.com/cactus/go-statsd-client/v5 v5.1.0
github.com/dustin/go-humanize v1.0.1
github.com/fatih/structtag v1.2.0
github.com/gdamore/tcell/v2 v2.7.0
github.com/google/uuid v1.6.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/jedib0t/go-pretty/v6 v6.5.4
github.com/pelletier/go-toml/v2 v2.1.1
github.com/posener/complete v1.2.3
github.com/prometheus/client_golang v1.18.0
github.com/rivo/tview v0.0.0-20240201191747-007cbb1d1344
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
github.com/willabides/kongplete v0.4.0
google.golang.org/grpc v1.61.0
google.golang.org/protobuf v1.32.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.46.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rivo/uniseg v0.4.7-0.20240127222946-601bbb3750c2 // indirect
github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/term v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)