-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
executable file
·44 lines (41 loc) · 1.83 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
module github.com/mengjunwei/go-utils
go 1.14
require (
github.com/apache/thrift v0.13.0
github.com/beego/beego/v2 v2.0.1
github.com/coreos/bbolt v1.3.5 // indirect
github.com/coreos/etcd v3.3.25+incompatible
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/garyburd/redigo v1.6.2
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.4.2
github.com/google/btree v1.0.0 // indirect
github.com/google/uuid v1.1.5 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/maprost/restclient v0.0.0-20180504110927-df4e93f6a7e8 // indirect
github.com/maprost/should v0.0.0-20180523202427-db768985d57f // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.10.0
github.com/samuel/go-zookeeper v0.0.0-20200724154423-2164a8ac840e
github.com/soheilhy/cmux v0.1.4 // indirect
github.com/spaolacci/murmur3 v1.1.0
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
github.com/ylywyn/restclient v0.0.0-20190523012311-a5f1ab19a99e
go.etcd.io/bbolt v1.3.5 // indirect
go.etcd.io/etcd v3.3.25+incompatible
go.uber.org/zap v1.16.0 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
google.golang.org/grpc v1.36.0 // indirect
sigs.k8s.io/yaml v1.2.0 // indirect
)
replace (
github.com/coreos/bbolt v1.3.5 => go.etcd.io/bbolt v1.3.4
google.golang.org/grpc v1.36.0 => google.golang.org/grpc v1.26.0
)