Skip to content

Commit 0520577

Browse files
authored
update mod parser & tidb (#331)
1 parent 9a7bc05 commit 0520577

2 files changed

Lines changed: 671 additions & 184 deletions

File tree

go.mod

Lines changed: 16 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -6,60 +6,43 @@ require (
66
github.com/Shopify/sarama v1.19.0
77
github.com/coreos/etcd v3.3.10+incompatible
88
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
9-
github.com/denisenkom/go-mssqldb v0.0.0-20190412130859-3b1d194e553a // indirect
10-
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
119
github.com/fsnotify/fsnotify v1.4.7
12-
github.com/go-ole/go-ole v1.2.2 // indirect
13-
github.com/go-sql-driver/mysql v1.4.0
14-
github.com/gogo/protobuf v1.2.0
15-
github.com/golang/mock v1.2.0
16-
github.com/golang/protobuf v1.3.2
10+
github.com/go-sql-driver/mysql v1.5.0
11+
github.com/gogo/protobuf v1.3.1
12+
github.com/golang/mock v1.3.1
13+
github.com/golang/protobuf v1.3.4
1714
github.com/hashicorp/go-getter v0.0.0-20181213035916-be39683deade
1815
github.com/hashicorp/go-hclog v0.7.0 // indirect
1916
github.com/hashicorp/go-plugin v0.0.0-20190220160451-3f118e8ee104
2017
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
21-
github.com/jinzhu/gorm v0.0.0-20160404144928-5174cc5c242a
22-
github.com/jinzhu/inflection v0.0.0-20170102125226-1c35d901db3d // indirect
23-
github.com/jinzhu/now v1.0.0 // indirect
24-
github.com/json-iterator/go v1.1.5
18+
github.com/jinzhu/gorm v1.9.12
19+
github.com/json-iterator/go v1.1.9
2520
github.com/juju/errors v0.0.0-20170703010042-c7d06af17c68
2621
github.com/juju/loggo v0.0.0-20190212223446-d976af380377 // indirect
2722
github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073 // indirect
28-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
29-
github.com/kr/pretty v0.1.0 // indirect
30-
github.com/lib/pq v1.0.0 // indirect
31-
github.com/mattn/go-sqlite3 v1.10.0 // indirect
3223
github.com/mitchellh/hashstructure v1.0.0
3324
github.com/mitchellh/mapstructure v1.1.2
34-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
35-
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
3625
github.com/olivere/elastic v6.2.17+incompatible
3726
github.com/olivere/elastic/v7 v7.0.6
38-
github.com/onsi/ginkgo v1.7.0
39-
github.com/onsi/gomega v1.4.3
40-
github.com/pingcap/errors v0.11.4
41-
github.com/pingcap/parser v0.0.0-20191127110312-37cd7d635816
42-
github.com/pingcap/tidb v0.0.0-20190118125846-54b6de0880f0
43-
github.com/pingcap/tipb v0.0.0-20191127084114-0820b784842f // indirect
44-
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829
27+
github.com/onsi/ginkgo v1.11.0
28+
github.com/onsi/gomega v1.8.1
29+
github.com/pingcap/errors v0.11.5-0.20190809092503-95897b64e011
30+
github.com/pingcap/parser v0.0.0-20200623164729-3a18f1e5dceb
31+
github.com/pingcap/tidb v1.1.0-beta.0.20200630082100-328b6d0a955c
32+
github.com/prometheus/client_golang v1.5.1
4533
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
4634
github.com/satori/go.uuid v1.2.0
4735
github.com/serialx/hashring v0.0.0-20170811022404-6a9381c5a83e
48-
github.com/shirou/gopsutil v2.18.12+incompatible // indirect
4936
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
5037
github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726
5138
github.com/siddontang/go-mysql v0.0.0-20190312052122-c6ab05a85eb8
52-
github.com/sirupsen/logrus v1.4.2
53-
github.com/stretchr/testify v1.3.0
54-
github.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65 // indirect
39+
github.com/sirupsen/logrus v1.6.0
40+
github.com/stretchr/testify v1.5.1
5541
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect
5642
github.com/xdg/stringprep v1.0.0 // indirect
5743
go.mongodb.org/mongo-driver v1.0.1
58-
golang.org/x/crypto v0.0.0-20191122220453-ac88ee75c92c // indirect
59-
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
60-
golang.org/x/sys v0.0.0-20191127021746-63cb32ae39b2 // indirect
61-
golang.org/x/text v0.3.2 // indirect
62-
google.golang.org/grpc v1.19.0
44+
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
45+
google.golang.org/grpc v1.26.0
6346
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0
6447
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce
6548
gopkg.in/natefinch/lumberjack.v2 v2.0.0

0 commit comments

Comments
 (0)