-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
66 lines (62 loc) · 2.74 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
55
56
57
58
59
60
61
62
63
64
65
66
module github.com/Benny93/kafui
go 1.21
toolchain go1.22.1
require (
github.com/IBM/sarama v1.43.0
github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2
github.com/atotto/clipboard v0.1.4
github.com/birdayz/kaf v0.2.7
github.com/gdamore/tcell/v2 v2.6.1-0.20231203215052-2917c3801e73
github.com/golang/protobuf v1.5.3
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e
github.com/maruel/natural v1.1.1
github.com/mattn/go-colorable v0.1.13
github.com/rivo/tview v0.0.0-20240204151237-861aa94d61c8
github.com/spf13/cobra v1.8.0
github.com/vmihailenco/msgpack/v5 v5.4.1
github.com/xdg/scram v1.0.5
golang.org/x/oauth2 v0.14.0
)
require (
github.com/Landoop/schema-registry v0.0.0-20190327143759-50a5701c1891 // indirect
github.com/bufbuild/protocompile v0.7.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eapache/go-resiliency v1.6.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/jhump/protoreflect v1.15.4 // indirect
github.com/klauspost/compress v1.17.7 // indirect
github.com/linkedin/goavro/v2 v2.12.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/rivo/uniseg v0.4.7-0.20240127222946-601bbb3750c2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/xdg/stringprep v1.0.3 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.1-0.20231027082548-f4a6c1f6e5c1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)