-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
68 lines (66 loc) · 2.98 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
module github.com/Jarnpher553/gemini
require (
github.com/360EntSecGroup-Skylar/excelize v1.4.1
github.com/Jarnpher553/viper v1.4.1-0.20190619031735-b954551383d3
github.com/adjust/rmq/v3 v3.0.0
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/eclipse/paho.mqtt.golang v1.2.1-0.20201101082912-47bdbb57492f
github.com/gin-contrib/cors v1.3.0
github.com/gin-gonic/gin v1.6.3
github.com/go-gomail/gomail v0.0.0-20160411212932-81ebce5c23df
github.com/go-playground/validator/v10 v10.3.0 // indirect
github.com/go-redis/redis v6.15.9+incompatible
github.com/go-redis/redis/v7 v7.4.0
github.com/go-redis/redis/v8 v8.3.1 // indirect
github.com/go-redsync/redsync/v4 v4.0.3
github.com/go-sql-driver/mysql v1.4.1
github.com/gocarina/gocsv v0.0.0-20190617172706-c2ed51a5cbc5
github.com/golang/snappy v0.0.1 // indirect
github.com/gomodule/redigo v2.0.0+incompatible // indirect
github.com/hashicorp/consul v1.4.2
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/go-immutable-radix v1.1.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-rootcerts v1.0.0 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/hashicorp/serf v0.8.2 // indirect
github.com/jinzhu/copier v0.0.0-20180308034124-7e38e58719c3
github.com/jinzhu/gorm v1.9.9
github.com/jinzhu/now v1.0.1
github.com/json-iterator/go v1.1.10 // indirect
github.com/miekg/dns v1.1.6 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/oklog/ulid/v2 v2.0.2
github.com/opentracing/opentracing-go v1.1.0
github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5
github.com/openzipkin/zipkin-go v0.2.1
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6
github.com/panjf2000/gnet v1.3.0
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a
github.com/robfig/cron/v3 v3.0.0
github.com/rs/xid v1.2.1
github.com/satori/go.uuid v1.2.0
github.com/segmentio/ksuid v1.0.2
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/sony/gobreaker v0.4.1
github.com/sony/sonyflake v1.0.0
github.com/spf13/cast v1.3.1 // indirect
github.com/tidwall/pretty v1.0.0 // indirect
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect
github.com/xdg/stringprep v1.0.0 // indirect
go.mongodb.org/mongo-driver v1.0.3
go.uber.org/zap v1.15.0
golang.org/x/sync v0.0.0-20190423024810-112230192c58
golang.org/x/sys v0.0.0-20200819171115-d785dc25833f // indirect
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
google.golang.org/grpc v1.27.0
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/go-playground/validator.v9 v9.29.1
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
gopkg.in/resty.v1 v1.12.0
)
go 1.15