forked from docker-archive-public/docker.app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGopkg.toml
More file actions
122 lines (98 loc) · 2.92 KB
/
Gopkg.toml
File metadata and controls
122 lines (98 loc) · 2.92 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# 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"
required = ["github.com/wadey/gocovmerge"]
# We need runc at least 0.0.9 to get otherwise missing stubs for non-linux platforms.
# We need > 0.1.1 as it depends on uppercase Sirupsen/logrus.
[[override]]
name = "github.com/opencontainers/runc"
version = "v1.0.0-rc6"
[[override]]
name = "github.com/docker/cnab-to-oci"
branch = "master"
[[override]]
name = "github.com/containerd/containerd"
source = "github.com/simonferquel/containerd"
revision = "42c3614d58767e96c1752977fed94d0b140a0173"
[[override]]
name = "github.com/docker/cli"
branch = "19.03"
[[override]]
name = "github.com/deislabs/duffle"
branch = "master"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "v1.0.5"
[[override]]
name = "github.com/dgrijalva/jwt-go"
revision = "v2.6.0"
[[override]]
name = "github.com/docker/licensing"
revision = "369e5301dc601b478021c0f588f5c3d04626d804"
[[override]]
name = "github.com/xeipuuv/gojsonschema"
revision = "93e72a773fade158921402d6a24c819b48aba29d"
[[override]]
name = "github.com/docker/go-metrics"
revision = "d466d4f6fd960e01820085bd7e1a24426ee7ef18"
[[override]]
name = "github.com/prometheus/client_golang"
revision = "v0.8.0"
[[override]]
name = "github.com/docker/distribution"
revision = "0d3efadf0154c2b8a4e7b6621fff9809655cc580"
[[override]]
name = "github.com/docker/swarmkit"
revision = "18e7e58ea1a5ec016625a636d0d52500eea123bc"
[[override]]
name = "k8s.io/kubernetes"
revision = "v1.14.1"
[[override]]
name = "k8s.io/api"
revision = "kubernetes-1.14.1"
[[override]]
name = "k8s.io/apimachinery"
revision = "kubernetes-1.14.1"
# Overriding imdario/mergo since https://github.com/imdario/mergo/pull/112 is required
[[override]]
name = "github.com/imdario/mergo"
branch = "master"
[[override]]
name = "k8s.io/client-go"
revision = "kubernetes-1.14.1"
# This is using a fork waiting for go-yaml/yaml#375 to be merged
# This PR allows to set a max decoded value, thus not being exposed to yaml bombs
[[override]]
name = "gopkg.in/yaml.v2"
source = "https://github.com/simonferquel/yaml"
revision="c86e64ed9581b7588e736f0c3e6ecc02cc22996e"
[[constraint]]
name = "github.com/spf13/pflag"
branch = "master"
[[constraint]]
name = "github.com/wadey/gocovmerge"
branch = "master"
[prune]
non-go = true
unused-packages = true
go-tests = true
[[prune.project]]
name = "github.com/docker/cli"
non-go = false