-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
72 lines (71 loc) · 3.8 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
67
68
69
70
71
72
module github.com/meitu/bifrost
require (
github.com/arthurkiller/mqtt-go v0.0.0-20190731092044-91c8fa49816f
github.com/arthurkiller/rollingwriter v1.1.2
github.com/awalterschulze/gographviz v0.0.0-20170410065617-c84395e536e1
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
github.com/bitly/go-simplejson v0.5.0
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/cheggaaa/pb v2.0.6+incompatible
github.com/coreos/etcd v3.3.13+incompatible
github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7 // indirect
github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea
github.com/cznic/mathutil v0.0.0-20180504122225-ca4c9f2c1369 // indirect
github.com/distributedio/configo v0.0.0-20190610140513-0d38d0d8590a
github.com/distributedio/continuous v0.0.0-20190604140757-955fd80462f7
github.com/eclipse/paho.mqtt.golang v1.1.1
github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect
github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9 // indirect
github.com/facebookgo/grace v0.0.0-20170218225239-4afe952a37a4
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect
github.com/fperf/fperf v0.0.0-20190109131028-7d960b4189f8
github.com/garyburd/redigo v1.6.0
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7 // indirect
github.com/gin-gonic/gin v0.0.0-20170702092826-d459835d2b07
github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee // indirect
github.com/gobwas/pool v0.2.0 // indirect
github.com/gobwas/ws v0.1.0
github.com/gogo/protobuf v1.1.1
github.com/golang/protobuf v1.3.2
github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/influxdata/influxdb v1.5.3 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/myesui/uuid v1.0.0 // indirect
github.com/pingcap/goleveldb v0.0.0-20171020122428-b9ff6c35079e // indirect
github.com/pingcap/tidb v0.0.0-20190813060611-86ad1a96c3a6
github.com/prometheus/client_golang v0.8.0
github.com/prometheus/common v0.0.0-20180518154759-7600349dcfe1 // indirect
github.com/prometheus/procfs v0.0.0-20180601124529-94663424ae5a // indirect
github.com/robfig/cron v1.2.0 // indirect
github.com/shafreeck/retry v0.0.0-20180827080527-71c8c3fbf8f8
github.com/sirupsen/logrus v0.0.0-20170323161349-3bcb09397d6d
github.com/spaolacci/murmur3 v0.0.0-20170819071325-9f5d223c6079 // indirect
github.com/stretchr/testify v1.4.0
github.com/twinj/uuid v1.0.0
github.com/uber-go/atomic v1.3.2 // indirect
github.com/uber/jaeger-client-go v2.14.0+incompatible // indirect
github.com/uber/jaeger-lib v1.5.0 // indirect
github.com/ugorji/go v1.1.1 // indirect
go.uber.org/zap v1.9.1
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
golang.org/x/net v0.0.0-20190320064053-1272bf9dcd53
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect
google.golang.org/grpc v1.25.1
gopkg.in/VividCortex/ewma.v1 v1.1.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/cheggaaa/pb.v2 v2.0.6 // indirect
gopkg.in/fatih/color.v1 v1.7.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/mattn/go-colorable.v0 v0.0.9 // indirect
gopkg.in/mattn/go-isatty.v0 v0.0.3 // indirect
gopkg.in/mattn/go-runewidth.v0 v0.0.2 // indirect
gopkg.in/yaml.v2 v2.2.7 // indirect
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
)