-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gopkg.toml
69 lines (59 loc) · 1.78 KB
/
Gopkg.toml
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
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true
[prune]
go-tests = true
unused-packages = true
# overrite according to tidb, this resolves conflicts between tidb and go-grpc-middleware
[[override]]
name = "google.golang.org/grpc"
source = "https://github.com/grpc/grpc-go.git"
version = "=1.7.5"
# overrite according to tidb, this should have been constraint by tidb
[[override]]
name = "github.com/pingcap/kvproto"
revision = "2cf2492c337c4d0281d8ead8686d47764f1df6c4"
# overrite according to tidb, this should have been constraint by tidb
[[override]]
name = "github.com/pingcap/tipb"
revision = "2d5073e5521a10f8db2adc0eaab2c46ca0a151d9"
[[constraint]]
version="=v2.0.8"
name = "github.com/pingcap/tidb"
# logrus is imported by multiple packages, we should override to a work version
# The 'sirupsen' should not be 'Sirupsen' in all importing packages
[[constraint]]
name = "github.com/sirupsen/logrus"
revision = "3bcb09397d6d88e7676a9bc8433ca11ba5304837"
[[constraint]]
branch = "master"
name = "github.com/arthurkiller/rollingWriter"
[[constraint]]
branch = "master"
name = "github.com/shafreeck/configo"
# imported by autotest
[[constraint]]
branch = "master"
name = "github.com/stretchr/testify"