-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
43 lines (40 loc) · 1.59 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
module github.com/rmb938/krouter
go 1.18
require (
github.com/buraksezer/consistent v0.9.0
github.com/cespare/xxhash/v2 v2.1.2
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21
github.com/go-logr/logr v0.1.0
github.com/go-logr/zapr v0.1.1
github.com/go-redis/redis/v8 v8.11.4
github.com/google/uuid v1.0.0
github.com/hashicorp/go-multierror v1.1.1
github.com/klauspost/compress v1.15.1
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/outcaste-io/ristretto v0.2.0
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/puzpuzpuz/xsync v1.2.0
github.com/twmb/franz-go v1.4.2
github.com/twmb/franz-go/pkg/kadm v0.0.0-20220325061325-af694554cdf9
github.com/twmb/franz-go/pkg/kmsg v1.0.0
go.uber.org/zap v1.14.1
google.golang.org/protobuf v1.28.0
)
require (
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/frankban/quicktest v1.14.2 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.18.1 // indirect
github.com/pierrec/lz4/v4 v4.1.14 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/twmb/go-rbtree v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)