-
Notifications
You must be signed in to change notification settings - Fork 41
/
go.mod
52 lines (49 loc) · 2.35 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
module github.com/frankrap/goalgo
go 1.17
require (
github.com/Workiva/go-datastructures v1.0.50
github.com/facebookgo/inject v0.0.0-20180706035515-f23751cae28b
github.com/frankrap/bitmex-api v1.0.1
github.com/golang/protobuf v1.3.2
github.com/hashicorp/go-plugin v1.0.0
github.com/nntaoli-project/goex v1.3.1
github.com/sirupsen/logrus v1.4.2
github.com/sony/sonyflake v0.0.0-20181109022403-6d5bd6181009
github.com/vmihailenco/msgpack v4.0.4+incompatible
golang.org/x/net v0.0.0-20200421231249-e086a090c8fd
google.golang.org/grpc v1.25.1
)
require (
github.com/Kucoin/kucoin-go-sdk v1.2.7 // indirect
github.com/chuckpreslar/emission v0.0.0-20170206194824-a7ddd980baf9 // indirect
github.com/deckarep/golang-set v1.7.1 // indirect
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
github.com/facebookgo/structtag v0.0.0-20150214074306-217e25fb9691 // indirect
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect
github.com/go-openapi/errors v0.19.4 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/go-hclog v0.8.0 // indirect
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/klauspost/compress v1.8.2 // indirect
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/micro/go-micro v1.18.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/nubo/jwt v0.0.0-20150918093313-da5b79c3bbaf // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/tidwall/gjson v1.6.0 // indirect
github.com/tidwall/match v1.0.1 // indirect
github.com/tidwall/pretty v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.6.0 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
golang.org/x/text v0.3.2 // indirect
google.golang.org/appengine v1.5.0 // indirect
google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)