blob: 018e6f6b920f0cd95612db59148380a03bd9baed [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 Bazanskif369cfa2020-05-22 18:36:42 +020021 name = "com_google_cloud_go",
22 importpath = "cloud.google.com/go",
23 version = "v0.38.0",
24 sum = "h1:ROfEUZz+Gh5pa62DJWXSaonyu3StP6EA6lPEXPI6mCo=",
25 )
26 go_repository(
27 name = "com_github_azure_go_ansiterm",
28 importpath = "github.com/Azure/go-ansiterm",
29 version = "v0.0.0-20170929234023-d6e3b3328b78",
30 sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
31 )
32 go_repository(
33 name = "com_github_burntsushi_toml",
34 importpath = "github.com/BurntSushi/toml",
35 version = "v0.3.1",
36 sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
37 )
38 go_repository(
39 name = "com_github_makenowjust_heredoc",
40 importpath = "github.com/MakeNowJust/heredoc",
41 version = "v0.0.0-20170808103936-bb23615498cd",
42 sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=",
43 )
44 go_repository(
45 name = "com_github_microsoft_go_winio",
46 importpath = "github.com/Microsoft/go-winio",
47 version = "v0.4.14",
48 sum = "h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=",
49 )
50 go_repository(
51 name = "com_github_microsoft_hcsshim",
52 importpath = "github.com/Microsoft/hcsshim",
53 version = "v0.8.8-0.20200109000640-0b571ac85d7c",
54 sum = "h1:GDxLeqRF1hCkdTFNncrs8fZNcB6Fg79G0Q3m38EyySM=",
Serge Bazanskibb7db922020-04-30 12:43:10 +020055 build_file_proto_mode = "disable",
Serge Bazanskif369cfa2020-05-22 18:36:42 +020056 )
57 go_repository(
58 name = "com_github_nytimes_gziphandler",
59 importpath = "github.com/NYTimes/gziphandler",
60 version = "v0.0.0-20170623195520-56545f4a5d46",
61 sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
62 )
63 go_repository(
64 name = "com_github_puerkitobio_purell",
65 importpath = "github.com/PuerkitoBio/purell",
66 version = "v1.1.1",
67 sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
68 )
69 go_repository(
70 name = "com_github_puerkitobio_urlesc",
71 importpath = "github.com/PuerkitoBio/urlesc",
72 version = "v0.0.0-20170810143723-de5bf2ad4578",
73 sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
74 )
75 go_repository(
76 name = "com_github_alexflint_go_filemutex",
77 importpath = "github.com/alexflint/go-filemutex",
78 version = "v0.0.0-20171022225611-72bdc8eae2ae",
79 sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=",
80 )
81 go_repository(
82 name = "com_github_armon_circbuf",
83 importpath = "github.com/armon/circbuf",
84 version = "v0.0.0-20150827004946-bbbad097214e",
85 sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
86 )
87 go_repository(
88 name = "com_github_armon_go_radix",
89 importpath = "github.com/armon/go-radix",
90 version = "v0.0.0-20180808171621-7fddfc383310",
91 sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
92 )
93 go_repository(
94 name = "com_github_asaskevich_govalidator",
95 importpath = "github.com/asaskevich/govalidator",
96 version = "v0.0.0-20190424111038-f61b66f89f4a",
97 sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
98 )
99 go_repository(
100 name = "com_github_beorn7_perks",
101 importpath = "github.com/beorn7/perks",
102 version = "v1.0.1",
103 sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
104 )
105 go_repository(
106 name = "com_github_bgentry_speakeasy",
107 importpath = "github.com/bgentry/speakeasy",
108 version = "v0.1.0",
109 sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
110 )
111 go_repository(
112 name = "com_github_blang_semver",
113 importpath = "github.com/blang/semver",
114 version = "v3.5.0+incompatible",
115 sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
116 )
117 go_repository(
118 name = "com_github_cenkalti_backoff",
119 importpath = "github.com/cenkalti/backoff",
120 version = "v0.0.0-20190506075156-2146c9339422",
121 sum = "h1:+FKjzBIdfBHYDvxCv+djmDJdes/AoDtg8gpcxowBlF8=",
122 )
123 go_repository(
124 name = "com_github_cenkalti_backoff_v4",
125 importpath = "github.com/cenkalti/backoff/v4",
126 version = "v4.0.2",
127 sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=",
128 )
129 go_repository(
130 name = "com_github_cespare_xxhash_v2",
131 importpath = "github.com/cespare/xxhash/v2",
132 version = "v2.1.1",
133 sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
134 )
135 go_repository(
136 name = "com_github_chai2010_gettext_go",
137 importpath = "github.com/chai2010/gettext-go",
138 version = "v0.0.0-20160711120539-c6fed771bfd5",
139 sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
140 )
141 go_repository(
142 name = "com_github_checkpoint_restore_go_criu",
143 importpath = "github.com/checkpoint-restore/go-criu",
144 version = "v0.0.0-20190109184317-bdb7599cd87b",
145 sum = "h1:T4nWG1TXIxeor8mAu5bFguPJgSIGhZqv/f0z55KCrJM=",
146 )
147 go_repository(
148 name = "com_github_cilium_ebpf",
149 importpath = "github.com/cilium/ebpf",
150 version = "v0.0.0-20191203103619-60c3aa43f488",
151 sum = "h1:kNrHgLQr3ftwQr9JKL3lmyNVlc/7Mjd8lwcbccE5BsI=",
152 )
153 go_repository(
154 name = "com_github_container_storage_interface_spec",
155 importpath = "github.com/container-storage-interface/spec",
156 version = "v1.2.0",
157 sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=",
158 )
159 go_repository(
160 name = "com_github_containerd_btrfs",
161 importpath = "github.com/containerd/btrfs",
162 version = "v0.0.0-20200117014249-153935315f4a",
163 sum = "h1:u5X1yvVEsXLcuTWYsFSpTgQKRvo2VTB5gOHcERpF9ZI=",
164 )
165 go_repository(
166 name = "com_github_containerd_cgroups",
167 importpath = "github.com/containerd/cgroups",
168 version = "v0.0.0-20200113070643-7347743e5d1e",
169 sum = "h1:sL8rdngVdYA2SLRwj6sSZ1cLDpBkFBd7IZVp0M2Lboc=",
170 build_file_proto_mode = "disable",
171 )
172 go_repository(
173 name = "com_github_containerd_console",
174 importpath = "github.com/containerd/console",
175 version = "v1.0.0",
176 sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=",
177 )
178 go_repository(
179 name = "com_github_containerd_containerd",
180 importpath = "github.com/containerd/containerd",
181 version = "v1.3.1-0.20200218165203-8e685f78cf66",
182 sum = "h1:IeFaEbvx6mQe9K1cXG2K7zynPwge3YUrQlLTyiNiveU=",
183 build_file_proto_mode = "disable",
184 build_tags = [
185 "no_zfs",
186 "no_aufs",
187 "no_devicemapper",
188 "no_btrfs",
189 ],
190 )
191 go_repository(
192 name = "com_github_containerd_continuity",
193 importpath = "github.com/containerd/continuity",
194 version = "v0.0.0-20200107062522-0ec596719c75",
195 sum = "h1:hBSbT5nWoYGwpmUa8TCsSVFVSdTyFoNlz85rNkH4OGk=",
196 )
197 go_repository(
198 name = "com_github_containerd_cri",
199 importpath = "github.com/containerd/cri",
200 version = "v1.11.1-0.20200130003317-c0294ebfe0b4",
201 sum = "h1:tkxzigQGIymwkagfa+zsr1GzlYWJCVh6dUVhEc3fQeo=",
202 build_file_proto_mode = "disable",
203 )
204 go_repository(
205 name = "com_github_containerd_fifo",
206 importpath = "github.com/containerd/fifo",
207 version = "v0.0.0-20190816180239-bda0ff6ed73c",
208 sum = "h1:KFbqHhDeaHM7IfFtXHfUHMDaUStpM2YwBR+iJCIOsKk=",
209 )
210 go_repository(
211 name = "com_github_containerd_go_cni",
212 importpath = "github.com/containerd/go-cni",
213 version = "v0.0.0-20190822145629-0d360c50b10b",
214 sum = "h1:76H5xRcgFYQvHpdlKBiw3CJOeaatmhn6ZETIsNWZJVs=",
215 )
216 go_repository(
217 name = "com_github_containerd_go_runc",
218 importpath = "github.com/containerd/go-runc",
219 version = "v0.0.0-20191206163734-a5c2862aed5e",
220 sum = "h1:9aJwmidmB33rxuib1NxR5NT4nvDMA9/S2sDR/D3tE5U=",
221 )
222 go_repository(
223 name = "com_github_containerd_ttrpc",
224 importpath = "github.com/containerd/ttrpc",
225 version = "v1.0.0",
226 sum = "h1:NY8Zk2i7TpkLxrkOASo+KTFq9iNCEmMH2/ZG9OuOw6k=",
227 )
228 go_repository(
229 name = "com_github_containerd_typeurl",
230 importpath = "github.com/containerd/typeurl",
231 version = "v1.0.0",
232 sum = "h1:7LMH7LfEmpWeCkGcIputvd4P0Rnd0LrIv1Jk2s5oobs=",
233 )
234 go_repository(
235 name = "com_github_containernetworking_cni",
236 importpath = "github.com/containernetworking/cni",
237 version = "v0.7.1",
238 sum = "h1:fE3r16wpSEyaqY4Z4oFrLMmIGfBYIKpPrHK31EJ9FzE=",
239 )
240 go_repository(
241 name = "com_github_containernetworking_plugins",
242 importpath = "github.com/containernetworking/plugins",
243 version = "v0.8.2",
244 sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200245 patches = [
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200246 "//third_party/go/patches:cni-plugins-build.patch",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200247 ],
248 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100249 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200250 go_repository(
251 name = "com_github_coreos_go_iptables",
252 importpath = "github.com/coreos/go-iptables",
253 version = "v0.4.2",
254 sum = "h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=",
255 )
256 go_repository(
257 name = "com_github_coreos_go_oidc",
258 importpath = "github.com/coreos/go-oidc",
259 version = "v2.1.0+incompatible",
260 sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
261 )
262 go_repository(
263 name = "com_github_coreos_go_semver",
264 importpath = "github.com/coreos/go-semver",
265 version = "v0.3.0",
266 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
267 )
268 go_repository(
269 name = "com_github_coreos_go_systemd",
270 importpath = "github.com/coreos/go-systemd",
271 version = "v0.0.0-20190321100706-95778dfbb74e",
272 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
273 )
274 go_repository(
275 name = "com_github_coreos_go_systemd_v22",
276 importpath = "github.com/coreos/go-systemd/v22",
277 version = "v22.0.0",
278 sum = "h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28=",
279 )
280 go_repository(
281 name = "com_github_coreos_pkg",
282 importpath = "github.com/coreos/pkg",
283 version = "v0.0.0-20180108230652-97fdf19511ea",
284 sum = "h1:n2Ltr3SrfQlf/9nOna1DoGKxLx3qTSI8Ttl6Xrqp6mw=",
285 )
286 go_repository(
287 name = "com_github_cpuguy83_go_md2man",
288 importpath = "github.com/cpuguy83/go-md2man",
289 version = "v1.0.10",
290 sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
291 )
292 go_repository(
293 name = "com_github_cyphar_filepath_securejoin",
294 importpath = "github.com/cyphar/filepath-securejoin",
295 version = "v0.2.2",
296 sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
297 )
298 go_repository(
299 name = "com_github_davecgh_go_spew",
300 importpath = "github.com/davecgh/go-spew",
301 version = "v1.1.1",
302 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
303 )
304 go_repository(
305 name = "com_github_daviddengcn_go_colortext",
306 importpath = "github.com/daviddengcn/go-colortext",
307 version = "v0.0.0-20160507010035-511bcaf42ccd",
308 sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
309 )
310 go_repository(
311 name = "com_github_denisenkom_go_mssqldb",
312 importpath = "github.com/denisenkom/go-mssqldb",
313 version = "v0.0.0-20200206145737-bbfc9a55622e",
314 sum = "h1:LzwWXEScfcTu7vUZNlDDWDARoSGEtvlDKK2BYHowNeE=",
315 )
316 go_repository(
317 name = "com_github_dgrijalva_jwt_go",
318 importpath = "github.com/dgrijalva/jwt-go",
319 version = "v3.2.0+incompatible",
320 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
321 )
322 go_repository(
323 name = "com_github_diskfs_go_diskfs",
324 importpath = "github.com/diskfs/go-diskfs",
325 version = "v1.0.0",
326 sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
327 )
328 go_repository(
329 name = "com_github_docker_distribution",
330 importpath = "github.com/docker/distribution",
331 version = "v2.7.1-0.20190205005809-0d3efadf0154+incompatible",
332 sum = "h1:dvc1KSkIYTVjZgHf/CTC2diTYC8PzhaA5sFISRfNVrE=",
333 )
334 go_repository(
335 name = "com_github_docker_docker",
336 importpath = "github.com/docker/docker",
337 version = "v17.12.0-ce-rc1.0.20191121165722-d1d5f6476656+incompatible",
338 sum = "h1:+kIkr4upwOTq7D78hByaTvwFw5F8WRkoGwDgBNJt4SA=",
339 )
340 go_repository(
341 name = "com_github_docker_go_connections",
342 importpath = "github.com/docker/go-connections",
343 version = "v0.3.0",
344 sum = "h1:3lOnM9cSzgGwx8VfK/NGOW5fLQ0GjIlCkaktF+n1M6o=",
345 )
346 go_repository(
347 name = "com_github_docker_go_events",
348 importpath = "github.com/docker/go-events",
349 version = "v0.0.0-20170721190031-9461782956ad",
350 sum = "h1:VXIse57M5C6ezDuCPyq6QmMvEJ2xclYKZ35SfkXdm3E=",
351 )
352 go_repository(
353 name = "com_github_docker_go_metrics",
354 importpath = "github.com/docker/go-metrics",
355 version = "v0.0.1",
356 sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
357 )
358 go_repository(
359 name = "com_github_docker_go_units",
360 importpath = "github.com/docker/go-units",
361 version = "v0.4.0",
362 sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
363 )
364 go_repository(
365 name = "com_github_docker_spdystream",
366 importpath = "github.com/docker/spdystream",
367 version = "v0.0.0-20160310174837-449fdfce4d96",
368 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
369 )
370 go_repository(
371 name = "com_github_dustin_go_humanize",
372 importpath = "github.com/dustin/go-humanize",
373 version = "v1.0.0",
374 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
375 )
376 go_repository(
377 name = "com_github_emicklei_go_restful",
378 importpath = "github.com/emicklei/go-restful",
379 version = "v2.9.5+incompatible",
380 sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
381 )
382 go_repository(
383 name = "com_github_ericlagergren_decimal",
384 importpath = "github.com/ericlagergren/decimal",
385 version = "v0.0.0-20181231230500-73749d4874d5",
386 sum = "h1:HQGCJNlqt1dUs/BhtEKmqWd6LWS+DWYVxi9+Jo4r0jE=",
387 )
388 go_repository(
389 name = "com_github_euank_go_kmsg_parser",
390 importpath = "github.com/euank/go-kmsg-parser",
391 version = "v2.0.0+incompatible",
392 sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
393 )
394 go_repository(
395 name = "com_github_evanphx_json_patch",
396 importpath = "github.com/evanphx/json-patch",
397 version = "v4.2.0+incompatible",
398 sum = "h1:fUDGZCv/7iAN7u0puUVhvKCcsR6vRfwrJatElLBEf0I=",
399 )
400 go_repository(
401 name = "com_github_exponent_io_jsonpath",
402 importpath = "github.com/exponent-io/jsonpath",
403 version = "v0.0.0-20151013193312-d6023ce2651d",
404 sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
405 )
406 go_repository(
407 name = "com_github_fatih_camelcase",
408 importpath = "github.com/fatih/camelcase",
409 version = "v1.0.0",
410 sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
411 )
412 go_repository(
413 name = "com_github_fatih_color",
414 importpath = "github.com/fatih/color",
415 version = "v1.7.0",
416 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
417 )
418 go_repository(
419 name = "com_github_friendsofgo_errors",
420 importpath = "github.com/friendsofgo/errors",
421 version = "v0.9.2",
422 sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
423 )
424 go_repository(
425 name = "com_github_ghodss_yaml",
426 importpath = "github.com/ghodss/yaml",
427 version = "v1.0.0",
428 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
429 )
430 go_repository(
431 name = "com_github_glerchundi_sqlboiler_crdb_v4",
432 importpath = "github.com/glerchundi/sqlboiler-crdb/v4",
433 version = "v4.0.0-20200507103349-d540ee52783e",
434 sum = "h1:p1FS4Qf4pgi/ntt4XI1n1rM7EAmOQLRmvPYNXtNlxWA=",
435 )
436 go_repository(
437 name = "com_github_go_openapi_analysis",
438 importpath = "github.com/go-openapi/analysis",
439 version = "v0.19.5",
440 sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
441 )
442 go_repository(
443 name = "com_github_go_openapi_errors",
444 importpath = "github.com/go-openapi/errors",
445 version = "v0.19.2",
446 sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
447 )
448 go_repository(
449 name = "com_github_go_openapi_jsonpointer",
450 importpath = "github.com/go-openapi/jsonpointer",
451 version = "v0.19.3",
452 sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
453 )
454 go_repository(
455 name = "com_github_go_openapi_jsonreference",
456 importpath = "github.com/go-openapi/jsonreference",
457 version = "v0.19.3",
458 sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
459 )
460 go_repository(
461 name = "com_github_go_openapi_loads",
462 importpath = "github.com/go-openapi/loads",
463 version = "v0.19.4",
464 sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
465 )
466 go_repository(
467 name = "com_github_go_openapi_runtime",
468 importpath = "github.com/go-openapi/runtime",
469 version = "v0.19.4",
470 sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
471 )
472 go_repository(
473 name = "com_github_go_openapi_spec",
474 importpath = "github.com/go-openapi/spec",
475 version = "v0.19.3",
476 sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
477 )
478 go_repository(
479 name = "com_github_go_openapi_strfmt",
480 importpath = "github.com/go-openapi/strfmt",
481 version = "v0.19.3",
482 sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
483 )
484 go_repository(
485 name = "com_github_go_openapi_swag",
486 importpath = "github.com/go-openapi/swag",
487 version = "v0.19.5",
488 sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
489 )
490 go_repository(
491 name = "com_github_go_openapi_validate",
492 importpath = "github.com/go-openapi/validate",
493 version = "v0.19.5",
494 sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
495 )
496 go_repository(
497 name = "com_github_go_sql_driver_mysql",
498 importpath = "github.com/go-sql-driver/mysql",
499 version = "v1.5.0",
500 sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
501 )
502 go_repository(
503 name = "com_github_go_stack_stack",
504 importpath = "github.com/go-stack/stack",
505 version = "v1.8.0",
506 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
507 )
508 go_repository(
509 name = "com_github_godbus_dbus_v5",
510 importpath = "github.com/godbus/dbus/v5",
511 version = "v5.0.3",
512 sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
513 )
514 go_repository(
515 name = "com_github_gofrs_flock",
516 importpath = "github.com/gofrs/flock",
517 version = "v0.6.1-0.20180915234121-886344bea079",
518 sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
519 )
520 go_repository(
521 name = "com_github_gofrs_uuid",
522 importpath = "github.com/gofrs/uuid",
523 version = "v3.2.0+incompatible",
524 sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
525 )
526 go_repository(
527 name = "com_github_gogo_googleapis",
528 importpath = "github.com/gogo/googleapis",
529 version = "v1.2.0",
530 sum = "h1:Z0v3OJDotX9ZBpdz2V+AI7F4fITSZhVE5mg6GQppwMM=",
531 build_file_proto_mode = "disable",
532 )
533 go_repository(
534 name = "com_github_gogo_protobuf",
535 importpath = "github.com/gogo/protobuf",
536 version = "v1.2.1",
537 sum = "h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE=",
538 )
539 go_repository(
540 name = "com_github_golang_sql_civil",
541 importpath = "github.com/golang-sql/civil",
542 version = "v0.0.0-20190719163853-cb61b32ac6fe",
543 sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
544 )
545 go_repository(
546 name = "com_github_golang_groupcache",
547 importpath = "github.com/golang/groupcache",
548 version = "v0.0.0-20160516000752-02826c3e7903",
549 sum = "h1:LbsanbbD6LieFkXbj9YNNBupiGHJgFeLpO0j0Fza1h8=",
550 )
551 go_repository(
552 name = "com_github_google_btree",
553 importpath = "github.com/google/btree",
554 version = "v1.0.0",
555 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
556 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100557 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200558 name = "com_github_google_cadvisor",
559 importpath = "github.com/google/cadvisor",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200560 version = "v0.36.1-0.20200323171535-8af10c683a96",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200561 sum = "h1:au7bcM+rjGXLBSfqjofcSONBre8tlIy94jEbp40BCOQ=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200562 patches = [
563 "//third_party/go/patches:cadvisor.patch",
564 "//third_party/go/patches:cadvisor-build.patch",
565 ],
566 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100567 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100568 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200569 name = "com_github_google_go_cmp",
570 importpath = "github.com/google/go-cmp",
571 version = "v0.4.0",
572 sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200573 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200574 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200575 name = "com_github_google_go_tpm",
576 importpath = "github.com/google/go-tpm",
577 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
578 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200579 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200580 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200581 name = "com_github_google_go_tpm_tools",
582 importpath = "github.com/google/go-tpm-tools",
583 version = "v0.0.0-20190731025042-f8c04ff88181",
584 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100585 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200586 go_repository(
587 name = "com_github_google_gofuzz",
588 importpath = "github.com/google/gofuzz",
589 version = "v1.0.0",
590 sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
591 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100592 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200593 name = "com_github_google_gvisor",
594 importpath = "github.com/google/gvisor",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200595 version = "v0.0.0-20200511005220-c52195d25825",
596 sum = "h1:Ryt0ml851mYbHu2ibbtjOCyJCDYdqdhEv5INoPR6Ovs=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200597 patches = [
598 "//third_party/go/patches:gvisor.patch",
599 ],
600 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100601 )
602 go_repository(
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200603 name = "com_github_google_gvisor_containerd_shim",
604 importpath = "github.com/google/gvisor-containerd-shim",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200605 version = "v0.0.4",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200606 sum = "h1:RdBNQHpoQ3ekzfXYIV4+nQJ3a2xLnIHuZJkM40OEtyA=",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200607 patches = [
608 "//third_party/go/patches:gvisor-containerd-shim.patch",
609 "//third_party/go/patches:gvisor-containerd-shim-build.patch",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200610 "//third_party/go/patches:gvisor-containerd-shim-nogo.patch",
611 "//third_party/go/patches:gvisor-shim-root.patch",
612 ],
613 patch_args = ["-p1"],
614 )
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200615 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200616 name = "com_github_google_subcommands",
617 importpath = "github.com/google/subcommands",
618 version = "v0.0.0-20190508160503-636abe8753b8",
619 sum = "h1:GZGUPQiZfYrd9uOqyqwbQcHPkz/EZJVkZB1MkaO9UBI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200620 )
621 go_repository(
622 name = "com_github_google_uuid",
623 importpath = "github.com/google/uuid",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200624 version = "v1.1.1",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200625 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100626 )
627 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200628 name = "com_github_googleapis_gnostic",
629 importpath = "github.com/googleapis/gnostic",
630 version = "v0.4.1",
631 sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100632 )
633 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200634 name = "com_github_gorilla_websocket",
635 importpath = "github.com/gorilla/websocket",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200636 version = "v1.4.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200637 sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100638 )
639 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200640 name = "com_github_gregjones_httpcache",
641 importpath = "github.com/gregjones/httpcache",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200642 version = "v0.0.0-20180305231024-9cad4c3443a7",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200643 sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200644 )
645 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200646 name = "com_github_grpc_ecosystem_go_grpc_middleware",
647 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
648 version = "v1.0.1-0.20190118093823-f849b5445de4",
649 sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200650 )
651 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200652 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
653 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
654 version = "v1.2.0",
655 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200656 )
657 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200658 name = "com_github_grpc_ecosystem_grpc_gateway",
659 importpath = "github.com/grpc-ecosystem/grpc-gateway",
660 version = "v1.9.5",
661 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200662 )
663 go_repository(
664 name = "com_github_grpc_grpc",
665 importpath = "github.com/grpc/grpc",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200666 version = "v1.26.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200667 sum = "h1:0/fjvIF5JHJdr34/JPEk1DJFFonjW37pDLvuAy9YieQ=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200668 )
669 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200670 name = "com_github_hashicorp_errwrap",
671 importpath = "github.com/hashicorp/errwrap",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200672 version = "v1.0.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200673 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200674 )
675 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200676 name = "com_github_hashicorp_go_multierror",
677 importpath = "github.com/hashicorp/go-multierror",
678 version = "v1.0.0",
679 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200680 )
681 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200682 name = "com_github_hashicorp_golang_lru",
683 importpath = "github.com/hashicorp/golang-lru",
684 version = "v0.5.3",
685 sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200686 )
687 go_repository(
688 name = "com_github_hashicorp_hcl",
689 importpath = "github.com/hashicorp/hcl",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200690 version = "v1.0.0",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200691 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200692 )
693 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200694 name = "com_github_imdario_mergo",
695 importpath = "github.com/imdario/mergo",
696 version = "v0.3.7",
697 sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200698 )
699 go_repository(
700 name = "com_github_insomniacslk_dhcp",
701 importpath = "github.com/insomniacslk/dhcp",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200702 version = "v0.0.0-20200402185128-5dd7202f1971",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200703 sum = "h1:P1pxzF2xvdnSY12ODSSwjxA4tyEjDEJNn829OXKnqks=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100704 )
705 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200706 name = "com_github_j_keck_arping",
707 importpath = "github.com/j-keck/arping",
708 version = "v0.0.0-20160618110441-2cf9dc699c56",
709 sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100710 )
711 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200712 name = "com_github_jonboulle_clockwork",
713 importpath = "github.com/jonboulle/clockwork",
714 version = "v0.1.0",
715 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200716 )
717 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200718 name = "com_github_json_iterator_go",
719 importpath = "github.com/json-iterator/go",
720 version = "v1.1.8",
721 sum = "h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200722 )
723 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200724 name = "com_github_karrick_godirwalk",
725 importpath = "github.com/karrick/godirwalk",
726 version = "v1.7.5",
727 sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200728 )
729 go_repository(
730 name = "com_github_kevinburke_go_bindata",
731 importpath = "github.com/kevinburke/go-bindata",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200732 version = "v3.16.0+incompatible",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200733 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200734 )
735 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200736 name = "com_github_konsorten_go_windows_terminal_sequences",
737 importpath = "github.com/konsorten/go-windows-terminal-sequences",
738 version = "v1.0.1",
739 sum = "h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk=",
740 )
741 go_repository(
742 name = "com_github_kr_pretty",
743 importpath = "github.com/kr/pretty",
744 version = "v0.2.0",
745 sum = "h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=",
746 )
747 go_repository(
748 name = "com_github_kr_pty",
749 importpath = "github.com/kr/pty",
750 version = "v1.1.1",
751 sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
752 )
753 go_repository(
754 name = "com_github_lib_pq",
755 importpath = "github.com/lib/pq",
756 version = "v1.2.1-0.20191011153232-f91d3411e481",
757 sum = "h1:r9fnMM01mkhtfe6QfLrr/90mBVLnJHge2jGeBvApOjk=",
758 )
759 go_repository(
760 name = "com_github_liggitt_tabwriter",
761 importpath = "github.com/liggitt/tabwriter",
762 version = "v0.0.0-20181228230101-89fcab3d43de",
763 sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
764 )
765 go_repository(
766 name = "com_github_lithammer_dedent",
767 importpath = "github.com/lithammer/dedent",
768 version = "v1.1.0",
769 sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100770 )
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +0100771 go_repository(
772 name = "com_github_lyft_protoc_gen_star",
773 importpath = "github.com/lyft/protoc-gen-star",
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +0100774 version = "v0.4.14",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200775 sum = "h1:HUkD4H4dYFIgu3Bns/3N6J5GmKHCEGnhYBwNu3fvXgA=",
776 )
777 go_repository(
778 name = "com_github_magiconair_properties",
779 importpath = "github.com/magiconair/properties",
780 version = "v1.8.0",
781 sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
782 )
783 go_repository(
784 name = "com_github_mailru_easyjson",
785 importpath = "github.com/mailru/easyjson",
786 version = "v0.7.0",
787 sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
788 )
789 go_repository(
790 name = "com_github_mattn_go_colorable",
791 importpath = "github.com/mattn/go-colorable",
792 version = "v0.0.9",
793 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
794 )
795 go_repository(
796 name = "com_github_mattn_go_isatty",
797 importpath = "github.com/mattn/go-isatty",
798 version = "v0.0.4",
799 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
800 )
801 go_repository(
802 name = "com_github_mattn_go_runewidth",
803 importpath = "github.com/mattn/go-runewidth",
804 version = "v0.0.2",
805 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
806 )
807 go_repository(
808 name = "com_github_mattn_go_sqlite3",
809 importpath = "github.com/mattn/go-sqlite3",
810 version = "v1.12.0",
811 sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
812 )
813 go_repository(
814 name = "com_github_matttproud_golang_protobuf_extensions",
815 importpath = "github.com/matttproud/golang_protobuf_extensions",
816 version = "v1.0.1",
817 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
818 )
819 go_repository(
820 name = "com_github_mdlayher_ethernet",
821 importpath = "github.com/mdlayher/ethernet",
822 version = "v0.0.0-20190606142754-0394541c37b7",
823 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
824 )
825 go_repository(
826 name = "com_github_mdlayher_raw",
827 importpath = "github.com/mdlayher/raw",
828 version = "v0.0.0-20190606142536-fef19f00fc18",
829 sum = "h1:zwOa3e/13D6veNIz6zzuqrd3eZEMF0dzD0AQWKcYSs4=",
830 )
831 go_repository(
832 name = "com_github_mindprince_gonvml",
833 importpath = "github.com/mindprince/gonvml",
834 version = "v0.0.0-20190828220739-9ebdce4bb989",
835 sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
836 )
837 go_repository(
838 name = "com_github_mitchellh_cli",
839 importpath = "github.com/mitchellh/cli",
840 version = "v1.0.0",
841 sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
842 )
843 go_repository(
844 name = "com_github_mitchellh_go_wordwrap",
845 importpath = "github.com/mitchellh/go-wordwrap",
846 version = "v1.0.0",
847 sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
848 )
849 go_repository(
850 name = "com_github_mitchellh_mapstructure",
851 importpath = "github.com/mitchellh/mapstructure",
852 version = "v1.1.2",
853 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +0100854 )
Lorenz Brun7b5d9942020-03-19 16:14:02 +0100855 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200856 name = "com_github_moby_term",
857 importpath = "github.com/moby/term",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200858 version = "v0.0.0-20200312100748-672ec06f55cd",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200859 sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +0100860 )
861 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200862 name = "com_github_modern_go_concurrent",
863 importpath = "github.com/modern-go/concurrent",
864 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
865 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
866 )
867 go_repository(
868 name = "com_github_modern_go_reflect2",
869 importpath = "github.com/modern-go/reflect2",
870 version = "v0.0.0-20180701023420-4b7aa43c6742",
871 sum = "h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=",
872 )
873 go_repository(
874 name = "com_github_morikuni_aec",
875 importpath = "github.com/morikuni/aec",
876 version = "v1.0.0",
877 sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
878 )
879 go_repository(
880 name = "com_github_mrunalp_fileutils",
881 importpath = "github.com/mrunalp/fileutils",
882 version = "v0.0.0-20171103030105-7d4729fb3618",
883 sum = "h1:7InQ7/zrOh6SlFjaXFubv0xX0HsuC9qJsdqm7bNQpYM=",
884 )
885 go_repository(
886 name = "com_github_munnerz_goautoneg",
887 importpath = "github.com/munnerz/goautoneg",
888 version = "v0.0.0-20191010083416-a7dc8b61c822",
889 sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
890 )
891 go_repository(
892 name = "com_github_mxk_go_flowrate",
893 importpath = "github.com/mxk/go-flowrate",
894 version = "v0.0.0-20140419014527-cca7078d478f",
895 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
896 )
897 go_repository(
898 name = "com_github_olekukonko_tablewriter",
899 importpath = "github.com/olekukonko/tablewriter",
900 version = "v0.0.0-20170122224234-a0225b3f23b5",
901 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
902 )
903 go_repository(
904 name = "com_github_opencontainers_go_digest",
905 importpath = "github.com/opencontainers/go-digest",
906 version = "v1.0.0-rc1.0.20180430190053-c9281466c8b2",
907 sum = "h1:2C93eP55foV5f0eNmXbidhKzwUZbs/Gk4PRp1zfeffs=",
908 )
909 go_repository(
910 name = "com_github_opencontainers_image_spec",
911 importpath = "github.com/opencontainers/image-spec",
912 version = "v1.0.1",
913 sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
914 )
915 go_repository(
916 name = "com_github_opencontainers_runc",
917 importpath = "github.com/opencontainers/runc",
918 version = "v1.0.0-rc10",
919 sum = "h1:AbmCEuSZXVflng0/cboQkpdEOeBsPMjz6tmq4Pv8MZw=",
920 )
921 go_repository(
922 name = "com_github_opencontainers_runtime-spec",
923 importpath = "github.com/opencontainers/runtime-spec",
924 version = "v1.0.2-0.20190207185410-29686dbc5559",
925 sum = "h1:Cef96rKLuXxeGzERI/0ve9yAzIeTpx0qz9JKFDZALYw=",
926 )
927 go_repository(
928 name = "com_github_opencontainers_selinux",
929 importpath = "github.com/opencontainers/selinux",
930 version = "v1.3.1-0.20190929122143-5215b1806f52",
931 sum = "h1:B8hYj3NxHmjsC3T+tnlZ1UhInqUgnyF1zlGPmzNg2Qk=",
932 build_tags = [
933 "selinux",
934 ],
935 )
936 go_repository(
937 name = "com_github_peterbourgon_diskv",
938 importpath = "github.com/peterbourgon/diskv",
939 version = "v2.0.1+incompatible",
940 sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
941 )
942 go_repository(
943 name = "com_github_pkg_errors",
944 importpath = "github.com/pkg/errors",
945 version = "v0.8.1",
946 sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=",
947 )
948 go_repository(
949 name = "com_github_posener_complete",
950 importpath = "github.com/posener/complete",
951 version = "v1.1.1",
952 sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
953 )
954 go_repository(
955 name = "com_github_pquerna_cachecontrol",
956 importpath = "github.com/pquerna/cachecontrol",
957 version = "v0.0.0-20171018203845-0dec1b30a021",
958 sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
959 )
960 go_repository(
961 name = "com_github_prometheus_client_golang",
962 importpath = "github.com/prometheus/client_golang",
963 version = "v1.3.0",
964 sum = "h1:miYCvYqFXtl/J9FIy8eNpBfYthAEFg+Ys0XyUVEcDsc=",
965 )
966 go_repository(
967 name = "com_github_prometheus_client_model",
968 importpath = "github.com/prometheus/client_model",
969 version = "v0.1.0",
970 sum = "h1:ElTg5tNp4DqfV7UQjDqv2+RJlNzsDtvNAWccbItceIE=",
971 )
972 go_repository(
973 name = "com_github_prometheus_common",
974 importpath = "github.com/prometheus/common",
975 version = "v0.7.0",
976 sum = "h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY=",
977 )
978 go_repository(
979 name = "com_github_prometheus_procfs",
980 importpath = "github.com/prometheus/procfs",
981 version = "v0.0.8",
982 sum = "h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8=",
983 )
984 go_repository(
985 name = "com_github_rekby_gpt",
986 importpath = "github.com/rekby/gpt",
987 version = "v0.0.0-20200219180433-a930afbc6edc",
988 sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
989 )
990 go_repository(
991 name = "com_github_robfig_cron",
992 importpath = "github.com/robfig/cron",
993 version = "v1.1.0",
994 sum = "h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=",
995 )
996 go_repository(
997 name = "com_github_rubenv_sql_migrate",
998 importpath = "github.com/rubenv/sql-migrate",
999 version = "v0.0.0-20200429072036-ae26b214fa43",
1000 sum = "h1:0i6uTtxUGc/jpK/CngM4T2S2NFnqYUUxH+lKDgBLw8U=",
1001 )
1002 go_repository(
1003 name = "com_github_russross_blackfriday",
1004 importpath = "github.com/russross/blackfriday",
1005 version = "v1.5.2",
1006 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
1007 )
1008 go_repository(
1009 name = "com_github_safchain_ethtool",
1010 importpath = "github.com/safchain/ethtool",
1011 version = "v0.0.0-20190326074333-42ed695e3de8",
1012 sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
1013 )
1014 go_repository(
1015 name = "com_github_seccomp_libseccomp_golang",
1016 importpath = "github.com/seccomp/libseccomp-golang",
1017 version = "v0.9.1",
1018 sum = "h1:NJjM5DNFOs0s3kYE1WUOr6G8V97sdt46rlXTMfXGWBo=",
1019 )
1020 go_repository(
1021 name = "com_github_sirupsen_logrus",
1022 importpath = "github.com/sirupsen/logrus",
1023 version = "v1.4.1",
1024 sum = "h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k=",
1025 )
1026 go_repository(
1027 name = "com_github_soheilhy_cmux",
1028 importpath = "github.com/soheilhy/cmux",
1029 version = "v0.1.4",
1030 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
1031 )
1032 go_repository(
1033 name = "com_github_spf13_afero",
1034 importpath = "github.com/spf13/afero",
1035 version = "v1.2.2",
1036 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
1037 )
1038 go_repository(
1039 name = "com_github_spf13_cast",
1040 importpath = "github.com/spf13/cast",
1041 version = "v1.3.1",
1042 sum = "h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=",
1043 )
1044 go_repository(
1045 name = "com_github_spf13_cobra",
1046 importpath = "github.com/spf13/cobra",
1047 version = "v0.0.5",
1048 sum = "h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s=",
1049 )
1050 go_repository(
1051 name = "com_github_spf13_jwalterweatherman",
1052 importpath = "github.com/spf13/jwalterweatherman",
1053 version = "v1.0.0",
1054 sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
1055 )
1056 go_repository(
1057 name = "com_github_spf13_pflag",
1058 importpath = "github.com/spf13/pflag",
1059 version = "v1.0.5",
1060 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
1061 )
1062 go_repository(
1063 name = "com_github_spf13_viper",
1064 importpath = "github.com/spf13/viper",
1065 version = "v1.6.3",
1066 sum = "h1:pDDu1OyEDTKzpJwdq4TiuLyMsUgRa/BT5cn5O62NoHs=",
1067 )
1068 go_repository(
1069 name = "com_github_stretchr_testify",
1070 importpath = "github.com/stretchr/testify",
1071 version = "v1.4.0",
1072 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
1073 )
1074 go_repository(
1075 name = "com_github_subosito_gotenv",
1076 importpath = "github.com/subosito/gotenv",
1077 version = "v1.2.0",
1078 sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=",
1079 )
1080 go_repository(
1081 name = "com_github_syndtr_gocapability",
1082 importpath = "github.com/syndtr/gocapability",
1083 version = "v0.0.0-20180916011248-d98352740cb2",
1084 sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
1085 )
1086 go_repository(
1087 name = "com_github_tchap_go_patricia",
1088 importpath = "github.com/tchap/go-patricia",
1089 version = "v2.2.6+incompatible",
1090 sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
1091 )
1092 go_repository(
1093 name = "com_github_tmc_grpc_websocket_proxy",
1094 importpath = "github.com/tmc/grpc-websocket-proxy",
1095 version = "v0.0.0-20170815181823-89b8d40f7ca8",
1096 sum = "h1:ndzgwNDnKIqyCvHTXaCqh9KlOWKvBry6nuXMJmonVsE=",
1097 )
1098 go_repository(
1099 name = "com_github_u_root_u_root",
1100 importpath = "github.com/u-root/u-root",
1101 version = "v6.0.0+incompatible",
1102 sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
1103 )
1104 go_repository(
1105 name = "com_github_urfave_cli",
1106 importpath = "github.com/urfave/cli",
1107 version = "v1.22.0",
1108 sum = "h1:8nz/RUUotroXnOpYzT/Fy3sBp+2XEbXaY641/s3nbFI=",
1109 )
1110 go_repository(
1111 name = "com_github_vishvananda_netlink",
1112 importpath = "github.com/vishvananda/netlink",
1113 version = "v1.1.0",
1114 sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
1115 )
1116 go_repository(
1117 name = "com_github_vishvananda_netns",
1118 importpath = "github.com/vishvananda/netns",
1119 version = "v0.0.0-20191106174202-0a2b9b5464df",
1120 sum = "h1:OviZH7qLw/7ZovXvuNyL3XQl8UFofeikI1NW1Gypu7k=",
1121 )
1122 go_repository(
1123 name = "com_github_volatiletech_inflect",
1124 importpath = "github.com/volatiletech/inflect",
1125 version = "v0.0.1",
1126 sum = "h1:2a6FcMQyhmPZcLa+uet3VJ8gLn/9svWhJxJYwvE8KsU=",
1127 )
1128 go_repository(
1129 name = "com_github_volatiletech_null_v8",
1130 importpath = "github.com/volatiletech/null/v8",
1131 version = "v8.1.0",
1132 sum = "h1:eAO3I31A5R04usY5SKMMfDcOCnEGyT/T4wRI0JVGp4U=",
1133 )
1134 go_repository(
1135 name = "com_github_volatiletech_randomize",
1136 importpath = "github.com/volatiletech/randomize",
1137 version = "v0.0.1",
1138 sum = "h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk=",
1139 )
1140 go_repository(
1141 name = "com_github_volatiletech_sqlboiler_v4",
1142 importpath = "github.com/volatiletech/sqlboiler/v4",
1143 version = "v4.1.1",
1144 sum = "h1:cmpaEri8whb5lRv6q2ycWtmiWd42llsrDaERk2BkWbE=",
1145 )
1146 go_repository(
1147 name = "com_github_volatiletech_strmangle",
1148 importpath = "github.com/volatiletech/strmangle",
1149 version = "v0.0.1",
1150 sum = "h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk=",
1151 )
1152 go_repository(
1153 name = "com_github_xiang90_probing",
1154 importpath = "github.com/xiang90/probing",
1155 version = "v0.0.0-20190116061207-43a291ad63a2",
1156 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
1157 )
1158 go_repository(
1159 name = "com_github_yalue_native_endian",
1160 importpath = "github.com/yalue/native_endian",
1161 version = "v0.0.0-20180607135909-51013b03be4f",
1162 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
1163 )
1164 go_repository(
1165 name = "io_etcd_go_bbolt",
1166 importpath = "go.etcd.io/bbolt",
1167 version = "v1.3.3",
1168 sum = "h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=",
1169 )
1170 go_repository(
1171 name = "io_etcd_go_etcd",
1172 importpath = "go.etcd.io/etcd",
1173 version = "v0.5.0-alpha.5.0.20200401174654-e694b7bb0875",
1174 sum = "h1:C7kWARE8r64ppRadl40yfNo6pag+G6ocvGU2xZ6yNes=",
1175 build_file_proto_mode = "disable",
1176 )
1177 go_repository(
1178 name = "org_mongodb_go_mongo_driver",
1179 importpath = "go.mongodb.org/mongo-driver",
1180 version = "v1.1.2",
1181 sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
1182 )
1183 go_repository(
1184 name = "io_opencensus_go",
1185 importpath = "go.opencensus.io",
1186 version = "v0.22.0",
1187 sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
1188 )
1189 go_repository(
1190 name = "org_uber_go_atomic",
1191 importpath = "go.uber.org/atomic",
1192 version = "v1.3.2",
1193 sum = "h1:2Oa65PReHzfn29GpvgsYwloV9AVFHPDk8tYxt2c2tr4=",
1194 )
1195 go_repository(
1196 name = "org_uber_go_multierr",
1197 importpath = "go.uber.org/multierr",
1198 version = "v1.1.0",
1199 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
1200 )
1201 go_repository(
1202 name = "org_uber_go_zap",
1203 importpath = "go.uber.org/zap",
1204 version = "v1.15.0",
1205 sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=",
1206 )
1207 go_repository(
1208 name = "org_golang_x_crypto",
1209 importpath = "golang.org/x/crypto",
1210 version = "v0.0.0-20200128174031-69ecbb4d6d5d",
1211 sum = "h1:9FCpayM9Egr1baVnV1SX0H87m+XB0B8S0hAMi99X/3U=",
1212 )
1213 go_repository(
1214 name = "org_golang_x_mod",
1215 importpath = "golang.org/x/mod",
1216 version = "v0.3.0",
1217 sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
1218 )
1219 go_repository(
1220 name = "org_golang_x_net",
1221 importpath = "golang.org/x/net",
1222 version = "v0.0.0-20190311183353-d8887717615a",
1223 sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=",
1224 )
1225 go_repository(
1226 name = "org_golang_x_oauth2",
1227 importpath = "golang.org/x/oauth2",
1228 version = "v0.0.0-20190604053449-0f29369cfe45",
1229 sum = "h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=",
1230 )
1231 go_repository(
1232 name = "org_golang_x_sync",
1233 importpath = "golang.org/x/sync",
1234 version = "v0.0.0-20181108010431-42b317875d0f",
1235 sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
1236 )
1237 go_repository(
1238 name = "org_golang_x_sys",
1239 importpath = "golang.org/x/sys",
1240 version = "v0.0.0-20190927073244-c990c680b611",
1241 sum = "h1:q9u40nxWT5zRClI/uU9dHCiYGottAg6Nzz4YUQyHxdA=",
1242 )
1243 go_repository(
1244 name = "org_golang_x_text",
1245 importpath = "golang.org/x/text",
1246 version = "v0.3.0",
1247 sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
1248 )
1249 go_repository(
1250 name = "org_golang_x_time",
1251 importpath = "golang.org/x/time",
1252 version = "v0.0.0-20191024005414-555d28b269f0",
1253 sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
1254 )
1255 go_repository(
1256 name = "org_golang_x_xerrors",
1257 importpath = "golang.org/x/xerrors",
1258 version = "v0.0.0-20191204190536-9bdfabe68543",
1259 sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
1260 )
1261 go_repository(
1262 name = "org_gonum_v1_gonum",
1263 importpath = "gonum.org/v1/gonum",
1264 version = "v0.6.2",
1265 sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
1266 )
1267 go_repository(
1268 name = "org_golang_google_genproto",
1269 importpath = "google.golang.org/genproto",
1270 version = "v0.0.0-20170523043604-d80a6e20e776",
1271 sum = "h1:wVJP1pATLVPNxCz4R2mTO6HUJgfGE0PmIu2E10RuhCw=",
1272 )
1273 go_repository(
1274 name = "org_golang_google_grpc",
1275 importpath = "google.golang.org/grpc",
1276 version = "v1.26.0",
1277 sum = "h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg=",
1278 )
1279 go_repository(
1280 name = "in_gopkg_djherbis_times_v1",
1281 importpath = "gopkg.in/djherbis/times.v1",
1282 version = "v1.2.0",
1283 sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
1284 )
1285 go_repository(
1286 name = "in_gopkg_gorp_v1",
1287 importpath = "gopkg.in/gorp.v1",
1288 version = "v1.7.2",
1289 sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
1290 )
1291 go_repository(
1292 name = "in_gopkg_inf_v0",
1293 importpath = "gopkg.in/inf.v0",
1294 version = "v0.9.1",
1295 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
1296 )
1297 go_repository(
1298 name = "in_gopkg_ini_v1",
1299 importpath = "gopkg.in/ini.v1",
1300 version = "v1.51.0",
1301 sum = "h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=",
1302 )
1303 go_repository(
1304 name = "in_gopkg_natefinch_lumberjack_v2",
1305 importpath = "gopkg.in/natefinch/lumberjack.v2",
1306 version = "v2.0.0",
1307 sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
1308 )
1309 go_repository(
1310 name = "in_gopkg_square_go_jose_v2",
1311 importpath = "gopkg.in/square/go-jose.v2",
1312 version = "v2.2.2",
1313 sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
1314 )
1315 go_repository(
1316 name = "in_gopkg_yaml_v2",
1317 importpath = "gopkg.in/yaml.v2",
1318 version = "v2.2.8",
1319 sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
1320 )
1321 go_repository(
1322 name = "tools_gotest",
1323 importpath = "gotest.tools",
1324 version = "v1.4.1-0.20181223230014-1083505acf35",
1325 sum = "h1:YPidOweaQrSUDfne29Fnuwwo8uoQZuxnrAzZ+Q0pTeE=",
1326 )
1327 go_repository(
1328 name = "io_k8s_api",
1329 importpath = "k8s.io/api",
1330 version = "v0.19.0-alpha.2",
1331 sum = "h1:GVZeds8bgQOSdQ/LYcjL7+NstBByZ5L3U/Ks6+E+QRI=",
1332 build_file_proto_mode = "disable",
1333 )
1334 go_repository(
1335 name = "io_k8s_apiextensions_apiserver",
1336 importpath = "k8s.io/apiextensions-apiserver",
1337 version = "v0.19.0-alpha.2",
1338 sum = "h1:lQjE543mSh4jeBxrvnwz37DCzGHW2UMefX8eCzk8uAU=",
1339 build_file_proto_mode = "disable",
1340 )
1341 go_repository(
1342 name = "io_k8s_apimachinery",
1343 importpath = "k8s.io/apimachinery",
1344 version = "v0.19.0-alpha.2",
1345 sum = "h1:N155+ZeSeRnCFyzjYRv3vg9GWJIUm5ElZba66f7qicY=",
1346 build_file_proto_mode = "disable",
1347 )
1348 go_repository(
1349 name = "io_k8s_apiserver",
1350 importpath = "k8s.io/apiserver",
1351 version = "v0.19.0-alpha.2",
1352 sum = "h1:k1fpzJAPZvtRT9Z8Rc42kciGehIH0GiEmTgEmc46drw=",
1353 build_file_proto_mode = "disable",
1354 )
1355 go_repository(
1356 name = "io_k8s_cli_runtime",
1357 importpath = "k8s.io/cli-runtime",
1358 version = "v0.19.0-alpha.2",
1359 sum = "h1:/cZeGGp0GxuFSUdjz8jlUQP75QJVz99YtXEU1uNW/LI=",
1360 )
1361 go_repository(
1362 name = "io_k8s_client_go",
1363 importpath = "k8s.io/client-go",
1364 version = "v0.19.0-alpha.2",
1365 sum = "h1:YqJuHm/xOYP2VIOWPnQO+ix+Ag5KditpdHmIreWYyTY=",
1366 patches = [
1367 "//third_party/go/patches:k8s-client-go.patch",
1368 "//third_party/go/patches:k8s-client-go-build.patch",
1369 ],
1370 patch_args = ["-p1"],
1371 )
1372 go_repository(
1373 name = "io_k8s_cloud_provider",
1374 importpath = "k8s.io/cloud-provider",
1375 version = "v0.19.0-alpha.2",
1376 sum = "h1:nFQ/M6B8o+/ICEHbjLFMe4nHgH/8jAHQ1GFw2NJ5Elo=",
1377 )
1378 go_repository(
1379 name = "io_k8s_cluster_bootstrap",
1380 importpath = "k8s.io/cluster-bootstrap",
1381 version = "v0.19.0-alpha.2",
1382 sum = "h1:MHG+0kAEEh4nDQU2iC8NXNILDDIANK12RB8PcAjyej4=",
1383 )
1384 go_repository(
1385 name = "io_k8s_component_base",
1386 importpath = "k8s.io/component-base",
1387 version = "v0.19.0-alpha.2",
1388 sum = "h1:nZfjiRab7LcpScUgnudRCG6UMRVmZ3L0GNZZWHkYjus=",
1389 )
1390 go_repository(
1391 name = "io_k8s_cri_api",
1392 importpath = "k8s.io/cri-api",
1393 version = "v0.19.0-alpha.2",
1394 sum = "h1:JDsPY0mIzxR6JYGWKWhX7NIIXa9giiVQ1X/RE0Mw1GY=",
1395 build_file_proto_mode = "disable",
1396 )
1397 go_repository(
1398 name = "io_k8s_csi_translation_lib",
1399 importpath = "k8s.io/csi-translation-lib",
1400 version = "v0.19.0-alpha.2",
1401 sum = "h1:lH3FPZqHFwPthCQKLKNP90LR5oqjAMxYMJNhicDA5d8=",
1402 )
1403 go_repository(
1404 name = "io_k8s_gengo",
1405 importpath = "k8s.io/gengo",
1406 version = "v0.0.0-20200205140755-e0e292d8aa12",
1407 sum = "h1:pZzawYyz6VRNPVYpqGv61LWCimQv1BihyeqFrp50/G4=",
1408 )
1409 go_repository(
1410 name = "io_k8s_heapster",
1411 importpath = "k8s.io/heapster",
1412 version = "v1.2.0-beta.1",
1413 sum = "h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=",
1414 )
1415 go_repository(
1416 name = "io_k8s_klog",
1417 importpath = "k8s.io/klog",
1418 version = "v1.0.0",
1419 sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
1420 )
1421 go_repository(
1422 name = "io_k8s_kube_aggregator",
1423 importpath = "k8s.io/kube-aggregator",
1424 version = "v0.19.0-alpha.2",
1425 sum = "h1:Li0htDytvDHRnf7IR9AWGSahhyvD4qVxWIJwsUVgo2w=",
1426 build_file_proto_mode = "disable",
1427 )
1428 go_repository(
1429 name = "io_k8s_kube_controller_manager",
1430 importpath = "k8s.io/kube-controller-manager",
1431 version = "v0.19.0-alpha.2",
1432 sum = "h1:E5GkOKLf+ODm2uXQaBqtmf+D4ZJpUUlo8XJoX0nEDL0=",
1433 )
1434 go_repository(
1435 name = "io_k8s_kube_openapi",
1436 importpath = "k8s.io/kube-openapi",
1437 version = "v0.0.0-20200403204345-e1beb1bd0f35",
1438 sum = "h1:FDWYFE3itI1G8UFOMjUuLbROZExo+Rrfm/Qaf473rm4=",
1439 )
1440 go_repository(
1441 name = "io_k8s_kube_proxy",
1442 importpath = "k8s.io/kube-proxy",
1443 version = "v0.19.0-alpha.2",
1444 sum = "h1:8awQLk0DLJEXew80mjbFTMNs9EtbtXJElBi7K7BqalE=",
1445 )
1446 go_repository(
1447 name = "io_k8s_kube_scheduler",
1448 importpath = "k8s.io/kube-scheduler",
1449 version = "v0.19.0-alpha.2",
1450 sum = "h1:EpIJpmI5Nn3mii1aaWg5VFMd9Y0Qt+jCcduVxH92Vk8=",
1451 )
1452 go_repository(
1453 name = "io_k8s_kubectl",
1454 importpath = "k8s.io/kubectl",
1455 version = "v0.19.0-alpha.2",
1456 sum = "h1:ygJWExSY2hnEHt72gJV6DgPDmkdp6xwkQlrZbtmW9EI=",
1457 )
1458 go_repository(
1459 name = "io_k8s_kubelet",
1460 importpath = "k8s.io/kubelet",
1461 version = "v0.19.0-alpha.2",
1462 sum = "h1:UPkB1eGbkIWr38J++4Gk7LZjcYeB5JfJBqKzRGfJ/VM=",
1463 build_file_proto_mode = "disable",
1464 )
1465 go_repository(
1466 name = "io_k8s_kubernetes",
1467 importpath = "k8s.io/kubernetes",
1468 version = "v1.19.0-alpha.2",
1469 sum = "h1:kTsLVxmg/z3Fexcvu75zzGEHOYQ17jzIJFWhfQQnXDE=",
1470 build_file_proto_mode = "disable",
1471 build_tags = [
1472 "providerless",
1473 ],
1474 patches = [
1475 "//third_party/go/patches:k8s-kubernetes.patch",
1476 "//third_party/go/patches:k8s-kubernetes-build.patch",
1477 ],
1478 patch_args = ["-p1"],
1479 )
1480 go_repository(
1481 name = "io_k8s_legacy_cloud_providers",
1482 importpath = "k8s.io/legacy-cloud-providers",
1483 version = "v0.19.0-alpha.2",
1484 sum = "h1:jpu9SqacduO6iKtiCKCovH/uZ0GL1PkbsJndUZKUxtc=",
1485 )
1486 go_repository(
1487 name = "io_k8s_metrics",
1488 importpath = "k8s.io/metrics",
1489 version = "v0.19.0-alpha.2",
1490 sum = "h1:5/OfIQ5HeJutKUPpjXXdcgFqxmFf01bYfnFRd1li5b8=",
1491 build_file_proto_mode = "disable",
1492 )
1493 go_repository(
1494 name = "io_k8s_repo_infra",
1495 importpath = "k8s.io/repo-infra",
1496 version = "v0.0.0-20190329054012-df02ded38f95",
1497 sum = "h1:PQyAIB6SRdV0a3Vj/VA39L1uANW36k/zg3tOk/Ffh3U=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001498 )
1499 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001500 name = "io_k8s_sample_apiserver",
1501 importpath = "k8s.io/sample-apiserver",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001502 version = "v0.19.0-alpha.2",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001503 sum = "h1:Nw+rJYx+0cb8Kxtxhe87iT73S6CF67396cIf7tU3JZ8=",
1504 )
1505 go_repository(
1506 name = "io_k8s_utils",
1507 importpath = "k8s.io/utils",
1508 version = "v0.0.0-20200324210504-a9aa75ae1b89",
1509 sum = "h1:d4vVOjXm687F1iLSP2q3lyPPuyvTUt3aVoBpi2DqRsU=",
1510 )
1511 go_repository(
1512 name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
1513 importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
1514 version = "v0.0.7",
1515 sum = "h1:uuHDyjllyzRyCIvvn0OBjiRB0SgBZGqHNYAmjR7fO50=",
1516 )
1517 go_repository(
1518 name = "io_k8s_sigs_kustomize",
1519 importpath = "sigs.k8s.io/kustomize",
1520 version = "v2.0.3+incompatible",
1521 sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
1522 )
1523 go_repository(
1524 name = "io_k8s_sigs_structured_merge_diff_v3",
1525 importpath = "sigs.k8s.io/structured-merge-diff/v3",
1526 version = "v3.0.0",
1527 sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
1528 )
1529 go_repository(
1530 name = "io_k8s_sigs_yaml",
1531 importpath = "sigs.k8s.io/yaml",
1532 version = "v1.1.0",
1533 sum = "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs=",
1534 )
1535 go_repository(
1536 name = "ml_vbom_util",
1537 importpath = "vbom.ml/util",
1538 version = "v0.0.0-20160121211510-db5cfe13f5cc",
1539 sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001540 )