-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo.mod
84 lines (81 loc) · 4.07 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module github.com/wentaojin/tidba
go 1.19
require (
github.com/cheekybits/genny v1.0.0
github.com/go-sql-driver/mysql v1.5.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/olekukonko/tablewriter v0.0.4
github.com/pingcap/errors v0.11.5-0.20201029093017-5a7df2af2ac7
github.com/pingcap/parser v0.0.0-20201120034941-782dfa0a1a9a
github.com/pingcap/tidb v1.1.0-beta.0.20201121130754-93c3e6becd59
github.com/schollz/progressbar/v3 v3.12.1
github.com/scylladb/go-set v1.0.2
github.com/sergi/go-diff v1.0.1-0.20180205163309-da645544ed44
github.com/spf13/cobra v1.1.1
github.com/tidwall/gjson v1.3.5
github.com/tidwall/pretty v1.0.0
github.com/twotwotwo/sorts v0.0.0-20160814051341-bf5c1f2b8553
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
go.uber.org/zap v1.16.0
golang.org/x/sync v0.1.0
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/HdrHistogram/hdrhistogram-go v1.0.0 // indirect
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect
github.com/danjacques/gofslock v0.0.0-20191023191349-0a45f885bc37 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/golang/snappy v0.0.2 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pingcap/failpoint v0.0.0-20200702092429-9f69995143ce // indirect
github.com/pingcap/kvproto v0.0.0-20201120081251-756b1447ba12 // indirect
github.com/pingcap/log v0.0.0-20201112100606-8f1e84a3abc8 // indirect
github.com/pingcap/tidb-tools v4.0.5-0.20200820092506-34ea90c93237+incompatible // indirect
github.com/pingcap/tipb v0.0.0-20201026044621-45e60c77588f // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.5.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.9.1 // indirect
github.com/prometheus/procfs v0.0.8 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/shirou/gopsutil v2.20.3+incompatible // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.0 // indirect
github.com/tidwall/match v1.0.1 // indirect
github.com/tikv/pd v1.1.0-beta.0.20201119053953-51eff4c1fa05 // indirect
github.com/twmb/murmur3 v1.1.3 // indirect
github.com/uber-go/atomic v1.4.0 // indirect
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
go.etcd.io/etcd v0.5.0-alpha.5.0.20200824191128-ae9734ed278b // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.0.0-20200820010801-b793a1359eac // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 // indirect
google.golang.org/grpc v1.27.1 // indirect
google.golang.org/protobuf v1.23.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)