forked from sql-machine-learning/sqlflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
68 lines (66 loc) · 3.2 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 sqlflow.org/sqlflow
require (
github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966 // indirect
github.com/alecthomas/chroma v0.7.1
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/aliyun/aliyun-oss-go-sdk v2.0.5+incompatible
github.com/apache/thrift v0.13.0 // indirect
github.com/argoproj/argo v2.4.3+incompatible
github.com/argoproj/pkg v0.0.0-20200624215116-23e74cb168fe
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f // indirect
github.com/beltran/gohive v1.0.0 // indirect
github.com/bitly/go-simplejson v0.5.0
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/c-bata/go-prompt v0.0.0-20190826134812-0f95e1d1de2e
github.com/cosiner/argv v0.0.1 // indirect
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/fortytw2/leaktest v1.3.0
github.com/go-delve/delve v1.3.2 // indirect
github.com/go-openapi/spec v0.19.5 // indirect
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/joho/godotenv v1.3.0
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.5 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.11 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/mattn/go-sixel v0.0.1
github.com/olekukonko/tablewriter v0.0.1
github.com/peterh/liner v1.1.0 // indirect
github.com/pingcap/parser v0.0.0-20190613045206-37cc370a20a4
github.com/pingcap/tidb v0.0.0-20190625145607-60965b006877
github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942 // indirect
github.com/rakyll/gotest v0.0.0-20191108192113-45d501058f2a // indirect
github.com/satori/go.uuid v1.2.0 // indirect
github.com/sbinet/go-python v0.0.0-20190615090516-46d882be3991 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/soniakeys/quant v1.0.0 // indirect
github.com/spf13/cobra v0.0.5 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.4.0
go.starlark.net v0.0.0-20191218235703-9fcb808a6221 // indirect
golang.org/x/arch v0.0.0-20191126211547-368ea8f32fff // indirect
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect
golang.org/x/mod v0.3.0 // indirect
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
golang.org/x/sys v0.0.0-20191224085550-c709ea063b76 // indirect
golang.org/x/tools v0.0.0-20200626171337-aa94e735be7f // indirect
golang.org/x/tools/gopls v0.4.1 // indirect
google.golang.org/grpc v1.27.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.2.7 // indirect
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
k8s.io/api v0.0.0-20191004102349-159aefb8556b
k8s.io/apimachinery v0.17.0 // indirect
mvdan.cc/xurls/v2 v2.2.0 // indirect
sqlflow.org/goalisa v0.0.0-20200618020317-68d3aad1344c
sqlflow.org/gohive v0.0.0-20191009030413-2b2325ce8b38
sqlflow.org/gomaxcompute v0.0.0-20191028113124-e214922c510c
vitess.io/vitess v3.0.0-rc.3+incompatible
)
go 1.13