-
Notifications
You must be signed in to change notification settings - Fork 20
/
go.mod
42 lines (40 loc) · 1.84 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
module github.com/wework/grabbit
require (
emperror.dev/errors v0.4.3
emperror.dev/handler/logrus v0.1.0
github.com/Rican7/retry v0.1.0
github.com/Shopify/sarama v1.24.0 // indirect
github.com/bsm/sarama-cluster v2.1.15+incompatible // indirect
github.com/dangkaka/go-kafka-avro v0.0.0-20181108134201-d57aece51a15
github.com/eapache/go-resiliency v1.2.0 // indirect
github.com/go-sql-driver/mysql v1.4.1
github.com/golang/protobuf v1.3.2
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/klauspost/compress v1.8.6 // indirect
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/linkedin/goavro v2.1.0+incompatible
github.com/lopezator/migrator v0.2.0
github.com/onsi/ginkgo v1.8.0 // indirect
github.com/onsi/gomega v1.5.0 // indirect
github.com/opentracing-contrib/go-amqp v0.0.0-20171102191528-e26701f95620
github.com/opentracing/opentracing-go v1.1.0
github.com/pierrec/lz4 v2.3.0+incompatible // indirect
github.com/prometheus/client_golang v1.1.0
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
github.com/prometheus/common v0.7.0 // indirect
github.com/prometheus/procfs v0.0.5 // indirect
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563 // indirect
github.com/rs/xid v1.2.1
github.com/sirupsen/logrus v1.4.2
github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271
go.uber.org/multierr v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc // indirect
golang.org/x/net v0.0.0-20191009170851-d66e71096ffb // indirect
golang.org/x/sys v0.0.0-20191009170203-06d7bd2c5f4f // indirect
google.golang.org/appengine v1.6.5 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/jcmturner/gokrb5.v7 v7.3.0 // indirect
gopkg.in/linkedin/goavro.v1 v1.0.5 // indirect
)
go 1.13