-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
33 lines (29 loc) · 1.01 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
module github.com/zerodha/kaf-relay
go 1.21
require (
github.com/knadh/koanf/parsers/toml v0.1.0
github.com/knadh/koanf/providers/file v0.1.0
github.com/knadh/koanf/providers/posflag v0.1.0
github.com/knadh/koanf/v2 v2.0.1
github.com/spf13/pflag v1.0.5
github.com/twmb/franz-go v1.17.1
github.com/twmb/franz-go/pkg/kmsg v1.8.0
)
require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/valyala/fastrand v1.1.0 // indirect
github.com/valyala/histogram v1.2.0 // indirect
golang.org/x/sys v0.20.0 // indirect
)
require (
github.com/VictoriaMetrics/metrics v1.23.1
github.com/klauspost/compress v1.17.8 // indirect
github.com/twmb/franz-go/pkg/kadm v1.8.1
golang.org/x/crypto v0.23.0 // indirect
)