This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
forked from redpanda-data/kminion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
34 lines (32 loc) · 1.51 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
module github.com/google-cloud-tools/kafka-minion
require (
github.com/DataDog/zstd v1.4.4 // indirect
github.com/OneOfOne/xxhash v1.2.5 // indirect
github.com/Shopify/sarama v1.24.1
github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b // indirect
github.com/eapache/go-resiliency v1.2.0 // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/klauspost/compress v1.9.5 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/pierrec/lz4 v2.4.0+incompatible // indirect
github.com/pkg/profile v1.2.1 // indirect
github.com/prometheus/client_golang v1.3.0
github.com/prometheus/tsdb v0.8.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.3.0
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c
golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8 // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20190525145741-7be61e1b0e51 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/jcmturner/gokrb5.v7 v7.3.0 // indirect
)
go 1.13