-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
63 lines (50 loc) · 1.36 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
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
required = [
# vendor subpacakge which contains .go files to work around dep issue:
# https://github.com/golang/dep/issues/1306
"k8s.io/repo-infra/kazel"
]
[[constraint]]
name = "github.com/kubernetes-sigs/sig-storage-lib-external-provisioner"
version = "1.0.0"
[[constraint]]
name = "k8s.io/client-go"
branch = "release-10.0"
[[constraint]]
name = "k8s.io/api"
branch = "release-1.13"
[[constraint]]
name = "k8s.io/kubernetes"
branch = "release-1.13"
[[constraint]]
name = "k8s.io/apimachinery"
branch = "release-1.13"
[[constraint]]
name = "k8s.io/apiserver"
branch = "release-1.13"
[[override]]
name = "k8s.io/cli-runtime"
branch = "release-1.13"
[[override]]
name = "k8s.io/apiextensions-apiserver"
branch = "release-1.13"
# https://github.com/kubernetes/kubernetes/blob/v1.13.0/Godeps/Godeps.json#L1359
[[override]]
name = "github.com/docker/docker"
revision = "a9fbbdc8dd8794b20af358382ab780559bca589d"
# https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
[prune]
non-go = true
go-tests = true
unused-packages = true
[[prune.project]]
name = "k8s.io/repo-infra"
non-go = false
unused-packages = false