-
Notifications
You must be signed in to change notification settings - Fork 112
/
go.mod
57 lines (54 loc) · 2.66 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
module github.com/weibocom/motan-go
go 1.16
require (
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
github.com/beberlei/fastcgi-serve v0.0.0-20151230120321-4676005f65b7
github.com/buraksezer/consistent v0.10.0
github.com/cespare/xxhash/v2 v2.2.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.3.2
github.com/juju/ratelimit v1.0.1
github.com/klauspost/compress v1.4.1 // indirect
github.com/klauspost/cpuid v1.2.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mitchellh/mapstructure v1.1.2
github.com/opentracing/opentracing-go v1.0.2
github.com/panjf2000/ants/v2 v2.9.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec
github.com/shirou/gopsutil/v3 v3.21.9
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/stretchr/testify v1.8.4
github.com/valyala/fasthttp v1.2.0
github.com/weibreeze/breeze-go v0.1.1
go.uber.org/atomic v1.4.0
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0
golang.org/x/net v0.0.0-20201224014010-6772e930b67b
golang.org/x/text v0.3.3 // indirect
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a // indirect
google.golang.org/grpc v1.21.1
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.4
)
replace (
cloud.google.com/go => github.com/GoogleCloudPlatform/google-cloud-go v0.30.0
github.com/stretchr/testify => github.com/stretchr/testify v1.2.2
go.uber.org/atomic => github.com/uber-go/atomic v1.4.0
go.uber.org/multierr => github.com/uber-go/multierr v1.1.1-0.20180122172545-ddea229ff1df
go.uber.org/zap => github.com/uber-go/zap v1.9.1
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20181203042331-505ab145d0a9
golang.org/x/lint => github.com/golang/lint v0.0.0-20181011164241-5906bd5c48cd
golang.org/x/net => github.com/golang/net v0.0.0-20181017193950-04a2e542c03f
golang.org/x/oauth2 => github.com/golang/oauth2 v0.0.0-20181017192945-9dcd33a902f4
golang.org/x/sync => github.com/golang/sync v0.0.0-20180314180146-1d60e4601c6f
golang.org/x/text => github.com/golang/text v0.3.0
golang.org/x/time => github.com/golang/time v0.0.0-20181108054448-85acf8d2951c
golang.org/x/tools => github.com/golang/tools v0.0.0-20181017214349-06f26fdaaa28
google.golang.org/appengine => github.com/golang/appengine v1.2.0
google.golang.org/genproto => github.com/google/go-genproto v0.0.0-20181016170114-94acd270e44e
google.golang.org/grpc => github.com/grpc/grpc-go v1.15.0
)