blob: 96b32320994371c53b58ec192b82614861276377 [file] [log] [blame]
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001# Copyright 2020 The Monogon Project Authors.
2#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17load("@bazel_gazelle//:deps.bzl", "go_repository")
18
19def go_repositories():
20 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +020021 name = "io_k8s_kubernetes",
22 importpath = "k8s.io/kubernetes",
23 version = "v1.19.0-alpha.2",
24 sum = "h1:kTsLVxmg/z3Fexcvu75zzGEHOYQ17jzIJFWhfQQnXDE=",
25 build_tags = ["providerless"],
26 build_file_proto_mode = "disable",
27 patches = [
28 "//third_party/go/patches:k8s-kubernetes.patch",
29 "//third_party/go/patches:k8s-kubernetes-build.patch",
30 ],
31 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +010032 )
33
34 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +020035 name = "com_github_google_cadvisor",
36 importpath = "github.com/google/cadvisor",
37 sum = "h1:au7bcM+rjGXLBSfqjofcSONBre8tlIy94jEbp40BCOQ=",
38 version = "v0.36.1-0.20200323171535-8af10c683a96",
39 patches = [
40 "//third_party/go/patches:cadvisor.patch",
41 "//third_party/go/patches:cadvisor-build.patch",
42 ],
43 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +010044 )
45
46 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +020047 name = "io_k8s_client_go",
48 importpath = "k8s.io/client-go",
49 sum = "h1:YqJuHm/xOYP2VIOWPnQO+ix+Ag5KditpdHmIreWYyTY=",
50 version = "v0.19.0-alpha.2",
51 patches = [
52 "//third_party/go/patches:k8s-client-go.patch",
53 "//third_party/go/patches:k8s-client-go-build.patch",
54 ],
55 patch_args = ["-p1"],
56 )
57
58 # patches for pure mode
59 go_repository(
60 name = "com_github_containernetworking_plugins",
61 importpath = "github.com/containernetworking/plugins",
62 sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
63 version = "v0.8.2",
64 patches = [
65 "//third_party/go/patches:cni-plugins-build.patch",
66 ],
67 patch_args = ["-p1"],
68 )
69
70 # required by containerd, but doesn't folow gazelle name convention
71 go_repository(
72 name = "com_github_opencontainers_runtime-spec",
73 importpath = "github.com/opencontainers/runtime-spec",
74 sum = "h1:Cef96rKLuXxeGzERI/0ve9yAzIeTpx0qz9JKFDZALYw=",
75 version = "v1.0.2-0.20190207185410-29686dbc5559",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +010076 )
77
78 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +020079 name = "com_github_google_gvisor",
80 importpath = "github.com/google/gvisor",
81 sum = "h1:rpcz7X//b7LHYEa8FwGlviAPLkFHz46+RW3ur+kiyhg=",
82 version = "v0.0.0-20200325151121-d8c4eff3f77b",
83 patches = [
84 "//third_party/go/patches:gvisor.patch",
85 ],
86 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +010087 )
88 go_repository(
Lorenz Brunc88c82d2020-05-08 14:35:04 +020089 name = "com_github_google_gvisor_containerd_shim",
90 importpath = "github.com/google/gvisor-containerd-shim",
91 sum = "h1:RdBNQHpoQ3ekzfXYIV4+nQJ3a2xLnIHuZJkM40OEtyA=",
92 version = "v0.0.4",
93 patches = [
94 "//third_party/go/patches:gvisor-containerd-shim.patch",
95 "//third_party/go/patches:gvisor-containerd-shim-build.patch",
96 # Patches below are being upstreamed
97 "//third_party/go/patches:gvisor-containerd-shim-nogo.patch",
98 "//third_party/go/patches:gvisor-shim-root.patch",
99 ],
100 patch_args = ["-p1"],
101 )
102
103 # containerd, Not an actual release, pinned to commit 8e685f78cf66e2901b2fbed2fdddd64449a74ab9 that has support for the required build tags.
104 # Also patched for pure mode and some other issues
105 go_repository(
106 name = "com_github_containerd_containerd",
107 build_file_proto_mode = "disable",
108 build_tags = ["no_zfs", "no_aufs", "no_devicemapper", "no_btrfs"],
109 importpath = "github.com/containerd/containerd",
110 sum = "h1:IeFaEbvx6mQe9K1cXG2K7zynPwge3YUrQlLTyiNiveU=",
111 version = "v1.3.1-0.20200218165203-8e685f78cf66",
112 patches = [
113 "//third_party/go/patches:containerd-build.patch",
114 ],
115 patch_args = ["-p1"],
116 )
117
118 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200119 name = "io_k8s_repo_infra",
120 importpath = "k8s.io/repo-infra",
121 sum = "h1:PQyAIB6SRdV0a3Vj/VA39L1uANW36k/zg3tOk/Ffh3U=",
122 version = "v0.0.0-20190329054012-df02ded38f95",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100123 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100124 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200125 name = "io_k8s_component_base",
126 importpath = "k8s.io/component-base",
127 sum = "h1:nZfjiRab7LcpScUgnudRCG6UMRVmZ3L0GNZZWHkYjus=",
128 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100129 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100130 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200131 name = "io_k8s_cloud_provider",
132 importpath = "k8s.io/cloud-provider",
133 sum = "h1:nFQ/M6B8o+/ICEHbjLFMe4nHgH/8jAHQ1GFw2NJ5Elo=",
134 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100135 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100136 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200137 name = "io_k8s_kubelet",
138 build_file_proto_mode = "disable",
139 importpath = "k8s.io/kubelet",
140 sum = "h1:UPkB1eGbkIWr38J++4Gk7LZjcYeB5JfJBqKzRGfJ/VM=",
141 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100142 )
143 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200144 name = "io_k8s_csi_translation_lib",
145 importpath = "k8s.io/csi-translation-lib",
146 sum = "h1:lH3FPZqHFwPthCQKLKNP90LR5oqjAMxYMJNhicDA5d8=",
147 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100148 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100149 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200150 name = "io_k8s_legacy_cloud_providers",
151 importpath = "k8s.io/legacy-cloud-providers",
152 sum = "h1:jpu9SqacduO6iKtiCKCovH/uZ0GL1PkbsJndUZKUxtc=",
153 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100154 )
155 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200156 name = "io_k8s_apiextensions_apiserver",
157 build_file_proto_mode = "disable",
158 importpath = "k8s.io/apiextensions-apiserver",
159 sum = "h1:lQjE543mSh4jeBxrvnwz37DCzGHW2UMefX8eCzk8uAU=",
160 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100161 )
162 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200163 name = "io_k8s_kube_aggregator",
164 build_file_proto_mode = "disable",
165 importpath = "k8s.io/kube-aggregator",
166 sum = "h1:Li0htDytvDHRnf7IR9AWGSahhyvD4qVxWIJwsUVgo2w=",
167 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100168 )
169 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200170 name = "io_k8s_metrics",
171 build_file_proto_mode = "disable",
172 importpath = "k8s.io/metrics",
173 sum = "h1:5/OfIQ5HeJutKUPpjXXdcgFqxmFf01bYfnFRd1li5b8=",
174 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100175 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100176 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200177 name = "io_k8s_kube_scheduler",
178 importpath = "k8s.io/kube-scheduler",
179 sum = "h1:EpIJpmI5Nn3mii1aaWg5VFMd9Y0Qt+jCcduVxH92Vk8=",
180 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100181 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100182 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200183 name = "io_k8s_kube_controller_manager",
184 importpath = "k8s.io/kube-controller-manager",
185 sum = "h1:E5GkOKLf+ODm2uXQaBqtmf+D4ZJpUUlo8XJoX0nEDL0=",
186 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100187 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100188 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200189 name = "io_k8s_cluster_bootstrap",
190 importpath = "k8s.io/cluster-bootstrap",
191 sum = "h1:MHG+0kAEEh4nDQU2iC8NXNILDDIANK12RB8PcAjyej4=",
192 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100193 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100194 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200195 name = "io_k8s_kube_proxy",
196 importpath = "k8s.io/kube-proxy",
197 sum = "h1:8awQLk0DLJEXew80mjbFTMNs9EtbtXJElBi7K7BqalE=",
198 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100199 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100200 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200201 name = "io_k8s_kubectl",
202 importpath = "k8s.io/kubectl",
203 sum = "h1:ygJWExSY2hnEHt72gJV6DgPDmkdp6xwkQlrZbtmW9EI=",
204 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100205 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100206 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200207 name = "io_k8s_node_api",
208 importpath = "k8s.io/node-api",
209 sum = "h1:L5S79H5EO4jDK/ARsypIXeOrirXJmFplj4ZBIvnK+WM=",
210 version = "v0.17.5",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100211 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100212 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200213 name = "io_k8s_cli_runtime",
214 importpath = "k8s.io/cli-runtime",
215 sum = "h1:/cZeGGp0GxuFSUdjz8jlUQP75QJVz99YtXEU1uNW/LI=",
216 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100217 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100218 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200219 name = "io_k8s_api",
220 build_file_proto_mode = "disable",
221 importpath = "k8s.io/api",
222 sum = "h1:GVZeds8bgQOSdQ/LYcjL7+NstBByZ5L3U/Ks6+E+QRI=",
223 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100224 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100225 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200226 name = "io_k8s_apimachinery",
227 build_file_proto_mode = "disable",
228 importpath = "k8s.io/apimachinery",
229 sum = "h1:N155+ZeSeRnCFyzjYRv3vg9GWJIUm5ElZba66f7qicY=",
230 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100231 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100232 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200233 name = "io_k8s_apiserver",
234 build_file_proto_mode = "disable",
235 importpath = "k8s.io/apiserver",
236 sum = "h1:k1fpzJAPZvtRT9Z8Rc42kciGehIH0GiEmTgEmc46drw=",
237 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100238 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100239 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200240 name = "io_k8s_cri_api",
241 build_file_proto_mode = "disable",
242 importpath = "k8s.io/cri-api",
243 sum = "h1:JDsPY0mIzxR6JYGWKWhX7NIIXa9giiVQ1X/RE0Mw1GY=",
244 version = "v0.19.0-alpha.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100245 )
246 go_repository(
247 name = "com_github_spf13_pflag",
248 importpath = "github.com/spf13/pflag",
249 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
250 version = "v1.0.5",
251 )
252 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200253 name = "com_github_spf13_cobra",
254 importpath = "github.com/spf13/cobra",
255 sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100256 version = "v1.0.0",
257 )
258 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200259 name = "com_github_blang_semver",
260 importpath = "github.com/blang/semver",
261 sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
262 version = "v3.5.0+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100263 )
264 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200265 name = "com_github_coreos_go_systemd",
266 importpath = "github.com/coreos/go-systemd",
267 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
268 version = "v0.0.0-20190321100706-95778dfbb74e",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100269 )
270 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200271 name = "io_k8s_utils",
272 importpath = "k8s.io/utils",
273 sum = "h1:d4vVOjXm687F1iLSP2q3lyPPuyvTUt3aVoBpi2DqRsU=",
274 version = "v0.0.0-20200324210504-a9aa75ae1b89",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100275 )
276 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200277 name = "com_github_spf13_afero",
278 importpath = "github.com/spf13/afero",
279 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
280 version = "v1.2.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100281 )
282 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200283 name = "com_github_armon_circbuf",
284 importpath = "github.com/armon/circbuf",
285 sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
286 version = "v0.0.0-20150827004946-bbbad097214e",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100287 )
288 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200289 name = "com_github_container_storage_interface_spec",
290 importpath = "github.com/container-storage-interface/spec",
291 sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=",
292 version = "v1.2.0",
293 )
294 go_repository(
295 name = "com_github_docker_go_connections",
296 importpath = "github.com/docker/go-connections",
297 sum = "h1:3lOnM9cSzgGwx8VfK/NGOW5fLQ0GjIlCkaktF+n1M6o=",
298 version = "v0.3.0",
299 )
300 go_repository(
301 name = "io_k8s_kube_openapi",
302 importpath = "k8s.io/kube-openapi",
303 sum = "h1:FDWYFE3itI1G8UFOMjUuLbROZExo+Rrfm/Qaf473rm4=",
304 version = "v0.0.0-20200403204345-e1beb1bd0f35",
305 )
306 go_repository(
307 name = "com_github_go_openapi_spec",
308 importpath = "github.com/go-openapi/spec",
309 sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
310 version = "v0.19.3",
311 )
312 go_repository(
313 name = "com_github_evanphx_json_patch",
314 importpath = "github.com/evanphx/json-patch",
315 sum = "h1:fUDGZCv/7iAN7u0puUVhvKCcsR6vRfwrJatElLBEf0I=",
316 version = "v4.2.0+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100317 )
318 go_repository(
319 name = "io_etcd_go_etcd",
320 build_file_proto_mode = "disable",
321 importpath = "go.etcd.io/etcd",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200322 sum = "h1:C7kWARE8r64ppRadl40yfNo6pag+G6ocvGU2xZ6yNes=",
323 version = "v0.5.0-alpha.5.0.20200401174654-e694b7bb0875",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100324 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100325 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200326 name = "com_github_go_openapi_jsonpointer",
327 importpath = "github.com/go-openapi/jsonpointer",
328 sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
329 version = "v0.19.3",
330 )
331 go_repository(
332 name = "com_github_go_openapi_swag",
333 importpath = "github.com/go-openapi/swag",
334 sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
335 version = "v0.19.5",
336 )
337 go_repository(
338 name = "com_github_go_openapi_jsonreference",
339 importpath = "github.com/go-openapi/jsonreference",
340 sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
341 version = "v0.19.3",
342 )
343 go_repository(
344 name = "com_github_cyphar_filepath_securejoin",
345 importpath = "github.com/cyphar/filepath-securejoin",
346 sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
347 version = "v0.2.2",
348 )
349 go_repository(
350 name = "com_github_mailru_easyjson",
351 importpath = "github.com/mailru/easyjson",
352 sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
353 version = "v0.7.0",
354 )
355 go_repository(
356 name = "com_github_puerkitobio_purell",
357 importpath = "github.com/PuerkitoBio/purell",
358 sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
359 version = "v1.1.1",
360 )
361 go_repository(
362 name = "com_github_puerkitobio_urlesc",
363 importpath = "github.com/PuerkitoBio/urlesc",
364 sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
365 version = "v0.0.0-20170810143723-de5bf2ad4578",
366 )
367 go_repository(
368 name = "com_github_mxk_go_flowrate",
369 importpath = "github.com/mxk/go-flowrate",
370 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
371 version = "v0.0.0-20140419014527-cca7078d478f",
372 )
373 go_repository(
374 name = "com_google_cloud_go",
375 importpath = "cloud.google.com/go",
376 sum = "h1:ROfEUZz+Gh5pa62DJWXSaonyu3StP6EA6lPEXPI6mCo=",
377 version = "v0.38.0",
378 )
379 go_repository(
380 name = "com_github_karrick_godirwalk",
381 importpath = "github.com/karrick/godirwalk",
382 sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
383 version = "v1.7.5",
384 )
385 go_repository(
386 name = "com_github_euank_go_kmsg_parser",
387 importpath = "github.com/euank/go-kmsg-parser",
388 sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
389 version = "v2.0.0+incompatible",
390 )
391 go_repository(
392 name = "com_github_mindprince_gonvml",
393 importpath = "github.com/mindprince/gonvml",
394 sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
395 version = "v0.0.0-20190828220739-9ebdce4bb989",
396 )
397 go_repository(
398 name = "com_github_checkpoint_restore_go_criu",
399 importpath = "github.com/checkpoint-restore/go-criu",
400 sum = "h1:T4nWG1TXIxeor8mAu5bFguPJgSIGhZqv/f0z55KCrJM=",
401 version = "v0.0.0-20190109184317-bdb7599cd87b",
402 )
403 go_repository(
404 name = "com_github_mrunalp_fileutils",
405 importpath = "github.com/mrunalp/fileutils",
406 sum = "h1:7InQ7/zrOh6SlFjaXFubv0xX0HsuC9qJsdqm7bNQpYM=",
407 version = "v0.0.0-20171103030105-7d4729fb3618",
408 )
409 go_repository(
410 name = "com_github_vishvananda_netns",
411 importpath = "github.com/vishvananda/netns",
412 sum = "h1:OviZH7qLw/7ZovXvuNyL3XQl8UFofeikI1NW1Gypu7k=",
413 version = "v0.0.0-20191106174202-0a2b9b5464df",
414 )
415 go_repository(
416 name = "com_github_munnerz_goautoneg",
417 importpath = "github.com/munnerz/goautoneg",
418 sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
419 version = "v0.0.0-20191010083416-a7dc8b61c822",
420 )
421 go_repository(
422 name = "com_github_nytimes_gziphandler",
423 importpath = "github.com/NYTimes/gziphandler",
424 sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
425 version = "v0.0.0-20170623195520-56545f4a5d46",
426 )
427 go_repository(
428 name = "com_github_vishvananda_netlink",
429 importpath = "github.com/vishvananda/netlink",
430 sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100431 version = "v1.1.0",
432 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100433 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200434 name = "com_github_googleapis_gnostic",
435 importpath = "github.com/googleapis/gnostic",
436 sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
437 version = "v0.4.1",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100438 )
439 go_repository(
440 name = "org_uber_go_zap",
441 importpath = "go.uber.org/zap",
Lorenz Brun60febd92020-05-07 14:08:18 +0200442 sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=",
443 version = "v1.15.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100444 )
445 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200446 name = "com_github_coreos_go_semver",
447 importpath = "github.com/coreos/go-semver",
448 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100449 version = "v0.3.0",
450 )
451 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200452 name = "org_uber_go_multierr",
453 importpath = "go.uber.org/multierr",
454 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
455 version = "v1.1.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100456 )
457 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200458 name = "org_uber_go_atomic",
459 importpath = "go.uber.org/atomic",
460 sum = "h1:2Oa65PReHzfn29GpvgsYwloV9AVFHPDk8tYxt2c2tr4=",
461 version = "v1.3.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100462 )
463 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200464 name = "com_github_coreos_pkg",
465 importpath = "github.com/coreos/pkg",
466 sum = "h1:n2Ltr3SrfQlf/9nOna1DoGKxLx3qTSI8Ttl6Xrqp6mw=",
467 version = "v0.0.0-20180108230652-97fdf19511ea",
468 )
469 go_repository(
470 name = "com_github_morikuni_aec",
471 importpath = "github.com/morikuni/aec",
472 sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
473 version = "v1.0.0",
474 )
475 go_repository(
476 name = "com_github_lithammer_dedent",
477 importpath = "github.com/lithammer/dedent",
478 sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
479 version = "v1.1.0",
480 )
481 go_repository(
482 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
483 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
484 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
485 version = "v1.2.0",
486 )
487 go_repository(
488 name = "in_gopkg_natefinch_lumberjack_v2",
489 importpath = "gopkg.in/natefinch/lumberjack.v2",
490 sum = "h1:Kjoe/521+yYTO0xv6VymPwLPVq3RES8170ZpJkrFE9Q=",
491 version = "v2.0.0-20161104145732-dd45e6a67c53",
492 )
493 go_repository(
494 name = "com_github_robfig_cron",
495 importpath = "github.com/robfig/cron",
496 sum = "h1:ZjScXvvxeQ63Dbyxy76Fj3AT3Ut0aKsyd2/tl3DTMuQ=",
497 version = "v1.2.0",
498 )
499 go_repository(
500 name = "com_github_coreos_go_oidc",
501 importpath = "github.com/coreos/go-oidc",
502 sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
503 version = "v2.1.0+incompatible",
504 )
505 go_repository(
506 name = "org_gonum_v1_gonum",
507 importpath = "gonum.org/v1/gonum",
508 sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
509 version = "v0.6.2",
510 )
511 go_repository(
512 name = "io_k8s_heapster",
513 importpath = "k8s.io/heapster",
514 sum = "h1:zq1luJo07HL2HT4hiddH4nron62gVRlAq/DpOV3n31s=",
515 version = "v1.2.0",
516 )
517 go_repository(
518 name = "in_gopkg_square_go_jose_v2",
519 importpath = "gopkg.in/square/go-jose.v2",
520 sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
521 version = "v2.2.2",
522 )
523 go_repository(
524 name = "com_github_pquerna_cachecontrol",
525 importpath = "github.com/pquerna/cachecontrol",
526 sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
527 version = "v0.0.0-20171018203845-0dec1b30a021",
528 )
529 go_repository(
530 name = "com_github_go_openapi_validate",
531 importpath = "github.com/go-openapi/validate",
532 sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
533 version = "v0.19.5",
534 )
535 go_repository(
536 name = "com_github_go_openapi_strfmt",
537 importpath = "github.com/go-openapi/strfmt",
538 sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
539 version = "v0.19.3",
540 )
541 go_repository(
542 name = "io_k8s_gengo",
543 importpath = "k8s.io/gengo",
544 sum = "h1:pZzawYyz6VRNPVYpqGv61LWCimQv1BihyeqFrp50/G4=",
545 version = "v0.0.0-20200205140755-e0e292d8aa12",
546 )
547 go_repository(
548 name = "org_golang_x_mod",
549 importpath = "golang.org/x/mod",
550 sum = "h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=",
551 version = "v0.2.0",
552 )
553 go_repository(
554 name = "org_golang_x_xerrors",
555 importpath = "golang.org/x/xerrors",
556 sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
557 version = "v0.0.0-20191204190536-9bdfabe68543",
558 )
559 go_repository(
560 name = "com_github_grpc_ecosystem_grpc_gateway",
561 importpath = "github.com/grpc-ecosystem/grpc-gateway",
562 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
563 version = "v1.9.5",
564 )
565 go_repository(
566 name = "com_github_soheilhy_cmux",
567 importpath = "github.com/soheilhy/cmux",
568 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
569 version = "v0.1.4",
570 )
571 go_repository(
572 name = "com_github_tmc_grpc_websocket_proxy",
573 importpath = "github.com/tmc/grpc-websocket-proxy",
574 sum = "h1:ndzgwNDnKIqyCvHTXaCqh9KlOWKvBry6nuXMJmonVsE=",
575 version = "v0.0.0-20170815181823-89b8d40f7ca8",
576 )
577 go_repository(
578 name = "com_github_go_openapi_errors",
579 importpath = "github.com/go-openapi/errors",
580 sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
581 version = "v0.19.2",
582 )
583 go_repository(
584 name = "com_github_go_openapi_analysis",
585 importpath = "github.com/go-openapi/analysis",
586 sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
587 version = "v0.19.5",
588 )
589 go_repository(
590 name = "com_github_go_openapi_loads",
591 importpath = "github.com/go-openapi/loads",
592 sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
593 version = "v0.19.4",
594 )
595 go_repository(
596 name = "com_github_dustin_go_humanize",
597 importpath = "github.com/dustin/go-humanize",
598 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
599 version = "v1.0.0",
600 )
601 go_repository(
602 name = "com_github_mitchellh_mapstructure",
603 importpath = "github.com/mitchellh/mapstructure",
604 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
605 version = "v1.1.2",
606 )
607 go_repository(
608 name = "com_github_go_openapi_runtime",
609 importpath = "github.com/go-openapi/runtime",
610 sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
611 version = "v0.19.4",
612 )
613 go_repository(
614 name = "com_github_asaskevich_govalidator",
615 importpath = "github.com/asaskevich/govalidator",
616 sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
617 version = "v0.0.0-20190424111038-f61b66f89f4a",
618 )
619 go_repository(
620 name = "org_mongodb_go_mongo_driver",
621 importpath = "go.mongodb.org/mongo-driver",
622 sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
623 version = "v1.1.2",
624 )
625 go_repository(
626 name = "com_github_jonboulle_clockwork",
627 importpath = "github.com/jonboulle/clockwork",
628 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
629 version = "v0.1.0",
630 )
631 go_repository(
632 name = "com_github_grpc_ecosystem_go_grpc_middleware",
633 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
634 sum = "h1:THDBEeQ9xZ8JEaCLyLQqXMMdRqNr0QAUJTIkQAUtFjg=",
635 version = "v1.1.0",
636 )
637 go_repository(
638 name = "com_github_xiang90_probing",
639 importpath = "github.com/xiang90/probing",
640 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
641 version = "v0.0.0-20190116061207-43a291ad63a2",
642 )
643 go_repository(
644 name = "com_github_gorilla_websocket",
645 importpath = "github.com/gorilla/websocket",
646 sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
647 version = "v1.4.0",
648 )
649 go_repository(
650 name = "com_github_google_btree",
651 importpath = "github.com/google/btree",
652 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
653 version = "v1.0.0",
654 )
655 go_repository(
656 name = "com_github_dgrijalva_jwt_go",
657 importpath = "github.com/dgrijalva/jwt-go",
658 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100659 version = "v3.2.0+incompatible",
660 )
661 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200662 name = "com_github_go_stack_stack",
663 importpath = "github.com/go-stack/stack",
664 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
665 version = "v1.8.0",
666 )
667 go_repository(
668 name = "com_github_makenowjust_heredoc",
669 importpath = "github.com/MakeNowJust/heredoc",
670 sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=",
671 version = "v0.0.0-20170808103936-bb23615498cd",
672 )
673 go_repository(
674 name = "com_github_daviddengcn_go_colortext",
675 importpath = "github.com/daviddengcn/go-colortext",
676 sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
677 version = "v0.0.0-20160507010035-511bcaf42ccd",
678 )
679 go_repository(
680 name = "com_github_liggitt_tabwriter",
681 importpath = "github.com/liggitt/tabwriter",
682 sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
683 version = "v0.0.0-20181228230101-89fcab3d43de",
684 )
685 go_repository(
686 name = "io_k8s_sigs_structured_merge_diff_v3",
687 importpath = "sigs.k8s.io/structured-merge-diff/v3",
688 sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
689 version = "v3.0.0",
690 )
691 go_repository(
692 name = "org_golang_google_grpc",
693 importpath = "google.golang.org/grpc",
694 sum = "h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg=",
695 version = "v1.26.0",
696 )
697 go_repository(
698 name = "org_golang_x_net",
699 importpath = "golang.org/x/net",
700 sum = "h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=",
701 version = "v0.0.0-20200324143707-d3edc9973b7e",
702 )
703 go_repository(
704 name = "org_golang_x_text",
705 importpath = "golang.org/x/text",
706 sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
707 version = "v0.3.0",
708 )
709 go_repository(
710 name = "com_github_golang_groupcache",
711 importpath = "github.com/golang/groupcache",
712 sum = "h1:LbsanbbD6LieFkXbj9YNNBupiGHJgFeLpO0j0Fza1h8=",
713 version = "v0.0.0-20160516000752-02826c3e7903",
714 )
715 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200716 name = "com_github_beorn7_perks",
717 importpath = "github.com/beorn7/perks",
718 sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
719 version = "v1.0.1",
720 )
721 go_repository(
722 name = "com_github_burntsushi_toml",
723 importpath = "github.com/BurntSushi/toml",
724 sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
725 version = "v0.3.1",
726 )
727 go_repository(
728 name = "com_github_cespare_xxhash_v2",
729 importpath = "github.com/cespare/xxhash/v2",
730 sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
731 version = "v2.1.1",
732 )
733 go_repository(
734 name = "com_github_containerd_btrfs",
735 importpath = "github.com/containerd/btrfs",
736 sum = "h1:u5X1yvVEsXLcuTWYsFSpTgQKRvo2VTB5gOHcERpF9ZI=",
737 version = "v0.0.0-20200117014249-153935315f4a",
738 )
739 go_repository(
740 name = "com_github_containerd_cgroups",
741 build_file_proto_mode = "disable",
742 importpath = "github.com/containerd/cgroups",
743 sum = "h1:sL8rdngVdYA2SLRwj6sSZ1cLDpBkFBd7IZVp0M2Lboc=",
744 version = "v0.0.0-20200113070643-7347743e5d1e",
745 )
746 go_repository(
747 name = "com_github_containerd_console",
748 importpath = "github.com/containerd/console",
749 sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=",
750 version = "v1.0.0",
751 )
752 go_repository(
753 name = "com_github_containerd_continuity",
754 importpath = "github.com/containerd/continuity",
755 sum = "h1:hBSbT5nWoYGwpmUa8TCsSVFVSdTyFoNlz85rNkH4OGk=",
756 version = "v0.0.0-20200107062522-0ec596719c75",
757 )
758 go_repository(
759 name = "com_github_containerd_fifo",
760 importpath = "github.com/containerd/fifo",
761 sum = "h1:KFbqHhDeaHM7IfFtXHfUHMDaUStpM2YwBR+iJCIOsKk=",
762 version = "v0.0.0-20190816180239-bda0ff6ed73c",
763 )
764 go_repository(
765 name = "com_github_containerd_go_runc",
766 importpath = "github.com/containerd/go-runc",
767 sum = "h1:9aJwmidmB33rxuib1NxR5NT4nvDMA9/S2sDR/D3tE5U=",
768 version = "v0.0.0-20191206163734-a5c2862aed5e",
769 )
770 go_repository(
771 name = "com_github_containerd_ttrpc",
772 importpath = "github.com/containerd/ttrpc",
773 sum = "h1:NY8Zk2i7TpkLxrkOASo+KTFq9iNCEmMH2/ZG9OuOw6k=",
774 version = "v1.0.0",
775 )
776 go_repository(
777 name = "com_github_containerd_typeurl",
778 importpath = "github.com/containerd/typeurl",
779 sum = "h1:7LMH7LfEmpWeCkGcIputvd4P0Rnd0LrIv1Jk2s5oobs=",
780 version = "v1.0.0",
781 )
782 go_repository(
783 name = "com_github_coreos_go_systemd_v22",
784 importpath = "github.com/coreos/go-systemd/v22",
785 sum = "h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28=",
786 version = "v22.0.0",
787 )
788 go_repository(
789 name = "com_github_cpuguy83_go_md2man",
790 importpath = "github.com/cpuguy83/go-md2man",
791 sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
792 version = "v1.0.10",
793 )
794 go_repository(
795 name = "com_github_docker_go_events",
796 importpath = "github.com/docker/go-events",
797 sum = "h1:VXIse57M5C6ezDuCPyq6QmMvEJ2xclYKZ35SfkXdm3E=",
798 version = "v0.0.0-20170721190031-9461782956ad",
799 )
800 go_repository(
801 name = "com_github_docker_go_metrics",
802 importpath = "github.com/docker/go-metrics",
803 sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
804 version = "v0.0.1",
805 )
806 go_repository(
807 name = "com_github_docker_go_units",
808 importpath = "github.com/docker/go-units",
809 sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
810 version = "v0.4.0",
811 )
812 go_repository(
813 name = "com_github_godbus_dbus_v5",
814 importpath = "github.com/godbus/dbus/v5",
815 sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
816 version = "v5.0.3",
817 )
818 go_repository(
819 name = "com_github_gogo_googleapis",
820 build_file_proto_mode = "disable",
821 importpath = "github.com/gogo/googleapis",
822 sum = "h1:Z0v3OJDotX9ZBpdz2V+AI7F4fITSZhVE5mg6GQppwMM=",
823 version = "v1.2.0",
824 )
825 go_repository(
826 name = "com_github_gogo_protobuf",
827 importpath = "github.com/gogo/protobuf",
828 sum = "h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE=",
829 version = "v1.2.1",
830 )
831 go_repository(
832 name = "com_github_google_go_cmp",
833 importpath = "github.com/google/go-cmp",
834 sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
835 version = "v0.4.0",
836 )
837 go_repository(
838 name = "com_github_google_uuid",
839 importpath = "github.com/google/uuid",
840 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
841 version = "v1.1.1",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100842 )
843 go_repository(
844 name = "com_github_hashicorp_errwrap",
845 importpath = "github.com/hashicorp/errwrap",
846 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
847 version = "v1.0.0",
848 )
849 go_repository(
850 name = "com_github_hashicorp_go_multierror",
851 importpath = "github.com/hashicorp/go-multierror",
852 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
853 version = "v1.0.0",
854 )
855 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200856 name = "com_github_hashicorp_golang_lru",
857 importpath = "github.com/hashicorp/golang-lru",
858 sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
859 version = "v0.5.3",
860 )
861 go_repository(
862 name = "com_github_imdario_mergo",
863 importpath = "github.com/imdario/mergo",
864 sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
865 version = "v0.3.7",
866 )
867 go_repository(
868 name = "com_github_konsorten_go_windows_terminal_sequences",
869 importpath = "github.com/konsorten/go-windows-terminal-sequences",
870 sum = "h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk=",
871 version = "v1.0.1",
872 )
873 go_repository(
874 name = "com_github_matttproud_golang_protobuf_extensions",
875 importpath = "github.com/matttproud/golang_protobuf_extensions",
876 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
877 version = "v1.0.1",
878 )
879 go_repository(
880 name = "com_github_microsoft_go_winio",
881 importpath = "github.com/Microsoft/go-winio",
882 sum = "h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=",
883 version = "v0.4.14",
884 )
885 go_repository(
886 name = "com_github_microsoft_hcsshim",
887 build_file_proto_mode = "disable",
888 importpath = "github.com/Microsoft/hcsshim",
889 sum = "h1:GDxLeqRF1hCkdTFNncrs8fZNcB6Fg79G0Q3m38EyySM=",
890 version = "v0.8.8-0.20200109000640-0b571ac85d7c",
891 )
892 go_repository(
893 name = "com_github_opencontainers_go_digest",
894 importpath = "github.com/opencontainers/go-digest",
895 sum = "h1:2C93eP55foV5f0eNmXbidhKzwUZbs/Gk4PRp1zfeffs=",
896 version = "v1.0.0-rc1.0.20180430190053-c9281466c8b2",
897 )
898 go_repository(
899 name = "com_github_opencontainers_image_spec",
900 importpath = "github.com/opencontainers/image-spec",
901 sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
902 version = "v1.0.1",
903 )
904 go_repository(
905 name = "com_github_pkg_errors",
906 importpath = "github.com/pkg/errors",
907 sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=",
908 version = "v0.8.1",
909 )
910 go_repository(
911 name = "com_github_prometheus_client_golang",
912 importpath = "github.com/prometheus/client_golang",
913 sum = "h1:miYCvYqFXtl/J9FIy8eNpBfYthAEFg+Ys0XyUVEcDsc=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100914 version = "v1.3.0",
915 )
916 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200917 name = "com_github_prometheus_client_model",
918 importpath = "github.com/prometheus/client_model",
919 sum = "h1:ElTg5tNp4DqfV7UQjDqv2+RJlNzsDtvNAWccbItceIE=",
920 version = "v0.1.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100921 )
922 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200923 name = "com_github_prometheus_common",
924 importpath = "github.com/prometheus/common",
925 sum = "h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY=",
926 version = "v0.7.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100927 )
928 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200929 name = "com_github_prometheus_procfs",
930 importpath = "github.com/prometheus/procfs",
931 sum = "h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8=",
932 version = "v0.0.8",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100933 )
934 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200935 name = "com_github_russross_blackfriday",
936 importpath = "github.com/russross/blackfriday",
937 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
938 version = "v1.5.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100939 )
940 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200941 name = "com_github_sirupsen_logrus",
942 importpath = "github.com/sirupsen/logrus",
943 sum = "h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k=",
944 version = "v1.4.1",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100945 )
946 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200947 name = "com_github_syndtr_gocapability",
948 importpath = "github.com/syndtr/gocapability",
949 sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
950 version = "v0.0.0-20180916011248-d98352740cb2",
951 )
952 go_repository(
953 name = "com_github_urfave_cli",
954 importpath = "github.com/urfave/cli",
955 sum = "h1:8nz/RUUotroXnOpYzT/Fy3sBp+2XEbXaY641/s3nbFI=",
956 version = "v1.22.0",
957 )
958 go_repository(
959 name = "io_etcd_go_bbolt",
960 importpath = "go.etcd.io/bbolt",
961 sum = "h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=",
962 version = "v1.3.3",
963 )
964 go_repository(
965 name = "io_opencensus_go",
966 importpath = "go.opencensus.io",
967 sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
968 version = "v0.22.0",
969 )
970 go_repository(
971 name = "org_golang_x_sync",
972 importpath = "golang.org/x/sync",
973 sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
974 version = "v0.0.0-20181108010431-42b317875d0f",
975 )
976 go_repository(
977 name = "org_golang_google_genproto",
978 importpath = "google.golang.org/genproto",
979 sum = "h1:wVJP1pATLVPNxCz4R2mTO6HUJgfGE0PmIu2E10RuhCw=",
980 version = "v0.0.0-20170523043604-d80a6e20e776",
981 )
982 go_repository(
983 name = "tools_gotest",
984 importpath = "gotest.tools",
985 sum = "h1:YPidOweaQrSUDfne29Fnuwwo8uoQZuxnrAzZ+Q0pTeE=",
986 version = "v1.4.1-0.20181223230014-1083505acf35",
987 )
988 go_repository(
989 name = "com_github_cilium_ebpf",
990 importpath = "github.com/cilium/ebpf",
991 sum = "h1:kNrHgLQr3ftwQr9JKL3lmyNVlc/7Mjd8lwcbccE5BsI=",
992 version = "v0.0.0-20191203103619-60c3aa43f488",
993 )
994 go_repository(
995 name = "io_k8s_sigs_kustomize",
996 importpath = "sigs.k8s.io/kustomize",
997 sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
998 version = "v2.0.3+incompatible",
999 )
1000 go_repository(
1001 name = "ml_vbom_util",
1002 importpath = "vbom.ml/util",
1003 sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
1004 version = "v0.0.0-20160121211510-db5cfe13f5cc",
1005 )
1006 go_repository(
1007 name = "com_github_exponent_io_jsonpath",
1008 importpath = "github.com/exponent-io/jsonpath",
1009 sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
1010 version = "v0.0.0-20151013193312-d6023ce2651d",
1011 )
1012 go_repository(
1013 name = "com_github_containerd_cri",
1014 build_file_proto_mode = "disable",
1015 importpath = "github.com/containerd/cri",
1016 sum = "h1:tkxzigQGIymwkagfa+zsr1GzlYWJCVh6dUVhEc3fQeo=",
1017 version = "v1.11.1-0.20200130003317-c0294ebfe0b4",
1018 )
1019 go_repository(
1020 name = "com_github_containerd_go_cni",
1021 importpath = "github.com/containerd/go-cni",
1022 sum = "h1:76H5xRcgFYQvHpdlKBiw3CJOeaatmhn6ZETIsNWZJVs=",
1023 version = "v0.0.0-20190822145629-0d360c50b10b",
1024 )
1025 go_repository(
1026 name = "com_github_containernetworking_cni",
1027 importpath = "github.com/containernetworking/cni",
1028 sum = "h1:fE3r16wpSEyaqY4Z4oFrLMmIGfBYIKpPrHK31EJ9FzE=",
1029 version = "v0.7.1",
1030 )
1031 go_repository(
1032 name = "com_github_davecgh_go_spew",
1033 importpath = "github.com/davecgh/go-spew",
1034 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001035 version = "v1.1.1",
1036 )
1037 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001038 name = "com_github_docker_distribution",
1039 importpath = "github.com/docker/distribution",
1040 sum = "h1:dvc1KSkIYTVjZgHf/CTC2diTYC8PzhaA5sFISRfNVrE=",
1041 version = "v2.7.1-0.20190205005809-0d3efadf0154+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001042 )
1043 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001044 name = "com_github_docker_docker",
1045 importpath = "github.com/docker/docker",
1046 sum = "h1:+kIkr4upwOTq7D78hByaTvwFw5F8WRkoGwDgBNJt4SA=",
1047 version = "v17.12.0-ce-rc1.0.20191121165722-d1d5f6476656+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001048 )
1049 go_repository(
1050 name = "com_github_docker_spdystream",
1051 importpath = "github.com/docker/spdystream",
1052 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
1053 version = "v0.0.0-20160310174837-449fdfce4d96",
1054 )
1055 go_repository(
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001056 name = "com_github_emicklei_go_restful",
1057 importpath = "github.com/emicklei/go-restful",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001058 sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
1059 version = "v2.9.5+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001060 )
1061 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001062 name = "com_github_google_gofuzz",
1063 importpath = "github.com/google/gofuzz",
1064 sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001065 version = "v1.0.0",
1066 )
1067 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001068 name = "com_github_json_iterator_go",
1069 importpath = "github.com/json-iterator/go",
1070 sum = "h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok=",
1071 version = "v1.1.8",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001072 )
1073 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001074 name = "com_github_modern_go_concurrent",
1075 importpath = "github.com/modern-go/concurrent",
1076 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
1077 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001078 )
1079 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001080 name = "com_github_modern_go_reflect2",
1081 importpath = "github.com/modern-go/reflect2",
1082 sum = "h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=",
1083 version = "v0.0.0-20180701023420-4b7aa43c6742",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001084 )
1085 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001086 name = "com_github_opencontainers_selinux",
1087 build_tags = ["selinux"],
1088 importpath = "github.com/opencontainers/selinux",
1089 sum = "h1:B8hYj3NxHmjsC3T+tnlZ1UhInqUgnyF1zlGPmzNg2Qk=",
1090 version = "v1.3.1-0.20190929122143-5215b1806f52",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001091 )
1092 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001093 name = "com_github_seccomp_libseccomp_golang",
1094 importpath = "github.com/seccomp/libseccomp-golang",
1095 sum = "h1:NJjM5DNFOs0s3kYE1WUOr6G8V97sdt46rlXTMfXGWBo=",
1096 version = "v0.9.1",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001097 )
1098 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001099 name = "com_github_stretchr_testify",
1100 importpath = "github.com/stretchr/testify",
1101 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
1102 version = "v1.4.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001103 )
1104 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001105 name = "com_github_tchap_go_patricia",
1106 importpath = "github.com/tchap/go-patricia",
1107 sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
1108 version = "v2.2.6+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001109 )
1110 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001111 name = "org_golang_x_crypto",
1112 importpath = "golang.org/x/crypto",
1113 sum = "h1:9FCpayM9Egr1baVnV1SX0H87m+XB0B8S0hAMi99X/3U=",
1114 version = "v0.0.0-20200128174031-69ecbb4d6d5d",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001115 )
1116 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001117 name = "org_golang_x_oauth2",
1118 importpath = "golang.org/x/oauth2",
1119 sum = "h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=",
1120 version = "v0.0.0-20190604053449-0f29369cfe45",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001121 )
1122 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001123 name = "org_golang_x_time",
1124 importpath = "golang.org/x/time",
1125 sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
1126 version = "v0.0.0-20191024005414-555d28b269f0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001127 )
1128 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001129 name = "in_gopkg_inf_v0",
1130 importpath = "gopkg.in/inf.v0",
1131 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
1132 version = "v0.9.1",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001133 )
1134 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001135 name = "in_gopkg_yaml_v2",
1136 importpath = "gopkg.in/yaml.v2",
1137 sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
1138 version = "v2.2.8",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001139 )
1140 go_repository(
1141 name = "io_k8s_klog",
1142 importpath = "k8s.io/klog",
1143 sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
1144 version = "v1.0.0",
1145 )
1146 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001147 name = "io_k8s_sigs_yaml",
1148 importpath = "sigs.k8s.io/yaml",
1149 sum = "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs=",
1150 version = "v1.1.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001151 )
1152 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001153 name = "com_github_fatih_camelcase",
1154 importpath = "github.com/fatih/camelcase",
1155 sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
1156 version = "v1.0.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001157 )
1158 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001159 name = "com_github_ghodss_yaml",
1160 importpath = "github.com/ghodss/yaml",
1161 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
1162 version = "v1.0.0",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001163 )
1164 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001165 name = "com_github_gregjones_httpcache",
1166 importpath = "github.com/gregjones/httpcache",
1167 sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
1168 version = "v0.0.0-20180305231024-9cad4c3443a7",
1169 )
1170 go_repository(
1171 name = "com_github_mitchellh_go_wordwrap",
1172 importpath = "github.com/mitchellh/go-wordwrap",
1173 sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
1174 version = "v1.0.0",
1175 )
1176 go_repository(
1177 name = "com_github_peterbourgon_diskv",
1178 importpath = "github.com/peterbourgon/diskv",
1179 sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
1180 version = "v2.0.1+incompatible",
1181 )
1182 go_repository(
1183 name = "com_github_azure_go_ansiterm",
1184 importpath = "github.com/Azure/go-ansiterm",
1185 sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
1186 version = "v0.0.0-20170929234023-d6e3b3328b78",
1187 )
1188 go_repository(
1189 name = "com_github_chai2010_gettext_go",
1190 importpath = "github.com/chai2010/gettext-go",
1191 sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
1192 version = "v0.0.0-20160711120539-c6fed771bfd5",
1193 )
1194 go_repository(
1195 name = "com_github_alexflint_go_filemutex",
1196 importpath = "github.com/alexflint/go-filemutex",
1197 sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=",
1198 version = "v0.0.0-20171022225611-72bdc8eae2ae",
1199 )
1200 go_repository(
1201 name = "com_github_coreos_go_iptables",
1202 importpath = "github.com/coreos/go-iptables",
1203 sum = "h1:DpHb9vJrZQEFMcVLFKAAGMUVX0XoRC0ptCthinRYm38=",
1204 version = "v0.4.5",
1205 )
1206 go_repository(
1207 name = "com_github_safchain_ethtool",
1208 importpath = "github.com/safchain/ethtool",
1209 sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
1210 version = "v0.0.0-20190326074333-42ed695e3de8",
1211 )
1212 go_repository(
1213 name = "com_github_j_keck_arping",
1214 importpath = "github.com/j-keck/arping",
1215 sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
1216 version = "v0.0.0-20160618110441-2cf9dc699c56",
1217 )
1218 go_repository(
1219 name = "com_github_grpc_grpc",
1220 importpath = "github.com/grpc/grpc",
1221 sum = "h1:0/fjvIF5JHJdr34/JPEk1DJFFonjW37pDLvuAy9YieQ=",
1222 version = "v1.26.0",
1223 )
1224 go_repository(
1225 name = "com_github_google_subcommands",
1226 importpath = "github.com/google/subcommands",
1227 sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=",
1228 version = "v1.0.2-0.20190508160503-636abe8753b8",
1229 )
1230 go_repository(
1231 name = "com_github_cenkalti_backoff",
1232 importpath = "github.com/cenkalti/backoff",
1233 sum = "h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=",
1234 version = "v1.1.1-0.20190506075156-2146c9339422",
1235 )
1236 go_repository(
1237 name = "com_github_kr_pretty",
1238 importpath = "github.com/kr/pretty",
1239 sum = "h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=",
1240 version = "v0.2.0",
1241 )
1242 go_repository(
1243 name = "com_github_kr_pty",
1244 importpath = "github.com/kr/pty",
1245 sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
1246 version = "v1.1.1",
1247 )
1248 go_repository(
1249 name = "com_github_gofrs_flock",
1250 importpath = "github.com/gofrs/flock",
1251 sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
1252 version = "v0.6.1-0.20180915234121-886344bea079",
1253 )
1254 go_repository(
1255 name = "com_github_opencontainers_runc",
1256 importpath = "github.com/opencontainers/runc",
1257 sum = "h1:AbmCEuSZXVflng0/cboQkpdEOeBsPMjz6tmq4Pv8MZw=",
1258 version = "v1.0.0-rc10",
1259 )
1260 go_repository(
1261 name = "com_github_volatiletech_sqlboiler",
1262 importpath = "github.com/volatiletech/sqlboiler",
1263 sum = "h1:EI9MwhgyXiqKbvZaomzL8scDs/k+21QAyo9z7GXBZQU=",
1264 version = "v3.6.1+incompatible",
1265 )
1266 go_repository(
1267 name = "com_github_friendsofgo_errors",
1268 importpath = "github.com/friendsofgo/errors",
1269 sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
1270 version = "v0.9.2",
1271 )
1272 go_repository(
1273 name = "com_github_go_sql_driver_mysql",
1274 importpath = "github.com/go-sql-driver/mysql",
1275 sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
1276 version = "v1.5.0",
1277 )
1278 go_repository(
1279 name = "com_github_spf13_cast",
1280 importpath = "github.com/spf13/cast",
1281 sum = "h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=",
1282 version = "v1.3.1",
1283 )
1284 go_repository(
1285 name = "com_github_volatiletech_null",
1286 importpath = "github.com/volatiletech/null",
1287 sum = "h1:7wP8m5d/gZ6kW/9GnrLtMCRre2dlEnaQ9Km5OXlK4zg=",
1288 version = "v8.0.0+incompatible",
1289 )
1290 go_repository(
1291 name = "com_github_volatiletech_randomize",
1292 importpath = "github.com/volatiletech/randomize",
1293 sum = "h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk=",
1294 version = "v0.0.1",
1295 )
1296 go_repository(
1297 name = "com_github_volatiletech_strmangle",
1298 importpath = "github.com/volatiletech/strmangle",
1299 sum = "h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk=",
1300 version = "v0.0.1",
1301 )
1302 go_repository(
1303 name = "com_github_lib_pq",
1304 importpath = "github.com/lib/pq",
1305 sum = "h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=",
1306 version = "v1.2.0",
1307 )
1308 go_repository(
1309 name = "com_github_denisenkom_go_mssqldb",
1310 importpath = "github.com/denisenkom/go-mssqldb",
1311 sum = "h1:LzwWXEScfcTu7vUZNlDDWDARoSGEtvlDKK2BYHowNeE=",
1312 version = "v0.0.0-20200206145737-bbfc9a55622e",
1313 )
1314 go_repository(
1315 name = "com_github_ericlagergren_decimal",
1316 importpath = "github.com/ericlagergren/decimal",
1317 sum = "h1:HQGCJNlqt1dUs/BhtEKmqWd6LWS+DWYVxi9+Jo4r0jE=",
1318 version = "v0.0.0-20181231230500-73749d4874d5",
1319 )
1320 go_repository(
1321 name = "com_github_rubenv_sql_migrate",
1322 importpath = "github.com/rubenv/sql-migrate",
1323 sum = "h1:lwDYefgiwhjuAuVnMVUYknoF+Yg9CBUykYGvYoPCNnQ=",
1324 version = "v0.0.0-20191025130928-9355dd04f4b3",
1325 )
1326 go_repository(
1327 name = "com_github_glerchundi_sqlboiler_crdb",
1328 importpath = "github.com/glerchundi/sqlboiler-crdb",
1329 sum = "h1:qC5Gu83hkXlQVECFs1u/9EdwYjo58RYaxWnJZGa0YN0=",
1330 version = "v0.0.0-20191112134934-62014c8c8df1",
1331 )
1332 go_repository(
1333 name = "com_github_mitchellh_cli",
1334 importpath = "github.com/mitchellh/cli",
1335 sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
1336 version = "v1.0.0",
1337 )
1338 go_repository(
1339 name = "com_github_olekukonko_tablewriter",
1340 importpath = "github.com/olekukonko/tablewriter",
1341 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
1342 version = "v0.0.0-20170122224234-a0225b3f23b5",
1343 )
1344 go_repository(
1345 name = "com_github_mattn_go_sqlite3",
1346 importpath = "github.com/mattn/go-sqlite3",
1347 sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
1348 version = "v1.12.0",
1349 )
1350 go_repository(
1351 name = "in_gopkg_gorp_v1",
1352 importpath = "gopkg.in/gorp.v1",
1353 sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
1354 version = "v1.7.2",
1355 )
1356 go_repository(
1357 name = "com_github_volatiletech_inflect",
1358 importpath = "github.com/volatiletech/inflect",
1359 sum = "h1:gI4/tqP6lCY5k6Sg+4k9qSoBXmPwG+xXgMpK7jivD4M=",
1360 version = "v0.0.0-20170731032912-e7201282ae8d",
1361 )
1362 go_repository(
1363 name = "com_github_mattn_go_runewidth",
1364 importpath = "github.com/mattn/go-runewidth",
1365 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
1366 version = "v0.0.2",
1367 )
1368 go_repository(
1369 name = "com_github_golang_sql_civil",
1370 importpath = "github.com/golang-sql/civil",
1371 sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
1372 version = "v0.0.0-20190719163853-cb61b32ac6fe",
1373 )
1374 go_repository(
1375 name = "com_github_posener_complete",
1376 importpath = "github.com/posener/complete",
1377 sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
1378 version = "v1.1.1",
1379 )
1380 go_repository(
1381 name = "com_github_mattn_go_isatty",
1382 importpath = "github.com/mattn/go-isatty",
1383 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
1384 version = "v0.0.4",
1385 )
1386 go_repository(
1387 name = "com_github_armon_go_radix",
1388 importpath = "github.com/armon/go-radix",
1389 sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
1390 version = "v0.0.0-20180808171621-7fddfc383310",
1391 )
1392 go_repository(
1393 name = "com_github_bgentry_speakeasy",
1394 importpath = "github.com/bgentry/speakeasy",
1395 sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
1396 version = "v0.1.0",
1397 )
1398 go_repository(
1399 name = "com_github_fatih_color",
1400 importpath = "github.com/fatih/color",
1401 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
1402 version = "v1.7.0",
1403 )
1404 go_repository(
1405 name = "com_github_spf13_viper",
1406 importpath = "github.com/spf13/viper",
1407 sum = "h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M=",
1408 version = "v1.3.2",
1409 )
1410 go_repository(
1411 name = "com_github_hashicorp_hcl",
1412 importpath = "github.com/hashicorp/hcl",
1413 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
1414 version = "v1.0.0",
1415 )
1416 go_repository(
1417 name = "com_github_spf13_jwalterweatherman",
1418 importpath = "github.com/spf13/jwalterweatherman",
1419 sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
1420 version = "v1.0.0",
1421 )
1422 go_repository(
1423 name = "com_github_magiconair_properties",
1424 importpath = "github.com/magiconair/properties",
1425 sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
1426 version = "v1.8.0",
1427 )
1428 go_repository(
1429 name = "com_github_mattn_go_colorable",
1430 importpath = "github.com/mattn/go-colorable",
1431 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
1432 version = "v0.0.9",
1433 )
1434 go_repository(
1435 name = "com_github_google_go_tpm",
1436 importpath = "github.com/google/go-tpm",
1437 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
1438 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
1439 )
1440 go_repository(
1441 name = "com_github_google_go_tpm_tools",
1442 importpath = "github.com/google/go-tpm-tools",
1443 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
1444 version = "v0.0.0-20190731025042-f8c04ff88181",
1445 )
1446 go_repository(
1447 name = "com_github_insomniacslk_dhcp",
1448 importpath = "github.com/insomniacslk/dhcp",
1449 sum = "h1:P1pxzF2xvdnSY12ODSSwjxA4tyEjDEJNn829OXKnqks=",
1450 version = "v0.0.0-20200402185128-5dd7202f1971",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001451 )
1452 go_repository(
1453 name = "com_github_cenkalti_backoff_v4",
1454 importpath = "github.com/cenkalti/backoff/v4",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001455 sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=",
1456 version = "v4.0.2",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001457 )
1458 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001459 name = "com_github_rekby_gpt",
1460 importpath = "github.com/rekby/gpt",
1461 sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
1462 version = "v0.0.0-20200219180433-a930afbc6edc",
1463 )
1464 go_repository(
1465 name = "com_github_yalue_native_endian",
1466 importpath = "github.com/yalue/native_endian",
1467 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
1468 version = "v0.0.0-20180607135909-51013b03be4f",
1469 )
1470 go_repository(
1471 name = "com_github_mdlayher_ethernet",
1472 importpath = "github.com/mdlayher/ethernet",
1473 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
1474 version = "v0.0.0-20190606142754-0394541c37b7",
1475 )
1476 go_repository(
1477 name = "com_github_mdlayher_raw",
1478 importpath = "github.com/mdlayher/raw",
1479 sum = "h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=",
1480 version = "v0.0.0-20191009151244-50f2db8cc065",
1481 )
1482 go_repository(
1483 name = "com_github_u_root_u_root",
1484 importpath = "github.com/u-root/u-root",
1485 sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
1486 version = "v6.0.0+incompatible",
1487 )
1488 go_repository(
1489 name = "com_github_diskfs_go_diskfs",
1490 importpath = "github.com/diskfs/go-diskfs",
1491 sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
1492 version = "v1.0.0",
1493 )
1494 go_repository(
1495 name = "in_gopkg_djherbis_times_v1",
1496 importpath = "gopkg.in/djherbis/times.v1",
1497 sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
1498 version = "v1.2.0",
1499 )
1500 go_repository(
1501 name = "com_github_kevinburke_go_bindata",
1502 importpath = "github.com/kevinburke/go-bindata",
1503 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
1504 version = "v3.16.0+incompatible",
1505 )
1506 go_repository(
1507 name = "com_github_gofrs_uuid",
1508 importpath = "github.com/gofrs/uuid",
1509 sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
1510 version = "v3.2.0+incompatible",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001511 )
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001512 go_repository(
1513 name = "com_github_lyft_protoc_gen_star",
1514 importpath = "github.com/lyft/protoc-gen-star",
1515 sum = "h1:HUkD4H4dYFIgu3Bns/3N6J5GmKHCEGnhYBwNu3fvXgA=",
1516 version = "v0.4.14",
1517 )
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001518 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001519 name = "com_github_moby_term",
1520 importpath = "github.com/moby/term",
1521 sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
1522 version = "v0.0.0-20200312100748-672ec06f55cd",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001523 )
1524 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001525 name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
1526 importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
1527 sum = "h1:uuHDyjllyzRyCIvvn0OBjiRB0SgBZGqHNYAmjR7fO50=",
1528 version = "v0.0.7",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001529 )
1530 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001531 name = "io_k8s_sample_apiserver",
1532 importpath = "k8s.io/sample-apiserver",
1533 sum = "h1:Nw+rJYx+0cb8Kxtxhe87iT73S6CF67396cIf7tU3JZ8=",
1534 version = "v0.19.0-alpha.2",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001535 )