forked from lt90s/goanalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
47 lines (44 loc) · 2.19 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
module github.com/lt90s/goanalytics
go 1.12
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/apache/rocketmq-client-go v0.0.0-20190311131949-e4bfec263195
github.com/appleboy/gin-jwt v2.5.0+incompatible
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/fvbock/endless v0.0.0-20170109170031-447134032cb6
github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 // indirect
github.com/gin-gonic/gin v1.3.0
github.com/go-stack/stack v1.8.0 // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/google/go-cmp v0.3.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/json-iterator/go v1.1.6 // indirect
github.com/mattn/go-isatty v0.0.7 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/segmentio/kafka-go v0.2.4
github.com/sirupsen/logrus v1.4.1
github.com/spf13/viper v1.3.2
github.com/stretchr/testify v1.3.0
github.com/tidwall/gjson v1.2.1 // indirect
github.com/tidwall/match v1.0.1 // indirect
github.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65 // indirect
github.com/whiteshtef/clockwork v0.0.0-20190417075149-ecf7d9abe8ec
go.mongodb.org/mongo-driver v1.0.1
golang.org/x/crypto v0.0.0-20190506204251-e1dfcc566284
golang.org/x/sync v0.0.0-20190423024810-112230192c58
golang.org/x/text v0.3.2 // indirect
gopkg.in/dgrijalva/jwt-go.v3 v3.2.0
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
)
replace (
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20190513172903-22d7a77e9e5f
golang.org/x/crypto v0.0.0-20190506204251-e1dfcc566284 => github.com/golang/crypto v0.0.0-20190506204251-e1dfcc566284
golang.org/x/net => github.com/golang/net v0.0.0-20190514140710-3ec191127204
golang.org/x/sync v0.0.0-20190423024810-112230192c58 => github.com/golang/sync v0.0.0-20190423024810-112230192c58
golang.org/x/sys => github.com/golang/sys v0.0.0-20190516014833-cab07311ab81
golang.org/x/text => github.com/golang/text v0.3.2
golang.org/x/text v0.3.2 => github.com/golang/text v0.3.2
golang.org/x/tools => github.com/golang/tools v0.0.0-20190516015132-d1a3278ee749
)