blob: dd79302c3f1b8f1aecb727a5b0d5cf2d05c7b36c [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",
Lorenz Brunb876fc32020-07-14 13:54:01 +020023 version = "v0.51.0",
24 sum = "h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +020025 )
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",
Lorenz Brunb876fc32020-07-14 13:54:01 +020053 version = "v0.8.9",
54 sum = "h1:VrfodqvztU8YSOvygU+DN1BGaSGxmrNfqOv5oOuX2Bk=",
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(
Serge Bazanski14cf7502020-05-28 14:29:56 +020088 name = "com_github_armon_go_metrics",
89 importpath = "github.com/armon/go-metrics",
90 version = "v0.0.0-20180917152333-f0300d1749da",
91 sum = "h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=",
92 )
93 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +020094 name = "com_github_armon_go_radix",
95 importpath = "github.com/armon/go-radix",
96 version = "v0.0.0-20180808171621-7fddfc383310",
97 sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
98 )
99 go_repository(
100 name = "com_github_asaskevich_govalidator",
101 importpath = "github.com/asaskevich/govalidator",
102 version = "v0.0.0-20190424111038-f61b66f89f4a",
103 sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
104 )
105 go_repository(
106 name = "com_github_beorn7_perks",
107 importpath = "github.com/beorn7/perks",
108 version = "v1.0.1",
109 sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
110 )
111 go_repository(
112 name = "com_github_bgentry_speakeasy",
113 importpath = "github.com/bgentry/speakeasy",
114 version = "v0.1.0",
115 sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
116 )
117 go_repository(
118 name = "com_github_blang_semver",
119 importpath = "github.com/blang/semver",
120 version = "v3.5.0+incompatible",
121 sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
122 )
123 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200124 name = "com_github_c9s_goprocinfo",
125 importpath = "github.com/c9s/goprocinfo",
126 version = "v0.0.0-20190309065803-0b2ad9ac246b",
127 sum = "h1:4yfM1Zm+7U+m0inJ0g6JvdqGePXD8eG4nXUTbcLT6gk=",
128 )
129 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200130 name = "com_github_caddyserver_caddy",
131 importpath = "github.com/caddyserver/caddy",
132 version = "v1.0.5",
133 sum = "h1:5B1Hs0UF2x2tggr2X9jL2qOZtDXbIWQb9YLbmlxHSuM=",
134 )
135 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200136 name = "com_github_cenkalti_backoff",
137 importpath = "github.com/cenkalti/backoff",
138 version = "v0.0.0-20190506075156-2146c9339422",
139 sum = "h1:+FKjzBIdfBHYDvxCv+djmDJdes/AoDtg8gpcxowBlF8=",
140 )
141 go_repository(
142 name = "com_github_cenkalti_backoff_v4",
143 importpath = "github.com/cenkalti/backoff/v4",
144 version = "v4.0.2",
145 sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=",
146 )
147 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200148 name = "com_github_census_instrumentation_opencensus_proto",
149 importpath = "github.com/census-instrumentation/opencensus-proto",
150 version = "v0.2.1",
151 sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
152 build_file_proto_mode = "disable",
153 build_extra_args = [
154 "-exclude=src",
155 ],
156 )
157 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200158 name = "com_github_cespare_xxhash_v2",
159 importpath = "github.com/cespare/xxhash/v2",
160 version = "v2.1.1",
161 sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
162 )
163 go_repository(
164 name = "com_github_chai2010_gettext_go",
165 importpath = "github.com/chai2010/gettext-go",
166 version = "v0.0.0-20160711120539-c6fed771bfd5",
167 sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
168 )
169 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200170 name = "com_github_checkpoint_restore_go_criu_v4",
171 importpath = "github.com/checkpoint-restore/go-criu/v4",
172 version = "v4.0.2",
173 sum = "h1:jt+rnBIhFtPw0fhtpYGcUOilh4aO9Hj7r+YLEtf30uA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200174 )
175 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200176 name = "com_github_cilium_arping",
177 importpath = "github.com/cilium/arping",
178 version = "v1.0.1-0.20190728065459-c5eaf8d7a710",
179 sum = "h1:htVjkajqUYy6JmLMGlZYxfZ4urQq7rDvgUfmSJX7fSg=",
180 )
181 go_repository(
182 name = "com_github_cilium_cilium",
183 importpath = "github.com/cilium/cilium",
184 version = "v1.8.0-rc1",
185 sum = "h1:tbMNmz8RjjnZ1LHJ8D88mHeQcwEr0aW6eqaratxspu8=",
186 build_file_proto_mode = "disable",
187 )
188 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200189 name = "com_github_cilium_ebpf",
190 importpath = "github.com/cilium/ebpf",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200191 version = "v0.0.0-20200702112145-1c8d4c9ef775",
192 sum = "h1:cHzBGGVew0ezFsq2grfy2RsB8hO/eNyBgOLHBCqfR1U=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200193 )
194 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200195 name = "com_github_cilium_ipam",
196 importpath = "github.com/cilium/ipam",
197 version = "v0.0.0-20200420133938-2f672ef3ad54",
198 sum = "h1:YOrdErbkc+X+6wflk5idOHZ1IJtLNr3Vnz8JlznG0VI=",
199 )
200 go_repository(
201 name = "com_github_cilium_proxy",
202 importpath = "github.com/cilium/proxy",
203 version = "v0.0.0-20200309181938-3cf80fe45d03",
204 sum = "h1:vkRt49aGUyDbrmR8lVXWUPhS9uYvUZB+jwXyer9aq0w=",
205 build_file_proto_mode = "disable",
206 build_file_generation = "on",
207 )
208 go_repository(
209 name = "com_github_cncf_udpa_go",
210 importpath = "github.com/cncf/udpa/go",
211 version = "v0.0.0-20191230090109-edbea6a78f6d",
212 sum = "h1:F6x9XOn7D+HmM4z8vuG/vvlE53rWPWebGLdIy3Nh+XM=",
213 )
214 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200215 name = "com_github_container_storage_interface_spec",
216 importpath = "github.com/container-storage-interface/spec",
217 version = "v1.2.0",
218 sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=",
219 )
220 go_repository(
221 name = "com_github_containerd_btrfs",
222 importpath = "github.com/containerd/btrfs",
223 version = "v0.0.0-20200117014249-153935315f4a",
224 sum = "h1:u5X1yvVEsXLcuTWYsFSpTgQKRvo2VTB5gOHcERpF9ZI=",
225 )
226 go_repository(
227 name = "com_github_containerd_cgroups",
228 importpath = "github.com/containerd/cgroups",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200229 version = "v0.0.0-20200710171044-318312a37340",
230 sum = "h1:9atoWyI9RtXFwf7UDbme/6M8Ud0rFrx+Q3ZWgSnsxtw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200231 build_file_proto_mode = "disable",
232 )
233 go_repository(
234 name = "com_github_containerd_console",
235 importpath = "github.com/containerd/console",
236 version = "v1.0.0",
237 sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=",
238 )
239 go_repository(
240 name = "com_github_containerd_containerd",
241 importpath = "github.com/containerd/containerd",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200242 version = "v1.4.0-beta.2",
243 sum = "h1:qZelipNh4yeTHIyzcNteRPoo/Mb9sFCrDtCNWWSXJHQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200244 build_file_proto_mode = "disable",
245 build_tags = [
246 "no_zfs",
247 "no_aufs",
248 "no_devicemapper",
249 "no_btrfs",
250 ],
251 )
252 go_repository(
253 name = "com_github_containerd_continuity",
254 importpath = "github.com/containerd/continuity",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200255 version = "v0.0.0-20200413184840-d3ef23f19fbb",
256 sum = "h1:nXPkFq8X1a9ycY3GYQpFNxHh3j2JgY7zDZfq2EXMIzk=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200257 )
258 go_repository(
259 name = "com_github_containerd_cri",
260 importpath = "github.com/containerd/cri",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200261 version = "v1.11.1-0.20200705100038-8fb244a65baa",
262 sum = "h1:qqB+Jjek9F6LdsEzQwYWu3PmKkWvFyPr8eCUZPUfCoU=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200263 build_file_proto_mode = "disable",
264 )
265 go_repository(
266 name = "com_github_containerd_fifo",
267 importpath = "github.com/containerd/fifo",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200268 version = "v0.0.0-20200410184934-f15a3290365b",
269 sum = "h1:qUtCegLdOUVfVJOw+KDg6eJyE1TGvLlkGEd1091kSSQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200270 )
271 go_repository(
272 name = "com_github_containerd_go_cni",
273 importpath = "github.com/containerd/go-cni",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200274 version = "v1.0.0",
275 sum = "h1:A681A9YQ5Du9V2/gZGk/pTm6g69wF0aGd9qFN9syB1E=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200276 )
277 go_repository(
278 name = "com_github_containerd_go_runc",
279 importpath = "github.com/containerd/go-runc",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200280 version = "v0.0.0-20200220073739-7016d3ce2328",
281 sum = "h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=",
282 )
283 go_repository(
284 name = "com_github_containerd_imgcrypt",
285 importpath = "github.com/containerd/imgcrypt",
286 version = "v1.0.1",
287 sum = "h1:IyI3IIP4m6zrNFuNFT7HizGVcuD6BYJFpdM1JvPKCbQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200288 )
289 go_repository(
290 name = "com_github_containerd_ttrpc",
291 importpath = "github.com/containerd/ttrpc",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200292 version = "v1.0.1",
293 sum = "h1:IfVOxKbjyBn9maoye2JN95pgGYOmPkQVqxtOu7rtNIc=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200294 )
295 go_repository(
296 name = "com_github_containerd_typeurl",
297 importpath = "github.com/containerd/typeurl",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200298 version = "v1.0.1",
299 sum = "h1:PvuK4E3D5S5q6IqsPDCy928FhP0LUIGcmZ/Yhgp5Djw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200300 )
301 go_repository(
302 name = "com_github_containernetworking_cni",
303 importpath = "github.com/containernetworking/cni",
304 version = "v0.7.1",
305 sum = "h1:fE3r16wpSEyaqY4Z4oFrLMmIGfBYIKpPrHK31EJ9FzE=",
306 )
307 go_repository(
308 name = "com_github_containernetworking_plugins",
309 importpath = "github.com/containernetworking/plugins",
310 version = "v0.8.2",
311 sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100312 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200313 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200314 name = "com_github_containers_ocicrypt",
315 importpath = "github.com/containers/ocicrypt",
316 version = "v1.0.1",
317 sum = "h1:EToign46OSLTFWnb2oNj9RG3XDnkOX8r28ZIXUuk5Pc=",
318 )
319 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200320 name = "com_github_coredns_coredns",
321 importpath = "github.com/coredns/coredns",
322 version = "v1.7.0",
323 sum = "h1:Tm2ZSdhTk+4okgjUp4K6KYzvBI2u34cdD4fKQRC4Eeo=",
324 pre_patches = [
325 "//third_party/go/patches:coredns-remove-unused-plugins.patch",
326 ],
327 patch_args = ["-p1"],
328 )
329 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200330 name = "com_github_coreos_go_iptables",
331 importpath = "github.com/coreos/go-iptables",
332 version = "v0.4.2",
333 sum = "h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=",
334 )
335 go_repository(
336 name = "com_github_coreos_go_oidc",
337 importpath = "github.com/coreos/go-oidc",
338 version = "v2.1.0+incompatible",
339 sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
340 )
341 go_repository(
342 name = "com_github_coreos_go_semver",
343 importpath = "github.com/coreos/go-semver",
344 version = "v0.3.0",
345 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
346 )
347 go_repository(
348 name = "com_github_coreos_go_systemd",
349 importpath = "github.com/coreos/go-systemd",
350 version = "v0.0.0-20190321100706-95778dfbb74e",
351 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
352 )
353 go_repository(
354 name = "com_github_coreos_go_systemd_v22",
355 importpath = "github.com/coreos/go-systemd/v22",
356 version = "v22.0.0",
357 sum = "h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28=",
358 )
359 go_repository(
360 name = "com_github_coreos_pkg",
361 importpath = "github.com/coreos/pkg",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200362 version = "v0.0.0-20180928190104-399ea9e2e55f",
363 sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200364 )
365 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200366 name = "com_github_cosiner_argv",
367 importpath = "github.com/cosiner/argv",
368 version = "v0.0.0-20170225145430-13bacc38a0a5",
369 sum = "h1:rIXlvz2IWiupMFlC45cZCXZFvKX/ExBcSLrDy2G0Lp8=",
370 )
371 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200372 name = "com_github_cpuguy83_go_md2man_v2",
373 importpath = "github.com/cpuguy83/go-md2man/v2",
374 version = "v2.0.0",
375 sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
376 )
377 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200378 name = "com_github_cyphar_filepath_securejoin",
379 importpath = "github.com/cyphar/filepath-securejoin",
380 version = "v0.2.2",
381 sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
382 )
383 go_repository(
384 name = "com_github_davecgh_go_spew",
385 importpath = "github.com/davecgh/go-spew",
386 version = "v1.1.1",
387 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
388 )
389 go_repository(
390 name = "com_github_daviddengcn_go_colortext",
391 importpath = "github.com/daviddengcn/go-colortext",
392 version = "v0.0.0-20160507010035-511bcaf42ccd",
393 sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
394 )
395 go_repository(
396 name = "com_github_denisenkom_go_mssqldb",
397 importpath = "github.com/denisenkom/go-mssqldb",
398 version = "v0.0.0-20200206145737-bbfc9a55622e",
399 sum = "h1:LzwWXEScfcTu7vUZNlDDWDARoSGEtvlDKK2BYHowNeE=",
400 )
401 go_repository(
402 name = "com_github_dgrijalva_jwt_go",
403 importpath = "github.com/dgrijalva/jwt-go",
404 version = "v3.2.0+incompatible",
405 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
406 )
407 go_repository(
408 name = "com_github_diskfs_go_diskfs",
409 importpath = "github.com/diskfs/go-diskfs",
410 version = "v1.0.0",
411 sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
412 )
413 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200414 name = "com_github_dnstap_golang_dnstap",
415 importpath = "github.com/dnstap/golang-dnstap",
416 version = "v0.2.0",
417 sum = "h1:+NrmP4mkaTeKYV7xJ5FXpUxRn0RpcgoQcsOCTS8WQPk=",
418 )
419 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200420 name = "com_github_docker_distribution",
421 importpath = "github.com/docker/distribution",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200422 version = "v2.7.1+incompatible",
423 sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200424 )
425 go_repository(
426 name = "com_github_docker_docker",
427 importpath = "github.com/docker/docker",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200428 version = "v17.12.0-ce-rc1.0.20200310163718-4634ce647cf2+incompatible",
429 sum = "h1:ax4NateCD5bjRTqLvQBlFrSUPOoZRgEXWpJ6Bmu6OO0=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200430 )
431 go_repository(
432 name = "com_github_docker_go_connections",
433 importpath = "github.com/docker/go-connections",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200434 version = "v0.4.0",
435 sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200436 )
437 go_repository(
438 name = "com_github_docker_go_events",
439 importpath = "github.com/docker/go-events",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200440 version = "v0.0.0-20190806004212-e31b211e4f1c",
441 sum = "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200442 )
443 go_repository(
444 name = "com_github_docker_go_metrics",
445 importpath = "github.com/docker/go-metrics",
446 version = "v0.0.1",
447 sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
448 )
449 go_repository(
450 name = "com_github_docker_go_units",
451 importpath = "github.com/docker/go-units",
452 version = "v0.4.0",
453 sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
454 )
455 go_repository(
456 name = "com_github_docker_spdystream",
457 importpath = "github.com/docker/spdystream",
458 version = "v0.0.0-20160310174837-449fdfce4d96",
459 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
460 )
461 go_repository(
462 name = "com_github_dustin_go_humanize",
463 importpath = "github.com/dustin/go-humanize",
464 version = "v1.0.0",
465 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
466 )
467 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +0200468 name = "com_github_elazarl_goproxy",
469 importpath = "github.com/elazarl/goproxy",
470 version = "v0.0.0-20180725130230-947c36da3153",
471 sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=",
472 )
473 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200474 name = "com_github_emicklei_go_restful",
475 importpath = "github.com/emicklei/go-restful",
476 version = "v2.9.5+incompatible",
477 sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
478 )
479 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200480 name = "com_github_envoyproxy_protoc_gen_validate",
481 importpath = "github.com/envoyproxy/protoc-gen-validate",
482 version = "v0.3.0-java",
483 sum = "h1:bV5JGEB1ouEzZa0hgVDFFiClrUEuGWRaAc/3mxR2QK0=",
484 )
485 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200486 name = "com_github_ericlagergren_decimal",
487 importpath = "github.com/ericlagergren/decimal",
488 version = "v0.0.0-20181231230500-73749d4874d5",
489 sum = "h1:HQGCJNlqt1dUs/BhtEKmqWd6LWS+DWYVxi9+Jo4r0jE=",
490 )
491 go_repository(
492 name = "com_github_euank_go_kmsg_parser",
493 importpath = "github.com/euank/go-kmsg-parser",
494 version = "v2.0.0+incompatible",
495 sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
496 )
497 go_repository(
498 name = "com_github_evanphx_json_patch",
499 importpath = "github.com/evanphx/json-patch",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200500 version = "v0.0.0-20190815234213-e83c0a1c26c8",
501 sum = "h1:DM7gHzQfHwIj+St8zaPOI6iQEPAxOwIkskvw6s9rDaM=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200502 )
503 go_repository(
504 name = "com_github_exponent_io_jsonpath",
505 importpath = "github.com/exponent-io/jsonpath",
506 version = "v0.0.0-20151013193312-d6023ce2651d",
507 sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
508 )
509 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200510 name = "com_github_farsightsec_golang_framestream",
511 importpath = "github.com/farsightsec/golang-framestream",
512 version = "v0.0.0-20190425193708-fa4b164d59b8",
513 sum = "h1:/iPdQppoAsTfML+yqFSq2EBChiEMnRkh5WvhFgtWwcU=",
514 )
515 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200516 name = "com_github_fatih_camelcase",
517 importpath = "github.com/fatih/camelcase",
518 version = "v1.0.0",
519 sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
520 )
521 go_repository(
522 name = "com_github_fatih_color",
523 importpath = "github.com/fatih/color",
524 version = "v1.7.0",
525 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
526 )
527 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200528 name = "com_github_flynn_go_shlex",
529 importpath = "github.com/flynn/go-shlex",
530 version = "v0.0.0-20150515145356-3f9db97f8568",
531 sum = "h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=",
532 )
533 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200534 name = "com_github_friendsofgo_errors",
535 importpath = "github.com/friendsofgo/errors",
536 version = "v0.9.2",
537 sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
538 )
539 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200540 name = "com_github_fullsailor_pkcs7",
541 importpath = "github.com/fullsailor/pkcs7",
542 version = "v0.0.0-20180613152042-8306686428a5",
543 sum = "h1:v+vxrd9XS8uWIXG2RK0BHCnXc30qLVQXVqbK+IOmpXk=",
544 )
545 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200546 name = "com_github_ghodss_yaml",
547 importpath = "github.com/ghodss/yaml",
548 version = "v1.0.0",
549 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
550 )
551 go_repository(
552 name = "com_github_glerchundi_sqlboiler_crdb_v4",
553 importpath = "github.com/glerchundi/sqlboiler-crdb/v4",
554 version = "v4.0.0-20200507103349-d540ee52783e",
555 sum = "h1:p1FS4Qf4pgi/ntt4XI1n1rM7EAmOQLRmvPYNXtNlxWA=",
556 )
557 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200558 name = "com_github_go_delve_delve",
559 importpath = "github.com/go-delve/delve",
560 version = "v1.4.1",
561 sum = "h1:kZs0umEv+VKnK84kY9/ZXWrakdLTeRTyYjFdgLelZCQ=",
562 )
563 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200564 name = "com_github_go_logr_logr",
565 importpath = "github.com/go-logr/logr",
566 version = "v0.2.0",
567 sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=",
568 )
569 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200570 name = "com_github_go_openapi_analysis",
571 importpath = "github.com/go-openapi/analysis",
572 version = "v0.19.5",
573 sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
574 )
575 go_repository(
576 name = "com_github_go_openapi_errors",
577 importpath = "github.com/go-openapi/errors",
578 version = "v0.19.2",
579 sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
580 )
581 go_repository(
582 name = "com_github_go_openapi_jsonpointer",
583 importpath = "github.com/go-openapi/jsonpointer",
584 version = "v0.19.3",
585 sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
586 )
587 go_repository(
588 name = "com_github_go_openapi_jsonreference",
589 importpath = "github.com/go-openapi/jsonreference",
590 version = "v0.19.3",
591 sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
592 )
593 go_repository(
594 name = "com_github_go_openapi_loads",
595 importpath = "github.com/go-openapi/loads",
596 version = "v0.19.4",
597 sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
598 )
599 go_repository(
600 name = "com_github_go_openapi_runtime",
601 importpath = "github.com/go-openapi/runtime",
602 version = "v0.19.4",
603 sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
604 )
605 go_repository(
606 name = "com_github_go_openapi_spec",
607 importpath = "github.com/go-openapi/spec",
608 version = "v0.19.3",
609 sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
610 )
611 go_repository(
612 name = "com_github_go_openapi_strfmt",
613 importpath = "github.com/go-openapi/strfmt",
614 version = "v0.19.3",
615 sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
616 )
617 go_repository(
618 name = "com_github_go_openapi_swag",
619 importpath = "github.com/go-openapi/swag",
620 version = "v0.19.5",
621 sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
622 )
623 go_repository(
624 name = "com_github_go_openapi_validate",
625 importpath = "github.com/go-openapi/validate",
626 version = "v0.19.5",
627 sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
628 )
629 go_repository(
630 name = "com_github_go_sql_driver_mysql",
631 importpath = "github.com/go-sql-driver/mysql",
632 version = "v1.5.0",
633 sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
634 )
635 go_repository(
636 name = "com_github_go_stack_stack",
637 importpath = "github.com/go-stack/stack",
638 version = "v1.8.0",
639 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
640 )
641 go_repository(
642 name = "com_github_godbus_dbus_v5",
643 importpath = "github.com/godbus/dbus/v5",
644 version = "v5.0.3",
645 sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
646 )
647 go_repository(
648 name = "com_github_gofrs_flock",
649 importpath = "github.com/gofrs/flock",
650 version = "v0.6.1-0.20180915234121-886344bea079",
651 sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
652 )
653 go_repository(
654 name = "com_github_gofrs_uuid",
655 importpath = "github.com/gofrs/uuid",
656 version = "v3.2.0+incompatible",
657 sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
658 )
659 go_repository(
660 name = "com_github_gogo_googleapis",
661 importpath = "github.com/gogo/googleapis",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200662 version = "v1.3.2",
663 sum = "h1:kX1es4djPJrsDhY7aZKJy7aZasdcB5oSOEphMjSB53c=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200664 build_file_proto_mode = "disable",
665 )
666 go_repository(
667 name = "com_github_gogo_protobuf",
668 importpath = "github.com/gogo/protobuf",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200669 version = "v1.3.1",
670 sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200671 )
672 go_repository(
673 name = "com_github_golang_sql_civil",
674 importpath = "github.com/golang-sql/civil",
675 version = "v0.0.0-20190719163853-cb61b32ac6fe",
676 sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
677 )
678 go_repository(
679 name = "com_github_golang_groupcache",
680 importpath = "github.com/golang/groupcache",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200681 version = "v0.0.0-20191227052852-215e87163ea7",
682 sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200683 )
684 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200685 name = "com_github_golang_snappy",
686 importpath = "github.com/golang/snappy",
687 version = "v0.0.1",
688 sum = "h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=",
689 )
690 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200691 name = "com_github_google_btree",
692 importpath = "github.com/google/btree",
693 version = "v1.0.0",
694 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
695 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100696 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200697 name = "com_github_google_cadvisor",
698 importpath = "github.com/google/cadvisor",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200699 version = "v0.36.1-0.20200623171404-8450c56c21bc",
700 sum = "h1:il4pi2iOP5NRkBgnZH3n0GDqSCNEJ/QIRJrCAfU5h38=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100701 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100702 go_repository(
Lorenz Bruna50e8452020-09-09 17:09:27 +0200703 name = "com_github_google_certificate_transparency_go",
704 importpath = "github.com/google/certificate-transparency-go",
705 version = "v1.1.0",
706 sum = "h1:10MlrYzh5wfkToxWI4yJzffsxLfxcEDlOATMx/V9Kzw=",
707 )
708 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200709 name = "com_github_google_go_cmp",
710 importpath = "github.com/google/go-cmp",
711 version = "v0.4.0",
712 sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200713 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200714 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200715 name = "com_github_google_go_dap",
716 importpath = "github.com/google/go-dap",
717 version = "v0.2.0",
718 sum = "h1:whjIGQRumwbR40qRU7CEKuFLmePUUc2s4Nt9DoXXxWk=",
719 )
720 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200721 name = "com_github_google_go_tpm",
722 importpath = "github.com/google/go-tpm",
723 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
724 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200725 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200726 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200727 name = "com_github_google_go_tpm_tools",
728 importpath = "github.com/google/go-tpm-tools",
729 version = "v0.0.0-20190731025042-f8c04ff88181",
730 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100731 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200732 go_repository(
733 name = "com_github_google_gofuzz",
734 importpath = "github.com/google/gofuzz",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200735 version = "v1.1.0",
736 sum = "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200737 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100738 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200739 name = "com_github_google_gopacket",
740 importpath = "github.com/google/gopacket",
741 version = "v1.1.17",
742 sum = "h1:rMrlX2ZY2UbvT+sdz3+6J+pp2z+msCq9MxTU6ymxbBY=",
743 )
744 go_repository(
745 name = "com_github_google_gops",
746 importpath = "github.com/google/gops",
747 version = "v0.3.6",
748 sum = "h1:6akvbMlpZrEYOuoebn2kR+ZJekbZqJ28fJXTs84+8to=",
749 )
750 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200751 name = "com_github_google_gvisor",
752 importpath = "github.com/google/gvisor",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200753 version = "v0.0.0-20200511005220-c52195d25825",
754 sum = "h1:Ryt0ml851mYbHu2ibbtjOCyJCDYdqdhEv5INoPR6Ovs=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200755 patches = [
756 "//third_party/go/patches:gvisor.patch",
757 ],
758 patch_args = ["-p1"],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100759 )
760 go_repository(
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200761 name = "com_github_google_gvisor_containerd_shim",
762 importpath = "github.com/google/gvisor-containerd-shim",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200763 version = "v0.0.4",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200764 sum = "h1:RdBNQHpoQ3ekzfXYIV4+nQJ3a2xLnIHuZJkM40OEtyA=",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200765 patches = [
766 "//third_party/go/patches:gvisor-containerd-shim.patch",
767 "//third_party/go/patches:gvisor-containerd-shim-build.patch",
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200768 "//third_party/go/patches:gvisor-containerd-shim-nogo.patch",
769 "//third_party/go/patches:gvisor-shim-root.patch",
770 ],
771 patch_args = ["-p1"],
772 )
Lorenz Brunc88c82d2020-05-08 14:35:04 +0200773 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +0200774 name = "com_github_google_nftables",
775 importpath = "github.com/google/nftables",
776 version = "v0.0.0-20200316075819-7127d9d22474",
777 sum = "h1:D6bN82zzK92ywYsE+Zjca7EHZCRZbcNTU3At7WdxQ+c=",
778 )
779 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200780 name = "com_github_google_subcommands",
781 importpath = "github.com/google/subcommands",
782 version = "v0.0.0-20190508160503-636abe8753b8",
783 sum = "h1:GZGUPQiZfYrd9uOqyqwbQcHPkz/EZJVkZB1MkaO9UBI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200784 )
785 go_repository(
786 name = "com_github_google_uuid",
787 importpath = "github.com/google/uuid",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200788 version = "v1.1.1",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200789 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100790 )
791 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200792 name = "com_github_googleapis_gnostic",
793 importpath = "github.com/googleapis/gnostic",
794 version = "v0.4.1",
795 sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100796 )
797 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200798 name = "com_github_gorilla_websocket",
799 importpath = "github.com/gorilla/websocket",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200800 version = "v1.4.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200801 sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100802 )
803 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200804 name = "com_github_gregjones_httpcache",
805 importpath = "github.com/gregjones/httpcache",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200806 version = "v0.0.0-20180305231024-9cad4c3443a7",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200807 sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200808 )
809 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200810 name = "com_github_grpc_ecosystem_go_grpc_middleware",
811 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
812 version = "v1.0.1-0.20190118093823-f849b5445de4",
813 sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200814 )
815 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200816 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
817 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
818 version = "v1.2.0",
819 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200820 )
821 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200822 name = "com_github_grpc_ecosystem_grpc_gateway",
823 importpath = "github.com/grpc-ecosystem/grpc-gateway",
824 version = "v1.9.5",
825 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200826 )
827 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200828 name = "com_github_grpc_ecosystem_grpc_opentracing",
829 importpath = "github.com/grpc-ecosystem/grpc-opentracing",
830 version = "v0.0.0-20180507213350-8e809c8a8645",
831 sum = "h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=",
832 )
833 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200834 name = "com_github_grpc_grpc",
835 importpath = "github.com/grpc/grpc",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200836 version = "v1.26.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200837 sum = "h1:0/fjvIF5JHJdr34/JPEk1DJFFonjW37pDLvuAy9YieQ=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200838 )
839 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200840 name = "com_github_hashicorp_consul_api",
841 importpath = "github.com/hashicorp/consul/api",
842 version = "v1.2.0",
843 sum = "h1:oPsuzLp2uk7I7rojPKuncWbZ+m5TMoD4Ivs+2Rkeh4Y=",
844 )
845 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200846 name = "com_github_hashicorp_errwrap",
847 importpath = "github.com/hashicorp/errwrap",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200848 version = "v1.0.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200849 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200850 )
851 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200852 name = "com_github_hashicorp_go_cleanhttp",
853 importpath = "github.com/hashicorp/go-cleanhttp",
854 version = "v0.5.1",
855 sum = "h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=",
856 )
857 go_repository(
858 name = "com_github_hashicorp_go_immutable_radix",
859 importpath = "github.com/hashicorp/go-immutable-radix",
860 version = "v1.1.0",
861 sum = "h1:vN9wG1D6KG6YHRTWr8512cxGOVgTMEfgEdSj/hr8MPc=",
862 )
863 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200864 name = "com_github_hashicorp_go_multierror",
865 importpath = "github.com/hashicorp/go-multierror",
866 version = "v1.0.0",
867 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200868 )
869 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200870 name = "com_github_hashicorp_go_rootcerts",
871 importpath = "github.com/hashicorp/go-rootcerts",
872 version = "v1.0.0",
873 sum = "h1:Rqb66Oo1X/eSV1x66xbDccZjhJigjg0+e82kpwzSwCI=",
874 )
875 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200876 name = "com_github_hashicorp_golang_lru",
877 importpath = "github.com/hashicorp/golang-lru",
878 version = "v0.5.3",
879 sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200880 )
881 go_repository(
882 name = "com_github_hashicorp_hcl",
883 importpath = "github.com/hashicorp/hcl",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200884 version = "v1.0.0",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200885 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200886 )
887 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200888 name = "com_github_hashicorp_serf",
889 importpath = "github.com/hashicorp/serf",
890 version = "v0.8.2",
891 sum = "h1:YZ7UKsJv+hKjqGVUUbtE3HNj79Eln2oQ75tniF6iPt0=",
892 )
893 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +0200894 name = "com_github_hpcloud_tail",
895 importpath = "github.com/hpcloud/tail",
896 version = "v1.0.0",
897 sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
898 )
899 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200900 name = "com_github_imdario_mergo",
901 importpath = "github.com/imdario/mergo",
902 version = "v0.3.7",
903 sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200904 )
905 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200906 name = "com_github_infobloxopen_go_trees",
907 importpath = "github.com/infobloxopen/go-trees",
908 version = "v0.0.0-20190313150506-2af4e13f9062",
909 sum = "h1:d3VSuNcgTCn21dNMm8g412Fck/XWFmMj4nJhhHT7ZZ0=",
910 )
911 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200912 name = "com_github_insomniacslk_dhcp",
913 importpath = "github.com/insomniacslk/dhcp",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200914 version = "v0.0.0-20200402185128-5dd7202f1971",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200915 sum = "h1:P1pxzF2xvdnSY12ODSSwjxA4tyEjDEJNn829OXKnqks=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100916 )
917 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200918 name = "com_github_j_keck_arping",
919 importpath = "github.com/j-keck/arping",
920 version = "v0.0.0-20160618110441-2cf9dc699c56",
921 sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100922 )
923 go_repository(
Lorenz Brun878f5f92020-05-12 16:15:39 +0200924 name = "com_github_joho_godotenv",
925 importpath = "github.com/joho/godotenv",
926 version = "v1.3.0",
927 sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=",
928 )
929 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200930 name = "com_github_jonboulle_clockwork",
931 importpath = "github.com/jonboulle/clockwork",
932 version = "v0.1.0",
933 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200934 )
935 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200936 name = "com_github_json_iterator_go",
937 importpath = "github.com/json-iterator/go",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200938 version = "v1.1.9",
939 sum = "h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200940 )
941 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200942 name = "com_github_kardianos_osext",
943 importpath = "github.com/kardianos/osext",
944 version = "v0.0.0-20170510131534-ae77be60afb1",
945 sum = "h1:PJPDf8OUfOK1bb/NeTKd4f1QXZItOX389VN3B6qC8ro=",
946 )
947 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200948 name = "com_github_karrick_godirwalk",
949 importpath = "github.com/karrick/godirwalk",
950 version = "v1.7.5",
951 sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200952 )
953 go_repository(
954 name = "com_github_kevinburke_go_bindata",
955 importpath = "github.com/kevinburke/go-bindata",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200956 version = "v3.16.0+incompatible",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200957 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
Serge Bazanskibb7db922020-04-30 12:43:10 +0200958 )
959 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +0200960 name = "com_github_koneu_natend",
961 importpath = "github.com/koneu/natend",
962 version = "v0.0.0-20150829182554-ec0926ea948d",
963 sum = "h1:MFX8DxRnKMY/2M3H61iSsVbo/n3h0MWGmWNN1UViOU0=",
964 )
965 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200966 name = "com_github_konsorten_go_windows_terminal_sequences",
967 importpath = "github.com/konsorten/go-windows-terminal-sequences",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200968 version = "v1.0.3",
969 sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200970 )
971 go_repository(
972 name = "com_github_kr_pretty",
973 importpath = "github.com/kr/pretty",
974 version = "v0.2.0",
975 sum = "h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=",
976 )
977 go_repository(
978 name = "com_github_kr_pty",
979 importpath = "github.com/kr/pty",
980 version = "v1.1.1",
981 sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
982 )
983 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200984 name = "com_github_kr_text",
985 importpath = "github.com/kr/text",
986 version = "v0.1.0",
987 sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=",
988 )
989 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200990 name = "com_github_lib_pq",
991 importpath = "github.com/lib/pq",
992 version = "v1.2.1-0.20191011153232-f91d3411e481",
993 sum = "h1:r9fnMM01mkhtfe6QfLrr/90mBVLnJHge2jGeBvApOjk=",
994 )
995 go_repository(
996 name = "com_github_liggitt_tabwriter",
997 importpath = "github.com/liggitt/tabwriter",
998 version = "v0.0.0-20181228230101-89fcab3d43de",
999 sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
1000 )
1001 go_repository(
1002 name = "com_github_lithammer_dedent",
1003 importpath = "github.com/lithammer/dedent",
1004 version = "v1.1.0",
1005 sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001006 )
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001007 go_repository(
1008 name = "com_github_lyft_protoc_gen_star",
1009 importpath = "github.com/lyft/protoc-gen-star",
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001010 version = "v0.4.14",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001011 sum = "h1:HUkD4H4dYFIgu3Bns/3N6J5GmKHCEGnhYBwNu3fvXgA=",
1012 )
1013 go_repository(
1014 name = "com_github_magiconair_properties",
1015 importpath = "github.com/magiconair/properties",
1016 version = "v1.8.0",
1017 sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
1018 )
1019 go_repository(
1020 name = "com_github_mailru_easyjson",
1021 importpath = "github.com/mailru/easyjson",
1022 version = "v0.7.0",
1023 sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
1024 )
1025 go_repository(
1026 name = "com_github_mattn_go_colorable",
1027 importpath = "github.com/mattn/go-colorable",
1028 version = "v0.0.9",
1029 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
1030 )
1031 go_repository(
1032 name = "com_github_mattn_go_isatty",
1033 importpath = "github.com/mattn/go-isatty",
1034 version = "v0.0.4",
1035 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
1036 )
1037 go_repository(
1038 name = "com_github_mattn_go_runewidth",
1039 importpath = "github.com/mattn/go-runewidth",
1040 version = "v0.0.2",
1041 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
1042 )
1043 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001044 name = "com_github_mattn_go_shellwords",
1045 importpath = "github.com/mattn/go-shellwords",
1046 version = "v1.0.5",
1047 sum = "h1:JhhFTIOslh5ZsPrpa3Wdg8bF0WI3b44EMblmU9wIsXc=",
1048 )
1049 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001050 name = "com_github_mattn_go_sqlite3",
1051 importpath = "github.com/mattn/go-sqlite3",
1052 version = "v1.12.0",
1053 sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
1054 )
1055 go_repository(
1056 name = "com_github_matttproud_golang_protobuf_extensions",
1057 importpath = "github.com/matttproud/golang_protobuf_extensions",
1058 version = "v1.0.1",
1059 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
1060 )
1061 go_repository(
1062 name = "com_github_mdlayher_ethernet",
1063 importpath = "github.com/mdlayher/ethernet",
1064 version = "v0.0.0-20190606142754-0394541c37b7",
1065 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
1066 )
1067 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001068 name = "com_github_mdlayher_genetlink",
1069 importpath = "github.com/mdlayher/genetlink",
1070 version = "v1.0.0",
1071 sum = "h1:OoHN1OdyEIkScEmRgxLEe2M9U8ClMytqA5niynLtfj0=",
1072 )
1073 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001074 name = "com_github_mdlayher_netlink",
1075 importpath = "github.com/mdlayher/netlink",
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001076 version = "v1.1.0",
1077 sum = "h1:mpdLgm+brq10nI9zM1BpX1kpDbh3NLl3RSnVq6ZSkfg=",
Lorenz Brun52f7f292020-06-24 16:42:02 +02001078 )
1079 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001080 name = "com_github_mdlayher_raw",
1081 importpath = "github.com/mdlayher/raw",
1082 version = "v0.0.0-20190606142536-fef19f00fc18",
1083 sum = "h1:zwOa3e/13D6veNIz6zzuqrd3eZEMF0dzD0AQWKcYSs4=",
1084 )
1085 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001086 name = "com_github_miekg_dns",
1087 importpath = "github.com/miekg/dns",
1088 version = "v1.1.4-0.20190417235132-8e25ec9a0ff3",
1089 sum = "h1:wenYMyWJ08dgEUUj0Ija8qdK/V9vL3ThAD5sjOYlFlg=",
1090 replace = "github.com/cilium/dns",
1091 )
1092 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001093 name = "com_github_mindprince_gonvml",
1094 importpath = "github.com/mindprince/gonvml",
1095 version = "v0.0.0-20190828220739-9ebdce4bb989",
1096 sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
1097 )
1098 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001099 name = "com_github_mistifyio_go_zfs",
1100 importpath = "github.com/mistifyio/go-zfs",
1101 version = "v2.1.2-0.20190413222219-f784269be439+incompatible",
1102 sum = "h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=",
1103 )
1104 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001105 name = "com_github_mitchellh_cli",
1106 importpath = "github.com/mitchellh/cli",
1107 version = "v1.0.0",
1108 sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
1109 )
1110 go_repository(
1111 name = "com_github_mitchellh_go_wordwrap",
1112 importpath = "github.com/mitchellh/go-wordwrap",
1113 version = "v1.0.0",
1114 sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
1115 )
1116 go_repository(
1117 name = "com_github_mitchellh_mapstructure",
1118 importpath = "github.com/mitchellh/mapstructure",
1119 version = "v1.1.2",
1120 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001121 )
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001122 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001123 name = "com_github_moby_sys_mountinfo",
1124 importpath = "github.com/moby/sys/mountinfo",
1125 version = "v0.1.3",
1126 sum = "h1:KIrhRO14+AkwKvG/g2yIpNMOUVZ02xNhOw8KY1WsLOI=",
1127 )
1128 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001129 name = "com_github_moby_term",
1130 importpath = "github.com/moby/term",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001131 version = "v0.0.0-20200312100748-672ec06f55cd",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001132 sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001133 )
1134 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001135 name = "com_github_modern_go_concurrent",
1136 importpath = "github.com/modern-go/concurrent",
1137 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
1138 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
1139 )
1140 go_repository(
1141 name = "com_github_modern_go_reflect2",
1142 importpath = "github.com/modern-go/reflect2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001143 version = "v1.0.1",
1144 sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001145 )
1146 go_repository(
1147 name = "com_github_morikuni_aec",
1148 importpath = "github.com/morikuni/aec",
1149 version = "v1.0.0",
1150 sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
1151 )
1152 go_repository(
1153 name = "com_github_mrunalp_fileutils",
1154 importpath = "github.com/mrunalp/fileutils",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001155 version = "v0.0.0-20200520151820-abd8a0e76976",
1156 sum = "h1:aZQToFSLH8ejFeSkTc3r3L4dPImcj7Ib/KgmkQqbGGg=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001157 )
1158 go_repository(
1159 name = "com_github_munnerz_goautoneg",
1160 importpath = "github.com/munnerz/goautoneg",
1161 version = "v0.0.0-20191010083416-a7dc8b61c822",
1162 sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
1163 )
1164 go_repository(
1165 name = "com_github_mxk_go_flowrate",
1166 importpath = "github.com/mxk/go-flowrate",
1167 version = "v0.0.0-20140419014527-cca7078d478f",
1168 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
1169 )
1170 go_repository(
1171 name = "com_github_olekukonko_tablewriter",
1172 importpath = "github.com/olekukonko/tablewriter",
1173 version = "v0.0.0-20170122224234-a0225b3f23b5",
1174 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
1175 )
1176 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001177 name = "com_github_onsi_ginkgo",
1178 importpath = "github.com/onsi/ginkgo",
1179 version = "v1.11.0",
1180 sum = "h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw=",
1181 )
1182 go_repository(
1183 name = "com_github_onsi_gomega",
1184 importpath = "github.com/onsi/gomega",
1185 version = "v1.7.0",
1186 sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=",
1187 )
1188 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001189 name = "com_github_opencontainers_go_digest",
1190 importpath = "github.com/opencontainers/go-digest",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001191 version = "v1.0.0",
1192 sum = "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001193 )
1194 go_repository(
1195 name = "com_github_opencontainers_image_spec",
1196 importpath = "github.com/opencontainers/image-spec",
1197 version = "v1.0.1",
1198 sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
1199 )
1200 go_repository(
1201 name = "com_github_opencontainers_runc",
1202 importpath = "github.com/opencontainers/runc",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001203 version = "v1.0.0-rc91",
1204 sum = "h1:Tp8LWs5G8rFpzTsbRjAtQkPVexhCu0bnANE5IfIhJ6g=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001205 )
1206 go_repository(
1207 name = "com_github_opencontainers_runtime-spec",
1208 importpath = "github.com/opencontainers/runtime-spec",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001209 version = "v1.0.3-0.20200520003142-237cc4f519e2",
1210 sum = "h1:9mv9SC7GWmRWE0J/+oD8w3GsN2KYGKtg6uwLN7hfP5E=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001211 )
1212 go_repository(
1213 name = "com_github_opencontainers_selinux",
1214 importpath = "github.com/opencontainers/selinux",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001215 version = "v1.5.1",
1216 sum = "h1:jskKwSMFYqyTrHEuJgQoUlTcId0av64S6EWObrIfn5Y=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001217 build_tags = [
1218 "selinux",
1219 ],
1220 )
1221 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001222 name = "com_github_opentracing_opentracing_go",
1223 importpath = "github.com/opentracing/opentracing-go",
1224 version = "v1.1.0",
1225 sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=",
1226 )
1227 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001228 name = "com_github_optiopay_kafka",
1229 importpath = "github.com/optiopay/kafka",
1230 version = "v0.0.0-20180809090225-01ce283b732b",
1231 sum = "h1:+bsFX/WOMIoaayXVyRem1awcpz3icz/HoL8Dxg/m6a4=",
1232 replace = "github.com/cilium/kafka",
1233 )
1234 go_repository(
1235 name = "com_github_pborman_uuid",
1236 importpath = "github.com/pborman/uuid",
1237 version = "v1.2.0",
1238 sum = "h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=",
1239 )
1240 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001241 name = "com_github_peterbourgon_diskv",
1242 importpath = "github.com/peterbourgon/diskv",
1243 version = "v2.0.1+incompatible",
1244 sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
1245 )
1246 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001247 name = "com_github_peterh_liner",
1248 importpath = "github.com/peterh/liner",
1249 version = "v0.0.0-20170317030525-88609521dc4b",
1250 sum = "h1:8uaXtUkxiy+T/zdLWuxa/PG4so0TPZDZfafFNNSaptE=",
1251 )
1252 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001253 name = "com_github_petermattis_goid",
1254 importpath = "github.com/petermattis/goid",
1255 version = "v0.0.0-20180202154549-b0b1615b78e5",
1256 sum = "h1:q2e307iGHPdTGp0hoxKjt1H5pDo6utceo3dQVK3I5XQ=",
1257 )
1258 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001259 name = "com_github_pkg_errors",
1260 importpath = "github.com/pkg/errors",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001261 version = "v0.9.1",
1262 sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001263 )
1264 go_repository(
1265 name = "com_github_posener_complete",
1266 importpath = "github.com/posener/complete",
1267 version = "v1.1.1",
1268 sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
1269 )
1270 go_repository(
1271 name = "com_github_pquerna_cachecontrol",
1272 importpath = "github.com/pquerna/cachecontrol",
1273 version = "v0.0.0-20171018203845-0dec1b30a021",
1274 sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
1275 )
1276 go_repository(
1277 name = "com_github_prometheus_client_golang",
1278 importpath = "github.com/prometheus/client_golang",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001279 version = "v1.6.0",
1280 sum = "h1:YVPodQOcK15POxhgARIvnDRVpLcuK8mglnMrWfyrw6A=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001281 )
1282 go_repository(
1283 name = "com_github_prometheus_client_model",
1284 importpath = "github.com/prometheus/client_model",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001285 version = "v0.2.0",
1286 sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001287 )
1288 go_repository(
1289 name = "com_github_prometheus_common",
1290 importpath = "github.com/prometheus/common",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001291 version = "v0.9.1",
1292 sum = "h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001293 )
1294 go_repository(
1295 name = "com_github_prometheus_procfs",
1296 importpath = "github.com/prometheus/procfs",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001297 version = "v0.0.11",
1298 sum = "h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001299 )
1300 go_repository(
1301 name = "com_github_rekby_gpt",
1302 importpath = "github.com/rekby/gpt",
1303 version = "v0.0.0-20200219180433-a930afbc6edc",
1304 sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
1305 )
1306 go_repository(
1307 name = "com_github_robfig_cron",
1308 importpath = "github.com/robfig/cron",
1309 version = "v1.1.0",
1310 sum = "h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=",
1311 )
1312 go_repository(
1313 name = "com_github_rubenv_sql_migrate",
1314 importpath = "github.com/rubenv/sql-migrate",
1315 version = "v0.0.0-20200429072036-ae26b214fa43",
1316 sum = "h1:0i6uTtxUGc/jpK/CngM4T2S2NFnqYUUxH+lKDgBLw8U=",
1317 )
1318 go_repository(
1319 name = "com_github_russross_blackfriday",
1320 importpath = "github.com/russross/blackfriday",
1321 version = "v1.5.2",
1322 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
1323 )
1324 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001325 name = "com_github_russross_blackfriday_v2",
1326 importpath = "github.com/russross/blackfriday/v2",
1327 version = "v2.0.1",
1328 sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
1329 )
1330 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001331 name = "com_github_safchain_ethtool",
1332 importpath = "github.com/safchain/ethtool",
1333 version = "v0.0.0-20190326074333-42ed695e3de8",
1334 sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
1335 )
1336 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001337 name = "com_github_sasha_s_go_deadlock",
1338 importpath = "github.com/sasha-s/go-deadlock",
1339 version = "v0.2.1-0.20190427202633-1595213edefa",
1340 sum = "h1:0U2s5loxrTy6/VgfVoLuVLFJcURKLH49ie0zSch7gh4=",
1341 )
1342 go_repository(
Lorenz Brunb682ba52020-07-08 14:51:36 +02001343 name = "com_github_sbezverk_nfproxy",
1344 importpath = "github.com/sbezverk/nfproxy",
1345 version = "v0.0.0-20200514180651-7fac5f39824e",
1346 sum = "h1:fJ2lHQ7ZUjmgJbvVQ509ioBmrGHcbvlwfjUieExw/dU=",
1347 patches = [
1348 "//third_party/go/patches:nfproxy.patch",
1349 ],
1350 patch_args = ["-p1"],
1351 )
1352 go_repository(
1353 name = "com_github_sbezverk_nftableslib",
1354 importpath = "github.com/sbezverk/nftableslib",
1355 version = "v0.0.0-20200402150358-c20bed91f482",
1356 sum = "h1:k7gEZ/EwJhHDTRXFUZQlE4/p1cmoha7zL7PWCDG3ZHQ=",
1357 )
1358 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001359 name = "com_github_seccomp_libseccomp_golang",
1360 importpath = "github.com/seccomp/libseccomp-golang",
1361 version = "v0.9.1",
1362 sum = "h1:NJjM5DNFOs0s3kYE1WUOr6G8V97sdt46rlXTMfXGWBo=",
1363 )
1364 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001365 name = "com_github_servak_go_fastping",
1366 importpath = "github.com/servak/go-fastping",
1367 version = "v0.0.0-20160802140958-5718d12e20a0",
1368 sum = "h1:FFgMDF0otYdRIy7stdzyE6l1mbyw16XtOWXn6NJ8bEU=",
1369 )
1370 go_repository(
1371 name = "com_github_shirou_gopsutil",
1372 importpath = "github.com/shirou/gopsutil",
1373 version = "v0.0.0-20180427012116-c95755e4bcd7",
1374 sum = "h1:80VN+vGkqM773Br/uNNTSheo3KatTgV8IpjIKjvVLng=",
1375 )
1376 go_repository(
1377 name = "com_github_shurcool_sanitized_anchor_name",
1378 importpath = "github.com/shurcooL/sanitized_anchor_name",
1379 version = "v1.0.0",
1380 sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
1381 )
1382 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001383 name = "com_github_sirupsen_logrus",
1384 importpath = "github.com/sirupsen/logrus",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001385 version = "v1.6.0",
1386 sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001387 )
1388 go_repository(
1389 name = "com_github_soheilhy_cmux",
1390 importpath = "github.com/soheilhy/cmux",
1391 version = "v0.1.4",
1392 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
1393 )
1394 go_repository(
1395 name = "com_github_spf13_afero",
1396 importpath = "github.com/spf13/afero",
1397 version = "v1.2.2",
1398 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
1399 )
1400 go_repository(
1401 name = "com_github_spf13_cast",
1402 importpath = "github.com/spf13/cast",
1403 version = "v1.3.1",
1404 sum = "h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=",
1405 )
1406 go_repository(
1407 name = "com_github_spf13_cobra",
1408 importpath = "github.com/spf13/cobra",
Serge Bazanski14cf7502020-05-28 14:29:56 +02001409 version = "v1.0.0",
1410 sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001411 )
1412 go_repository(
1413 name = "com_github_spf13_jwalterweatherman",
1414 importpath = "github.com/spf13/jwalterweatherman",
1415 version = "v1.0.0",
1416 sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
1417 )
1418 go_repository(
1419 name = "com_github_spf13_pflag",
1420 importpath = "github.com/spf13/pflag",
1421 version = "v1.0.5",
1422 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
1423 )
1424 go_repository(
1425 name = "com_github_spf13_viper",
1426 importpath = "github.com/spf13/viper",
1427 version = "v1.6.3",
1428 sum = "h1:pDDu1OyEDTKzpJwdq4TiuLyMsUgRa/BT5cn5O62NoHs=",
1429 )
1430 go_repository(
1431 name = "com_github_stretchr_testify",
1432 importpath = "github.com/stretchr/testify",
1433 version = "v1.4.0",
1434 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
1435 )
1436 go_repository(
1437 name = "com_github_subosito_gotenv",
1438 importpath = "github.com/subosito/gotenv",
1439 version = "v1.2.0",
1440 sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=",
1441 )
1442 go_repository(
1443 name = "com_github_syndtr_gocapability",
1444 importpath = "github.com/syndtr/gocapability",
1445 version = "v0.0.0-20180916011248-d98352740cb2",
1446 sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
1447 )
1448 go_repository(
1449 name = "com_github_tchap_go_patricia",
1450 importpath = "github.com/tchap/go-patricia",
1451 version = "v2.2.6+incompatible",
1452 sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
1453 )
1454 go_repository(
1455 name = "com_github_tmc_grpc_websocket_proxy",
1456 importpath = "github.com/tmc/grpc-websocket-proxy",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001457 version = "v0.0.0-20190109142713-0ad062ec5ee5",
1458 sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001459 )
1460 go_repository(
1461 name = "com_github_u_root_u_root",
1462 importpath = "github.com/u-root/u-root",
1463 version = "v6.0.0+incompatible",
1464 sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
1465 )
1466 go_repository(
1467 name = "com_github_urfave_cli",
1468 importpath = "github.com/urfave/cli",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001469 version = "v1.22.1",
1470 sum = "h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001471 )
1472 go_repository(
1473 name = "com_github_vishvananda_netlink",
1474 importpath = "github.com/vishvananda/netlink",
1475 version = "v1.1.0",
1476 sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
1477 )
1478 go_repository(
1479 name = "com_github_vishvananda_netns",
1480 importpath = "github.com/vishvananda/netns",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001481 version = "v0.0.0-20200520041808-52d707b772fe",
1482 sum = "h1:mjAZxE1nh8yvuwhGHpdDqdhtNu2dgbpk93TwoXuk5so=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001483 )
1484 go_repository(
1485 name = "com_github_volatiletech_inflect",
1486 importpath = "github.com/volatiletech/inflect",
1487 version = "v0.0.1",
1488 sum = "h1:2a6FcMQyhmPZcLa+uet3VJ8gLn/9svWhJxJYwvE8KsU=",
1489 )
1490 go_repository(
1491 name = "com_github_volatiletech_null_v8",
1492 importpath = "github.com/volatiletech/null/v8",
1493 version = "v8.1.0",
1494 sum = "h1:eAO3I31A5R04usY5SKMMfDcOCnEGyT/T4wRI0JVGp4U=",
1495 )
1496 go_repository(
1497 name = "com_github_volatiletech_randomize",
1498 importpath = "github.com/volatiletech/randomize",
1499 version = "v0.0.1",
1500 sum = "h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk=",
1501 )
1502 go_repository(
1503 name = "com_github_volatiletech_sqlboiler_v4",
1504 importpath = "github.com/volatiletech/sqlboiler/v4",
1505 version = "v4.1.1",
1506 sum = "h1:cmpaEri8whb5lRv6q2ycWtmiWd42llsrDaERk2BkWbE=",
1507 )
1508 go_repository(
1509 name = "com_github_volatiletech_strmangle",
1510 importpath = "github.com/volatiletech/strmangle",
1511 version = "v0.0.1",
1512 sum = "h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk=",
1513 )
1514 go_repository(
1515 name = "com_github_xiang90_probing",
1516 importpath = "github.com/xiang90/probing",
1517 version = "v0.0.0-20190116061207-43a291ad63a2",
1518 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
1519 )
1520 go_repository(
1521 name = "com_github_yalue_native_endian",
1522 importpath = "github.com/yalue/native_endian",
1523 version = "v0.0.0-20180607135909-51013b03be4f",
1524 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
1525 )
1526 go_repository(
1527 name = "io_etcd_go_bbolt",
1528 importpath = "go.etcd.io/bbolt",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001529 version = "v1.3.5",
1530 sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001531 )
1532 go_repository(
1533 name = "io_etcd_go_etcd",
1534 importpath = "go.etcd.io/etcd",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001535 version = "v0.5.0-alpha.5.0.20200520232829-54ba9589114f",
1536 sum = "h1:pBCD+Z7cy5WPTq+R6MmJJvDRpn88cp7bmTypBsn91g4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001537 build_file_proto_mode = "disable",
1538 )
1539 go_repository(
1540 name = "org_mongodb_go_mongo_driver",
1541 importpath = "go.mongodb.org/mongo-driver",
1542 version = "v1.1.2",
1543 sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
1544 )
1545 go_repository(
1546 name = "io_opencensus_go",
1547 importpath = "go.opencensus.io",
1548 version = "v0.22.0",
1549 sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
1550 )
1551 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001552 name = "net_starlark_go",
1553 importpath = "go.starlark.net",
1554 version = "v0.0.0-20190702223751-32f345186213",
1555 sum = "h1:lkYv5AKwvvduv5XWP6szk/bvvgO6aDeUujhZQXIFTes=",
1556 )
1557 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001558 name = "org_uber_go_atomic",
1559 importpath = "go.uber.org/atomic",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001560 version = "v1.4.0",
1561 sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001562 )
1563 go_repository(
1564 name = "org_uber_go_multierr",
1565 importpath = "go.uber.org/multierr",
1566 version = "v1.1.0",
1567 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
1568 )
1569 go_repository(
1570 name = "org_uber_go_zap",
1571 importpath = "go.uber.org/zap",
1572 version = "v1.15.0",
1573 sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=",
1574 )
1575 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001576 name = "org_golang_x_arch",
1577 importpath = "golang.org/x/arch",
1578 version = "v0.0.0-20190927153633-4e8777c89be4",
1579 sum = "h1:QlVATYS7JBoZMVaf+cNjb90WD/beKVHnIxFKT4QaHVI=",
1580 )
1581 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001582 name = "org_golang_x_crypto",
1583 importpath = "golang.org/x/crypto",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001584 version = "v0.0.0-20200220183623-bac4c82f6975",
1585 sum = "h1:/Tl7pH94bvbAAHBdZJT947M/+gp0+CqQXDtMRC0fseo=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001586 )
1587 go_repository(
1588 name = "org_golang_x_mod",
1589 importpath = "golang.org/x/mod",
1590 version = "v0.3.0",
1591 sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
1592 )
1593 go_repository(
1594 name = "org_golang_x_net",
1595 importpath = "golang.org/x/net",
1596 version = "v0.0.0-20190311183353-d8887717615a",
1597 sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=",
1598 )
1599 go_repository(
1600 name = "org_golang_x_oauth2",
1601 importpath = "golang.org/x/oauth2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001602 version = "v0.0.0-20191202225959-858c2ad4c8b6",
1603 sum = "h1:pE8b58s1HRDMi8RDc79m0HISf9D4TzseP40cEA6IGfs=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001604 )
1605 go_repository(
1606 name = "org_golang_x_sync",
1607 importpath = "golang.org/x/sync",
1608 version = "v0.0.0-20181108010431-42b317875d0f",
1609 sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
1610 )
1611 go_repository(
1612 name = "org_golang_x_sys",
1613 importpath = "golang.org/x/sys",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001614 version = "v0.0.0-20200327173247-9dae0f8f5775",
1615 sum = "h1:TC0v2RSO1u2kn1ZugjrFXkRZAEaqMN/RW+OTZkBzmLE=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001616 )
1617 go_repository(
1618 name = "org_golang_x_text",
1619 importpath = "golang.org/x/text",
1620 version = "v0.3.0",
1621 sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
1622 )
1623 go_repository(
1624 name = "org_golang_x_time",
1625 importpath = "golang.org/x/time",
1626 version = "v0.0.0-20191024005414-555d28b269f0",
1627 sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
1628 )
1629 go_repository(
1630 name = "org_golang_x_xerrors",
1631 importpath = "golang.org/x/xerrors",
1632 version = "v0.0.0-20191204190536-9bdfabe68543",
1633 sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
1634 )
1635 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001636 name = "com_zx2c4_golang_wireguard_wgctrl",
1637 importpath = "golang.zx2c4.com/wireguard/wgctrl",
1638 version = "v0.0.0-20200515170644-ec7f26be9d9e",
1639 sum = "h1:fqDhK9OlzaaiFjnyaAfR9Q1RPKCK7OCTLlHGP9f74Nk=",
1640 )
1641 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001642 name = "org_gonum_v1_gonum",
1643 importpath = "gonum.org/v1/gonum",
1644 version = "v0.6.2",
1645 sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
1646 )
1647 go_repository(
1648 name = "org_golang_google_genproto",
1649 importpath = "google.golang.org/genproto",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001650 version = "v0.0.0-20200224152610-e50cd9704f63",
1651 sum = "h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001652 )
1653 go_repository(
1654 name = "org_golang_google_grpc",
1655 importpath = "google.golang.org/grpc",
1656 version = "v1.26.0",
1657 sum = "h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg=",
1658 )
1659 go_repository(
1660 name = "in_gopkg_djherbis_times_v1",
1661 importpath = "gopkg.in/djherbis/times.v1",
1662 version = "v1.2.0",
1663 sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
1664 )
1665 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001666 name = "in_gopkg_fsnotify_v1",
1667 importpath = "gopkg.in/fsnotify.v1",
1668 version = "v1.4.7",
1669 sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
1670 )
1671 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001672 name = "in_gopkg_gorp_v1",
1673 importpath = "gopkg.in/gorp.v1",
1674 version = "v1.7.2",
1675 sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
1676 )
1677 go_repository(
1678 name = "in_gopkg_inf_v0",
1679 importpath = "gopkg.in/inf.v0",
1680 version = "v0.9.1",
1681 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
1682 )
1683 go_repository(
1684 name = "in_gopkg_ini_v1",
1685 importpath = "gopkg.in/ini.v1",
1686 version = "v1.51.0",
1687 sum = "h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=",
1688 )
1689 go_repository(
1690 name = "in_gopkg_natefinch_lumberjack_v2",
1691 importpath = "gopkg.in/natefinch/lumberjack.v2",
1692 version = "v2.0.0",
1693 sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
1694 )
1695 go_repository(
1696 name = "in_gopkg_square_go_jose_v2",
1697 importpath = "gopkg.in/square/go-jose.v2",
1698 version = "v2.2.2",
1699 sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
1700 )
1701 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001702 name = "in_gopkg_tomb_v1",
1703 importpath = "gopkg.in/tomb.v1",
1704 version = "v1.0.0-20141024135613-dd632973f1e7",
1705 sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
1706 )
1707 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001708 name = "in_gopkg_yaml_v2",
1709 importpath = "gopkg.in/yaml.v2",
1710 version = "v2.2.8",
1711 sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
1712 )
1713 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001714 name = "io_k8s_api",
1715 importpath = "k8s.io/api",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001716 version = "v0.19.0-rc.0",
1717 sum = "h1:K+xi+F3RNAxpFyS1f7uHekMNprjFX7WVZDx2lJE+A3A=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001718 build_file_proto_mode = "disable",
1719 )
1720 go_repository(
1721 name = "io_k8s_apiextensions_apiserver",
1722 importpath = "k8s.io/apiextensions-apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001723 version = "v0.19.0-rc.0",
1724 sum = "h1:XGNmUwNvh5gt6sYwCzaxLU6Dr461DVKWlGiaCSKZzyw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001725 build_file_proto_mode = "disable",
1726 )
1727 go_repository(
1728 name = "io_k8s_apimachinery",
1729 importpath = "k8s.io/apimachinery",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001730 version = "v0.20.0-alpha.0",
1731 sum = "h1:XCZhrYfFYSC8GBpI4OUJFTH1s5euLMYdoIDQ7u2aDPM=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001732 build_file_proto_mode = "disable",
1733 )
1734 go_repository(
1735 name = "io_k8s_apiserver",
1736 importpath = "k8s.io/apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001737 version = "v0.19.0-rc.0",
1738 sum = "h1:SaF/gMgUeDPbQDKHTMvB2yynBUZpp6s4HYQIOx/LdDQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001739 build_file_proto_mode = "disable",
1740 )
1741 go_repository(
1742 name = "io_k8s_cli_runtime",
1743 importpath = "k8s.io/cli-runtime",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001744 version = "v0.19.0-rc.0",
1745 sum = "h1:amuzfqubksp5ooo99cpiu6hYe6ua1bGEqw59vZKyRqA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001746 )
1747 go_repository(
1748 name = "io_k8s_client_go",
1749 importpath = "k8s.io/client-go",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001750 version = "v0.19.0-rc.0",
1751 sum = "h1:6WW8MElhoLeYcLiN4ky1159XG5E39KYdmLCrV/6lNiE=",
Lorenz Bruned0503c2020-07-28 17:21:25 +02001752 pre_patches = [
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001753 "//third_party/go/patches:k8s-client-go.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001754 ],
1755 patch_args = ["-p1"],
1756 )
1757 go_repository(
1758 name = "io_k8s_cloud_provider",
1759 importpath = "k8s.io/cloud-provider",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001760 version = "v0.19.0-rc.0",
1761 sum = "h1:W1YV1XhdklzoGFZcYmzJnm3D4O6uWaoEAFRF1X4h7uw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001762 )
1763 go_repository(
1764 name = "io_k8s_cluster_bootstrap",
1765 importpath = "k8s.io/cluster-bootstrap",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001766 version = "v0.19.0-rc.0",
1767 sum = "h1:2OCD/1YLoWlBisd7MPfPM35ZXFct/eA94TkRs/uAuhg=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001768 )
1769 go_repository(
1770 name = "io_k8s_component_base",
1771 importpath = "k8s.io/component-base",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001772 version = "v0.19.0-rc.0",
1773 sum = "h1:S/jt6xey1Wg5i5A9/BCkPYekpjJ5zlfuSCCVlNSJ/Yc=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001774 )
1775 go_repository(
1776 name = "io_k8s_cri_api",
1777 importpath = "k8s.io/cri-api",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001778 version = "v0.19.0-rc.0",
1779 sum = "h1:vXd1YUBZcQkkDb2jYdtaCm+XFA2euMVGVU08EKsN40k=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001780 build_file_proto_mode = "disable",
1781 )
1782 go_repository(
1783 name = "io_k8s_csi_translation_lib",
1784 importpath = "k8s.io/csi-translation-lib",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001785 version = "v0.19.0-rc.0",
1786 sum = "h1:2xvrVxnNKtbhilsj/gcD60P9r2PGT+zAEhBWNynySgk=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001787 )
1788 go_repository(
1789 name = "io_k8s_gengo",
1790 importpath = "k8s.io/gengo",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001791 version = "v0.0.0-20200428234225-8167cfdcfc14",
1792 sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001793 )
1794 go_repository(
1795 name = "io_k8s_heapster",
1796 importpath = "k8s.io/heapster",
1797 version = "v1.2.0-beta.1",
1798 sum = "h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=",
1799 )
1800 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001801 name = "io_k8s_klog_v2",
1802 importpath = "k8s.io/klog/v2",
1803 version = "v2.2.0",
1804 sum = "h1:XRvcwJozkgZ1UQJmfMGpvRthQHOvihEhYtDfAaxMz/A=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001805 )
1806 go_repository(
1807 name = "io_k8s_kube_aggregator",
1808 importpath = "k8s.io/kube-aggregator",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001809 version = "v0.19.0-rc.0",
1810 sum = "h1:+u9y1c0R2GF8fuaEnlJrdUtxoEmQOON98oatycSquOA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001811 build_file_proto_mode = "disable",
1812 )
1813 go_repository(
1814 name = "io_k8s_kube_controller_manager",
1815 importpath = "k8s.io/kube-controller-manager",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001816 version = "v0.19.0-rc.0",
1817 sum = "h1:b78T0fHLtRqOEe/70UzdTI0mN2hOph/krz9B5yI/DN4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001818 )
1819 go_repository(
1820 name = "io_k8s_kube_openapi",
1821 importpath = "k8s.io/kube-openapi",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001822 version = "v0.0.0-20200427153329-656914f816f9",
1823 sum = "h1:5NC2ITmvg8RoxoH0wgmL4zn4VZqXGsKbxrikjaQx6s4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001824 )
1825 go_repository(
1826 name = "io_k8s_kube_proxy",
1827 importpath = "k8s.io/kube-proxy",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001828 version = "v0.19.0-rc.0",
1829 sum = "h1:eYzuS4rtUGH8Nglk40WIWSNQyMSTj8pKcGB14BKVhHg=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001830 )
1831 go_repository(
1832 name = "io_k8s_kube_scheduler",
1833 importpath = "k8s.io/kube-scheduler",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001834 version = "v0.19.0-rc.0",
1835 sum = "h1:KiKDepusDaex8fJj2R0F1y2zNj/oPaCzziC7JiuU09o=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001836 )
1837 go_repository(
1838 name = "io_k8s_kubectl",
1839 importpath = "k8s.io/kubectl",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001840 version = "v0.19.0-rc.0",
1841 sum = "h1:JcCGByIwsglw1eQKUpTfYuxSjvQ5NUQTyxoGp1P/Bx4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001842 )
1843 go_repository(
1844 name = "io_k8s_kubelet",
1845 importpath = "k8s.io/kubelet",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001846 version = "v0.19.0-rc.0",
1847 sum = "h1:Eii9aWFKr4MtrRSlhxnaLkGZ0WkSb2p6sPyDuMul/Tc=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001848 build_file_proto_mode = "disable",
1849 )
1850 go_repository(
1851 name = "io_k8s_kubernetes",
1852 importpath = "k8s.io/kubernetes",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001853 version = "v1.19.0-rc.0",
1854 sum = "h1:vKA6/0biZ/LJUPuWWzn1lfqIQrjfuJBVAtHn7AYScTs=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001855 build_file_proto_mode = "disable",
1856 build_tags = [
1857 "providerless",
1858 ],
1859 patches = [
1860 "//third_party/go/patches:k8s-kubernetes.patch",
1861 "//third_party/go/patches:k8s-kubernetes-build.patch",
Lorenz Brun878f5f92020-05-12 16:15:39 +02001862 "//third_party/go/patches:k8s-native-metrics.patch",
1863 "//third_party/go/patches:k8s-use-native.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001864 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001865 pre_patches = [
1866 "//third_party/go/patches:k8s-e2e-tests-providerless.patch",
1867 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001868 patch_args = ["-p1"],
1869 )
1870 go_repository(
1871 name = "io_k8s_legacy_cloud_providers",
1872 importpath = "k8s.io/legacy-cloud-providers",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001873 version = "v0.19.0-rc.0",
1874 sum = "h1:cyf6e9AnQL/ATzZHXDqdwlD+lmRhtKCYPcfeFqb8wn0=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001875 )
1876 go_repository(
1877 name = "io_k8s_metrics",
1878 importpath = "k8s.io/metrics",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001879 version = "v0.19.0-rc.0",
1880 sum = "h1:hPBuMVgXakpnLBLe0K9SZxF8T7mH9VaNTY/pKsU/958=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001881 build_file_proto_mode = "disable",
1882 )
1883 go_repository(
1884 name = "io_k8s_repo_infra",
1885 importpath = "k8s.io/repo-infra",
1886 version = "v0.0.0-20190329054012-df02ded38f95",
1887 sum = "h1:PQyAIB6SRdV0a3Vj/VA39L1uANW36k/zg3tOk/Ffh3U=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001888 )
1889 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001890 name = "io_k8s_sample_apiserver",
1891 importpath = "k8s.io/sample-apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001892 version = "v0.19.0-rc.0",
1893 sum = "h1:ZsO1AWW9k79zA+tU1nu7nGMGT7XidiA1jDrfBvMZmzg=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001894 )
1895 go_repository(
1896 name = "io_k8s_utils",
1897 importpath = "k8s.io/utils",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001898 version = "v0.0.0-20200619165400-6e3d28b6ed19",
1899 sum = "h1:7Nu2dTj82c6IaWvL7hImJzcXoTPz1MsSCH7r+0m6rfo=",
Lorenz Brun878f5f92020-05-12 16:15:39 +02001900 patches = [
1901 "//third_party/go/patches:k8s-native-mounter.patch",
1902 ],
1903 patch_args = ["-p1"],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001904 )
1905 go_repository(
1906 name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
1907 importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001908 version = "v0.0.9",
1909 sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001910 )
1911 go_repository(
1912 name = "io_k8s_sigs_kustomize",
1913 importpath = "sigs.k8s.io/kustomize",
1914 version = "v2.0.3+incompatible",
1915 sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
1916 )
1917 go_repository(
1918 name = "io_k8s_sigs_structured_merge_diff_v3",
1919 importpath = "sigs.k8s.io/structured-merge-diff/v3",
1920 version = "v3.0.0",
1921 sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
1922 )
1923 go_repository(
1924 name = "io_k8s_sigs_yaml",
1925 importpath = "sigs.k8s.io/yaml",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001926 version = "v1.2.0",
1927 sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001928 )
1929 go_repository(
1930 name = "ml_vbom_util",
1931 importpath = "vbom.ml/util",
1932 version = "v0.0.0-20160121211510-db5cfe13f5cc",
1933 sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001934 )