-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
54 lines (51 loc) · 2.34 KB
/
go.mod
File metadata and controls
54 lines (51 loc) · 2.34 KB
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
module go-micro-learning
go 1.13.3
replace (
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.0
github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1
github.com/lucas-clemente/quic-go => github.com/lucas-clemente/quic-go v0.7.1-0.20190913061013-f15a82d3fdc3
github.com/nats-io/nats.go v1.8.2-0.20190607221125-9f4d16fe7c2d => github.com/nats-io/nats.go v1.8.1
github.com/nats-io/nkeys => github.com/nats-io/nkeys v0.1.3
github.com/testcontainers/testcontainer-go => github.com/testcontainers/testcontainers-go v0.0.0-20181115231424-8e868ca12c0f
)
require (
github.com/VictoriaMetrics/metrics v1.10.0
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/armon/go-metrics v0.3.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/docker/go-metrics v0.0.1 // indirect
github.com/gin-gonic/gin v1.5.0
github.com/go-redis/redis v6.15.6+incompatible
github.com/go-sql-driver/mysql v1.4.1
github.com/golang/protobuf v1.3.2
github.com/google/uuid v1.1.1
github.com/gorilla/sessions v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.12.1 // indirect
github.com/hashicorp/serf v0.8.5 // indirect
github.com/juju/ratelimit v1.0.1
github.com/klauspost/compress v1.9.1 // indirect
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/marten-seemann/qtls v0.4.1 // indirect
github.com/mattn/go-runewidth v0.0.6 // indirect
github.com/micro/cli v0.2.0
github.com/micro/go-micro v1.18.0
github.com/micro/go-plugins v1.5.1
github.com/micro/micro v1.18.0
github.com/montanaflynn/stats v0.5.0 // indirect
github.com/nats-io/nkeys v0.1.2 // indirect
github.com/opentracing/opentracing-go v1.1.0
github.com/pierrec/lz4 v2.3.0+incompatible // indirect
github.com/prometheus/client_golang v1.2.1
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563 // indirect
github.com/uber/jaeger-client-go v2.20.1+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible // indirect
go.uber.org/multierr v1.4.0 // indirect
go.uber.org/zap v1.12.0
golang.org/x/tools v0.0.0-20191108193012-7d206e10da11 // indirect
google.golang.org/appengine v1.6.5 // indirect
google.golang.org/grpc v1.25.1
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/square/go-jose.v2 v2.4.0 // indirect
gopkg.in/yaml.v2 v2.2.5 // indirect
)