blob: 92fd615e75461c059cfa3453bf4130ace38796a1 [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 Bazanskif12bedf2021-01-15 16:58:50 +010025 build_extra_args = [
26 "-go_naming_convention=go_default_library",
27 "-go_naming_convention_external=go_default_library",
28 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020029 )
30 go_repository(
31 name = "com_github_azure_go_ansiterm",
32 importpath = "github.com/Azure/go-ansiterm",
33 version = "v0.0.0-20170929234023-d6e3b3328b78",
34 sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010035 build_extra_args = [
36 "-go_naming_convention=go_default_library",
37 "-go_naming_convention_external=go_default_library",
38 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020039 )
40 go_repository(
41 name = "com_github_burntsushi_toml",
42 importpath = "github.com/BurntSushi/toml",
43 version = "v0.3.1",
44 sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010045 build_extra_args = [
46 "-go_naming_convention=go_default_library",
47 "-go_naming_convention_external=go_default_library",
48 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020049 )
50 go_repository(
51 name = "com_github_makenowjust_heredoc",
52 importpath = "github.com/MakeNowJust/heredoc",
53 version = "v0.0.0-20170808103936-bb23615498cd",
54 sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010055 build_extra_args = [
56 "-go_naming_convention=go_default_library",
57 "-go_naming_convention_external=go_default_library",
58 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020059 )
60 go_repository(
61 name = "com_github_microsoft_go_winio",
62 importpath = "github.com/Microsoft/go-winio",
63 version = "v0.4.14",
64 sum = "h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010065 build_extra_args = [
66 "-go_naming_convention=go_default_library",
67 "-go_naming_convention_external=go_default_library",
68 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020069 )
70 go_repository(
71 name = "com_github_microsoft_hcsshim",
72 importpath = "github.com/Microsoft/hcsshim",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010073 version = "v0.8.10",
74 sum = "h1:k5wTrpnVU2/xv8ZuzGkbXVd3js5zJ8RnumPo5RxiIxU=",
Serge Bazanskibb7db922020-04-30 12:43:10 +020075 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010076 build_extra_args = [
77 "-go_naming_convention=go_default_library",
78 "-go_naming_convention_external=go_default_library",
79 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020080 )
81 go_repository(
82 name = "com_github_nytimes_gziphandler",
83 importpath = "github.com/NYTimes/gziphandler",
84 version = "v0.0.0-20170623195520-56545f4a5d46",
85 sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010086 build_extra_args = [
87 "-go_naming_convention=go_default_library",
88 "-go_naming_convention_external=go_default_library",
89 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +020090 )
91 go_repository(
92 name = "com_github_puerkitobio_purell",
93 importpath = "github.com/PuerkitoBio/purell",
94 version = "v1.1.1",
95 sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010096 build_extra_args = [
97 "-go_naming_convention=go_default_library",
98 "-go_naming_convention_external=go_default_library",
99 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200100 )
101 go_repository(
102 name = "com_github_puerkitobio_urlesc",
103 importpath = "github.com/PuerkitoBio/urlesc",
104 version = "v0.0.0-20170810143723-de5bf2ad4578",
105 sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100106 build_extra_args = [
107 "-go_naming_convention=go_default_library",
108 "-go_naming_convention_external=go_default_library",
109 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200110 )
111 go_repository(
112 name = "com_github_alexflint_go_filemutex",
113 importpath = "github.com/alexflint/go-filemutex",
114 version = "v0.0.0-20171022225611-72bdc8eae2ae",
115 sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100116 build_extra_args = [
117 "-go_naming_convention=go_default_library",
118 "-go_naming_convention_external=go_default_library",
119 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200120 )
121 go_repository(
122 name = "com_github_armon_circbuf",
123 importpath = "github.com/armon/circbuf",
124 version = "v0.0.0-20150827004946-bbbad097214e",
125 sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100126 build_extra_args = [
127 "-go_naming_convention=go_default_library",
128 "-go_naming_convention_external=go_default_library",
129 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200130 )
131 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200132 name = "com_github_asaskevich_govalidator",
133 importpath = "github.com/asaskevich/govalidator",
134 version = "v0.0.0-20190424111038-f61b66f89f4a",
135 sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100136 build_extra_args = [
137 "-go_naming_convention=go_default_library",
138 "-go_naming_convention_external=go_default_library",
139 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200140 )
141 go_repository(
142 name = "com_github_beorn7_perks",
143 importpath = "github.com/beorn7/perks",
144 version = "v1.0.1",
145 sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100146 build_extra_args = [
147 "-go_naming_convention=go_default_library",
148 "-go_naming_convention_external=go_default_library",
149 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200150 )
151 go_repository(
152 name = "com_github_bgentry_speakeasy",
153 importpath = "github.com/bgentry/speakeasy",
154 version = "v0.1.0",
155 sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100156 build_extra_args = [
157 "-go_naming_convention=go_default_library",
158 "-go_naming_convention_external=go_default_library",
159 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200160 )
161 go_repository(
162 name = "com_github_blang_semver",
163 importpath = "github.com/blang/semver",
164 version = "v3.5.0+incompatible",
165 sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100166 build_extra_args = [
167 "-go_naming_convention=go_default_library",
168 "-go_naming_convention_external=go_default_library",
169 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200170 )
171 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200172 name = "com_github_caddyserver_caddy",
173 importpath = "github.com/caddyserver/caddy",
174 version = "v1.0.5",
175 sum = "h1:5B1Hs0UF2x2tggr2X9jL2qOZtDXbIWQb9YLbmlxHSuM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100176 build_extra_args = [
177 "-go_naming_convention=go_default_library",
178 "-go_naming_convention_external=go_default_library",
179 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200180 )
181 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200182 name = "com_github_cenkalti_backoff",
183 importpath = "github.com/cenkalti/backoff",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100184 version = "v1.1.1-0.20190506075156-2146c9339422",
185 sum = "h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=",
186 build_extra_args = [
187 "-go_naming_convention=go_default_library",
188 "-go_naming_convention_external=go_default_library",
189 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200190 )
191 go_repository(
192 name = "com_github_cenkalti_backoff_v4",
193 importpath = "github.com/cenkalti/backoff/v4",
194 version = "v4.0.2",
195 sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100196 build_extra_args = [
197 "-go_naming_convention=go_default_library",
198 "-go_naming_convention_external=go_default_library",
199 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200200 )
201 go_repository(
202 name = "com_github_cespare_xxhash_v2",
203 importpath = "github.com/cespare/xxhash/v2",
204 version = "v2.1.1",
205 sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100206 build_extra_args = [
207 "-go_naming_convention=go_default_library",
208 "-go_naming_convention_external=go_default_library",
209 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200210 )
211 go_repository(
212 name = "com_github_chai2010_gettext_go",
213 importpath = "github.com/chai2010/gettext-go",
214 version = "v0.0.0-20160711120539-c6fed771bfd5",
215 sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100216 build_extra_args = [
217 "-go_naming_convention=go_default_library",
218 "-go_naming_convention_external=go_default_library",
219 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200220 )
221 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200222 name = "com_github_checkpoint_restore_go_criu_v4",
223 importpath = "github.com/checkpoint-restore/go-criu/v4",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100224 version = "v4.1.0",
225 sum = "h1:WW2B2uxx9KWF6bGlHqhm8Okiafwwx7Y2kcpn8lCpjgo=",
226 build_extra_args = [
227 "-go_naming_convention=go_default_library",
228 "-go_naming_convention_external=go_default_library",
229 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200230 )
231 go_repository(
232 name = "com_github_cilium_ebpf",
233 importpath = "github.com/cilium/ebpf",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200234 version = "v0.0.0-20200702112145-1c8d4c9ef775",
235 sum = "h1:cHzBGGVew0ezFsq2grfy2RsB8hO/eNyBgOLHBCqfR1U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100236 build_extra_args = [
237 "-go_naming_convention=go_default_library",
238 "-go_naming_convention_external=go_default_library",
239 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200240 )
241 go_repository(
242 name = "com_github_container_storage_interface_spec",
243 importpath = "github.com/container-storage-interface/spec",
244 version = "v1.2.0",
245 sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100246 build_extra_args = [
247 "-go_naming_convention=go_default_library",
248 "-go_naming_convention_external=go_default_library",
249 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200250 )
251 go_repository(
252 name = "com_github_containerd_btrfs",
253 importpath = "github.com/containerd/btrfs",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100254 version = "v0.0.0-20201111183144-404b9149801e",
255 sum = "h1:chFw/cg0TDyK43qm8DKbblny2WHc4ML+j1KOkdEp9pI=",
256 build_extra_args = [
257 "-go_naming_convention=go_default_library",
258 "-go_naming_convention_external=go_default_library",
259 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200260 )
261 go_repository(
262 name = "com_github_containerd_cgroups",
263 importpath = "github.com/containerd/cgroups",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200264 version = "v0.0.0-20200710171044-318312a37340",
265 sum = "h1:9atoWyI9RtXFwf7UDbme/6M8Ud0rFrx+Q3ZWgSnsxtw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200266 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100267 build_extra_args = [
268 "-go_naming_convention=go_default_library",
269 "-go_naming_convention_external=go_default_library",
270 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200271 )
272 go_repository(
273 name = "com_github_containerd_console",
274 importpath = "github.com/containerd/console",
275 version = "v1.0.0",
276 sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100277 build_extra_args = [
278 "-go_naming_convention=go_default_library",
279 "-go_naming_convention_external=go_default_library",
280 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200281 )
282 go_repository(
283 name = "com_github_containerd_containerd",
284 importpath = "github.com/containerd/containerd",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100285 version = "v1.4.3",
286 sum = "h1:ijQT13JedHSHrQGWFcGEwzcNKrAGIiZ+jSD5QQG07SY=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200287 build_file_proto_mode = "disable",
288 build_tags = [
289 "no_zfs",
290 "no_aufs",
291 "no_devicemapper",
292 "no_btrfs",
293 ],
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100294 build_extra_args = [
295 "-go_naming_convention=go_default_library",
296 "-go_naming_convention_external=go_default_library",
297 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200298 )
299 go_repository(
300 name = "com_github_containerd_continuity",
301 importpath = "github.com/containerd/continuity",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100302 version = "v0.0.0-20200710164510-efbc4488d8fe",
303 sum = "h1:PEmIrUvwG9Yyv+0WKZqjXfSFDeZjs/q15g0m08BYS9k=",
304 build_extra_args = [
305 "-go_naming_convention=go_default_library",
306 "-go_naming_convention_external=go_default_library",
307 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200308 )
309 go_repository(
310 name = "com_github_containerd_cri",
311 importpath = "github.com/containerd/cri",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100312 version = "v1.19.1-0.20201126003523-adc0b6a578ed",
313 sum = "h1:M2yIwrNSafh4rW/yXAiAlSqpydW7vjvDjZ0ClMb+EMQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200314 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100315 build_extra_args = [
316 "-go_naming_convention=go_default_library",
317 "-go_naming_convention_external=go_default_library",
318 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200319 )
320 go_repository(
321 name = "com_github_containerd_fifo",
322 importpath = "github.com/containerd/fifo",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200323 version = "v0.0.0-20200410184934-f15a3290365b",
324 sum = "h1:qUtCegLdOUVfVJOw+KDg6eJyE1TGvLlkGEd1091kSSQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100325 build_extra_args = [
326 "-go_naming_convention=go_default_library",
327 "-go_naming_convention_external=go_default_library",
328 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200329 )
330 go_repository(
331 name = "com_github_containerd_go_cni",
332 importpath = "github.com/containerd/go-cni",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100333 version = "v1.0.1",
334 sum = "h1:VXr2EkOPD0v1gu7CKfof6XzEIDzsE/dI9yj/W7PSWLs=",
335 build_extra_args = [
336 "-go_naming_convention=go_default_library",
337 "-go_naming_convention_external=go_default_library",
338 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200339 )
340 go_repository(
341 name = "com_github_containerd_go_runc",
342 importpath = "github.com/containerd/go-runc",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200343 version = "v0.0.0-20200220073739-7016d3ce2328",
344 sum = "h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100345 build_extra_args = [
346 "-go_naming_convention=go_default_library",
347 "-go_naming_convention_external=go_default_library",
348 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200349 )
350 go_repository(
351 name = "com_github_containerd_imgcrypt",
352 importpath = "github.com/containerd/imgcrypt",
353 version = "v1.0.1",
354 sum = "h1:IyI3IIP4m6zrNFuNFT7HizGVcuD6BYJFpdM1JvPKCbQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100355 build_extra_args = [
356 "-go_naming_convention=go_default_library",
357 "-go_naming_convention_external=go_default_library",
358 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200359 )
360 go_repository(
361 name = "com_github_containerd_ttrpc",
362 importpath = "github.com/containerd/ttrpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100363 version = "v1.0.2-0.20210119122237-222b428f008e",
364 sum = "h1:+Fbjfo26pg4HtkAw9sC/YhUwaAb16355o/J/oHkyCDc=",
365 replace = "github.com/monogon-dev/ttrpc",
366 build_extra_args = [
367 "-go_naming_convention=go_default_library",
368 "-go_naming_convention_external=go_default_library",
369 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200370 )
371 go_repository(
372 name = "com_github_containerd_typeurl",
373 importpath = "github.com/containerd/typeurl",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200374 version = "v1.0.1",
375 sum = "h1:PvuK4E3D5S5q6IqsPDCy928FhP0LUIGcmZ/Yhgp5Djw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100376 build_extra_args = [
377 "-go_naming_convention=go_default_library",
378 "-go_naming_convention_external=go_default_library",
379 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200380 )
381 go_repository(
382 name = "com_github_containernetworking_cni",
383 importpath = "github.com/containernetworking/cni",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100384 version = "v0.8.0",
385 sum = "h1:BT9lpgGoH4jw3lFC7Odz2prU5ruiYKcgAjMCbgybcKI=",
386 build_extra_args = [
387 "-go_naming_convention=go_default_library",
388 "-go_naming_convention_external=go_default_library",
389 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200390 )
391 go_repository(
392 name = "com_github_containernetworking_plugins",
393 importpath = "github.com/containernetworking/plugins",
394 version = "v0.8.2",
395 sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100396 build_extra_args = [
397 "-go_naming_convention=go_default_library",
398 "-go_naming_convention_external=go_default_library",
399 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100400 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200401 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200402 name = "com_github_containers_ocicrypt",
403 importpath = "github.com/containers/ocicrypt",
404 version = "v1.0.1",
405 sum = "h1:EToign46OSLTFWnb2oNj9RG3XDnkOX8r28ZIXUuk5Pc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100406 build_extra_args = [
407 "-go_naming_convention=go_default_library",
408 "-go_naming_convention_external=go_default_library",
409 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200410 )
411 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200412 name = "com_github_coredns_coredns",
413 importpath = "github.com/coredns/coredns",
414 version = "v1.7.0",
415 sum = "h1:Tm2ZSdhTk+4okgjUp4K6KYzvBI2u34cdD4fKQRC4Eeo=",
416 pre_patches = [
417 "//third_party/go/patches:coredns-remove-unused-plugins.patch",
418 ],
419 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100420 build_extra_args = [
421 "-go_naming_convention=go_default_library",
422 "-go_naming_convention_external=go_default_library",
423 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200424 )
425 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200426 name = "com_github_coreos_go_iptables",
427 importpath = "github.com/coreos/go-iptables",
428 version = "v0.4.2",
429 sum = "h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100430 build_extra_args = [
431 "-go_naming_convention=go_default_library",
432 "-go_naming_convention_external=go_default_library",
433 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200434 )
435 go_repository(
436 name = "com_github_coreos_go_oidc",
437 importpath = "github.com/coreos/go-oidc",
438 version = "v2.1.0+incompatible",
439 sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100440 build_extra_args = [
441 "-go_naming_convention=go_default_library",
442 "-go_naming_convention_external=go_default_library",
443 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200444 )
445 go_repository(
446 name = "com_github_coreos_go_semver",
447 importpath = "github.com/coreos/go-semver",
448 version = "v0.3.0",
449 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100450 build_extra_args = [
451 "-go_naming_convention=go_default_library",
452 "-go_naming_convention_external=go_default_library",
453 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200454 )
455 go_repository(
456 name = "com_github_coreos_go_systemd",
457 importpath = "github.com/coreos/go-systemd",
458 version = "v0.0.0-20190321100706-95778dfbb74e",
459 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100460 build_extra_args = [
461 "-go_naming_convention=go_default_library",
462 "-go_naming_convention_external=go_default_library",
463 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200464 )
465 go_repository(
466 name = "com_github_coreos_go_systemd_v22",
467 importpath = "github.com/coreos/go-systemd/v22",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100468 version = "v22.1.0",
469 sum = "h1:kq/SbG2BCKLkDKkjQf5OWwKWUKj1lgs3lFI4PxnR5lg=",
470 build_extra_args = [
471 "-go_naming_convention=go_default_library",
472 "-go_naming_convention_external=go_default_library",
473 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200474 )
475 go_repository(
476 name = "com_github_coreos_pkg",
477 importpath = "github.com/coreos/pkg",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200478 version = "v0.0.0-20180928190104-399ea9e2e55f",
479 sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100480 build_extra_args = [
481 "-go_naming_convention=go_default_library",
482 "-go_naming_convention_external=go_default_library",
483 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200484 )
485 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200486 name = "com_github_cosiner_argv",
487 importpath = "github.com/cosiner/argv",
488 version = "v0.0.0-20170225145430-13bacc38a0a5",
489 sum = "h1:rIXlvz2IWiupMFlC45cZCXZFvKX/ExBcSLrDy2G0Lp8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100490 build_extra_args = [
491 "-go_naming_convention=go_default_library",
492 "-go_naming_convention_external=go_default_library",
493 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200494 )
495 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200496 name = "com_github_cpuguy83_go_md2man_v2",
497 importpath = "github.com/cpuguy83/go-md2man/v2",
498 version = "v2.0.0",
499 sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100500 build_extra_args = [
501 "-go_naming_convention=go_default_library",
502 "-go_naming_convention_external=go_default_library",
503 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +0200504 )
505 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200506 name = "com_github_cyphar_filepath_securejoin",
507 importpath = "github.com/cyphar/filepath-securejoin",
508 version = "v0.2.2",
509 sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100510 build_extra_args = [
511 "-go_naming_convention=go_default_library",
512 "-go_naming_convention_external=go_default_library",
513 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200514 )
515 go_repository(
516 name = "com_github_davecgh_go_spew",
517 importpath = "github.com/davecgh/go-spew",
518 version = "v1.1.1",
519 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100520 build_extra_args = [
521 "-go_naming_convention=go_default_library",
522 "-go_naming_convention_external=go_default_library",
523 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200524 )
525 go_repository(
526 name = "com_github_daviddengcn_go_colortext",
527 importpath = "github.com/daviddengcn/go-colortext",
528 version = "v0.0.0-20160507010035-511bcaf42ccd",
529 sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100530 build_extra_args = [
531 "-go_naming_convention=go_default_library",
532 "-go_naming_convention_external=go_default_library",
533 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200534 )
535 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200536 name = "com_github_dgrijalva_jwt_go",
537 importpath = "github.com/dgrijalva/jwt-go",
538 version = "v3.2.0+incompatible",
539 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100540 build_extra_args = [
541 "-go_naming_convention=go_default_library",
542 "-go_naming_convention_external=go_default_library",
543 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200544 )
545 go_repository(
546 name = "com_github_diskfs_go_diskfs",
547 importpath = "github.com/diskfs/go-diskfs",
548 version = "v1.0.0",
549 sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100550 build_extra_args = [
551 "-go_naming_convention=go_default_library",
552 "-go_naming_convention_external=go_default_library",
553 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200554 )
555 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200556 name = "com_github_dnstap_golang_dnstap",
557 importpath = "github.com/dnstap/golang-dnstap",
558 version = "v0.2.0",
559 sum = "h1:+NrmP4mkaTeKYV7xJ5FXpUxRn0RpcgoQcsOCTS8WQPk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100560 build_extra_args = [
561 "-go_naming_convention=go_default_library",
562 "-go_naming_convention_external=go_default_library",
563 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200564 )
565 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200566 name = "com_github_docker_distribution",
567 importpath = "github.com/docker/distribution",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200568 version = "v2.7.1+incompatible",
569 sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100570 build_extra_args = [
571 "-go_naming_convention=go_default_library",
572 "-go_naming_convention_external=go_default_library",
573 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200574 )
575 go_repository(
576 name = "com_github_docker_docker",
577 importpath = "github.com/docker/docker",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200578 version = "v17.12.0-ce-rc1.0.20200310163718-4634ce647cf2+incompatible",
579 sum = "h1:ax4NateCD5bjRTqLvQBlFrSUPOoZRgEXWpJ6Bmu6OO0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100580 build_extra_args = [
581 "-go_naming_convention=go_default_library",
582 "-go_naming_convention_external=go_default_library",
583 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200584 )
585 go_repository(
586 name = "com_github_docker_go_connections",
587 importpath = "github.com/docker/go-connections",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200588 version = "v0.4.0",
589 sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100590 build_extra_args = [
591 "-go_naming_convention=go_default_library",
592 "-go_naming_convention_external=go_default_library",
593 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200594 )
595 go_repository(
596 name = "com_github_docker_go_events",
597 importpath = "github.com/docker/go-events",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200598 version = "v0.0.0-20190806004212-e31b211e4f1c",
599 sum = "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100600 build_extra_args = [
601 "-go_naming_convention=go_default_library",
602 "-go_naming_convention_external=go_default_library",
603 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200604 )
605 go_repository(
606 name = "com_github_docker_go_metrics",
607 importpath = "github.com/docker/go-metrics",
608 version = "v0.0.1",
609 sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100610 build_extra_args = [
611 "-go_naming_convention=go_default_library",
612 "-go_naming_convention_external=go_default_library",
613 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200614 )
615 go_repository(
616 name = "com_github_docker_go_units",
617 importpath = "github.com/docker/go-units",
618 version = "v0.4.0",
619 sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100620 build_extra_args = [
621 "-go_naming_convention=go_default_library",
622 "-go_naming_convention_external=go_default_library",
623 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200624 )
625 go_repository(
626 name = "com_github_docker_spdystream",
627 importpath = "github.com/docker/spdystream",
628 version = "v0.0.0-20160310174837-449fdfce4d96",
629 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100630 build_extra_args = [
631 "-go_naming_convention=go_default_library",
632 "-go_naming_convention_external=go_default_library",
633 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200634 )
635 go_repository(
636 name = "com_github_dustin_go_humanize",
637 importpath = "github.com/dustin/go-humanize",
638 version = "v1.0.0",
639 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100640 build_extra_args = [
641 "-go_naming_convention=go_default_library",
642 "-go_naming_convention_external=go_default_library",
643 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200644 )
645 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +0200646 name = "com_github_elazarl_goproxy",
647 importpath = "github.com/elazarl/goproxy",
648 version = "v0.0.0-20180725130230-947c36da3153",
649 sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100650 build_extra_args = [
651 "-go_naming_convention=go_default_library",
652 "-go_naming_convention_external=go_default_library",
653 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +0200654 )
655 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200656 name = "com_github_emicklei_go_restful",
657 importpath = "github.com/emicklei/go-restful",
658 version = "v2.9.5+incompatible",
659 sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100660 build_extra_args = [
661 "-go_naming_convention=go_default_library",
662 "-go_naming_convention_external=go_default_library",
663 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200664 )
665 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200666 name = "com_github_euank_go_kmsg_parser",
667 importpath = "github.com/euank/go-kmsg-parser",
668 version = "v2.0.0+incompatible",
669 sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100670 build_extra_args = [
671 "-go_naming_convention=go_default_library",
672 "-go_naming_convention_external=go_default_library",
673 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200674 )
675 go_repository(
676 name = "com_github_evanphx_json_patch",
677 importpath = "github.com/evanphx/json-patch",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200678 version = "v0.0.0-20190815234213-e83c0a1c26c8",
679 sum = "h1:DM7gHzQfHwIj+St8zaPOI6iQEPAxOwIkskvw6s9rDaM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100680 build_extra_args = [
681 "-go_naming_convention=go_default_library",
682 "-go_naming_convention_external=go_default_library",
683 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200684 )
685 go_repository(
686 name = "com_github_exponent_io_jsonpath",
687 importpath = "github.com/exponent-io/jsonpath",
688 version = "v0.0.0-20151013193312-d6023ce2651d",
689 sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100690 build_extra_args = [
691 "-go_naming_convention=go_default_library",
692 "-go_naming_convention_external=go_default_library",
693 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200694 )
695 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200696 name = "com_github_farsightsec_golang_framestream",
697 importpath = "github.com/farsightsec/golang-framestream",
698 version = "v0.0.0-20190425193708-fa4b164d59b8",
699 sum = "h1:/iPdQppoAsTfML+yqFSq2EBChiEMnRkh5WvhFgtWwcU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100700 build_extra_args = [
701 "-go_naming_convention=go_default_library",
702 "-go_naming_convention_external=go_default_library",
703 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200704 )
705 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200706 name = "com_github_fatih_camelcase",
707 importpath = "github.com/fatih/camelcase",
708 version = "v1.0.0",
709 sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100710 build_extra_args = [
711 "-go_naming_convention=go_default_library",
712 "-go_naming_convention_external=go_default_library",
713 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200714 )
715 go_repository(
716 name = "com_github_fatih_color",
717 importpath = "github.com/fatih/color",
718 version = "v1.7.0",
719 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100720 build_extra_args = [
721 "-go_naming_convention=go_default_library",
722 "-go_naming_convention_external=go_default_library",
723 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200724 )
725 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200726 name = "com_github_flynn_go_shlex",
727 importpath = "github.com/flynn/go-shlex",
728 version = "v0.0.0-20150515145356-3f9db97f8568",
729 sum = "h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100730 build_extra_args = [
731 "-go_naming_convention=go_default_library",
732 "-go_naming_convention_external=go_default_library",
733 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200734 )
735 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200736 name = "com_github_fullsailor_pkcs7",
737 importpath = "github.com/fullsailor/pkcs7",
738 version = "v0.0.0-20180613152042-8306686428a5",
739 sum = "h1:v+vxrd9XS8uWIXG2RK0BHCnXc30qLVQXVqbK+IOmpXk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100740 build_extra_args = [
741 "-go_naming_convention=go_default_library",
742 "-go_naming_convention_external=go_default_library",
743 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200744 )
745 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200746 name = "com_github_ghodss_yaml",
747 importpath = "github.com/ghodss/yaml",
748 version = "v1.0.0",
749 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100750 build_extra_args = [
751 "-go_naming_convention=go_default_library",
752 "-go_naming_convention_external=go_default_library",
753 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200754 )
755 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200756 name = "com_github_go_delve_delve",
757 importpath = "github.com/go-delve/delve",
758 version = "v1.4.1",
759 sum = "h1:kZs0umEv+VKnK84kY9/ZXWrakdLTeRTyYjFdgLelZCQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100760 build_extra_args = [
761 "-go_naming_convention=go_default_library",
762 "-go_naming_convention_external=go_default_library",
763 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200764 )
765 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200766 name = "com_github_go_logr_logr",
767 importpath = "github.com/go-logr/logr",
768 version = "v0.2.0",
769 sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100770 build_extra_args = [
771 "-go_naming_convention=go_default_library",
772 "-go_naming_convention_external=go_default_library",
773 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200774 )
775 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200776 name = "com_github_go_openapi_analysis",
777 importpath = "github.com/go-openapi/analysis",
778 version = "v0.19.5",
779 sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100780 build_extra_args = [
781 "-go_naming_convention=go_default_library",
782 "-go_naming_convention_external=go_default_library",
783 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200784 )
785 go_repository(
786 name = "com_github_go_openapi_errors",
787 importpath = "github.com/go-openapi/errors",
788 version = "v0.19.2",
789 sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100790 build_extra_args = [
791 "-go_naming_convention=go_default_library",
792 "-go_naming_convention_external=go_default_library",
793 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200794 )
795 go_repository(
796 name = "com_github_go_openapi_jsonpointer",
797 importpath = "github.com/go-openapi/jsonpointer",
798 version = "v0.19.3",
799 sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100800 build_extra_args = [
801 "-go_naming_convention=go_default_library",
802 "-go_naming_convention_external=go_default_library",
803 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200804 )
805 go_repository(
806 name = "com_github_go_openapi_jsonreference",
807 importpath = "github.com/go-openapi/jsonreference",
808 version = "v0.19.3",
809 sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100810 build_extra_args = [
811 "-go_naming_convention=go_default_library",
812 "-go_naming_convention_external=go_default_library",
813 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200814 )
815 go_repository(
816 name = "com_github_go_openapi_loads",
817 importpath = "github.com/go-openapi/loads",
818 version = "v0.19.4",
819 sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100820 build_extra_args = [
821 "-go_naming_convention=go_default_library",
822 "-go_naming_convention_external=go_default_library",
823 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200824 )
825 go_repository(
826 name = "com_github_go_openapi_runtime",
827 importpath = "github.com/go-openapi/runtime",
828 version = "v0.19.4",
829 sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100830 build_extra_args = [
831 "-go_naming_convention=go_default_library",
832 "-go_naming_convention_external=go_default_library",
833 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200834 )
835 go_repository(
836 name = "com_github_go_openapi_spec",
837 importpath = "github.com/go-openapi/spec",
838 version = "v0.19.3",
839 sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100840 build_extra_args = [
841 "-go_naming_convention=go_default_library",
842 "-go_naming_convention_external=go_default_library",
843 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200844 )
845 go_repository(
846 name = "com_github_go_openapi_strfmt",
847 importpath = "github.com/go-openapi/strfmt",
848 version = "v0.19.3",
849 sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100850 build_extra_args = [
851 "-go_naming_convention=go_default_library",
852 "-go_naming_convention_external=go_default_library",
853 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200854 )
855 go_repository(
856 name = "com_github_go_openapi_swag",
857 importpath = "github.com/go-openapi/swag",
858 version = "v0.19.5",
859 sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100860 build_extra_args = [
861 "-go_naming_convention=go_default_library",
862 "-go_naming_convention_external=go_default_library",
863 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200864 )
865 go_repository(
866 name = "com_github_go_openapi_validate",
867 importpath = "github.com/go-openapi/validate",
868 version = "v0.19.5",
869 sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100870 build_extra_args = [
871 "-go_naming_convention=go_default_library",
872 "-go_naming_convention_external=go_default_library",
873 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200874 )
875 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200876 name = "com_github_go_stack_stack",
877 importpath = "github.com/go-stack/stack",
878 version = "v1.8.0",
879 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100880 build_extra_args = [
881 "-go_naming_convention=go_default_library",
882 "-go_naming_convention_external=go_default_library",
883 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200884 )
885 go_repository(
886 name = "com_github_godbus_dbus_v5",
887 importpath = "github.com/godbus/dbus/v5",
888 version = "v5.0.3",
889 sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100890 build_extra_args = [
891 "-go_naming_convention=go_default_library",
892 "-go_naming_convention_external=go_default_library",
893 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200894 )
895 go_repository(
896 name = "com_github_gofrs_flock",
897 importpath = "github.com/gofrs/flock",
898 version = "v0.6.1-0.20180915234121-886344bea079",
899 sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100900 build_extra_args = [
901 "-go_naming_convention=go_default_library",
902 "-go_naming_convention_external=go_default_library",
903 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200904 )
905 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200906 name = "com_github_gogo_googleapis",
907 importpath = "github.com/gogo/googleapis",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200908 version = "v1.3.2",
909 sum = "h1:kX1es4djPJrsDhY7aZKJy7aZasdcB5oSOEphMjSB53c=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200910 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100911 build_extra_args = [
912 "-go_naming_convention=go_default_library",
913 "-go_naming_convention_external=go_default_library",
914 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200915 )
916 go_repository(
917 name = "com_github_gogo_protobuf",
918 importpath = "github.com/gogo/protobuf",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200919 version = "v1.3.1",
920 sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100921 build_extra_args = [
922 "-go_naming_convention=go_default_library",
923 "-go_naming_convention_external=go_default_library",
924 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200925 )
926 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200927 name = "com_github_golang_groupcache",
928 importpath = "github.com/golang/groupcache",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200929 version = "v0.0.0-20191227052852-215e87163ea7",
930 sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100931 build_extra_args = [
932 "-go_naming_convention=go_default_library",
933 "-go_naming_convention_external=go_default_library",
934 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200935 )
936 go_repository(
937 name = "com_github_google_btree",
938 importpath = "github.com/google/btree",
939 version = "v1.0.0",
940 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100941 build_extra_args = [
942 "-go_naming_convention=go_default_library",
943 "-go_naming_convention_external=go_default_library",
944 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200945 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100946 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200947 name = "com_github_google_cadvisor",
948 importpath = "github.com/google/cadvisor",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200949 version = "v0.36.1-0.20200623171404-8450c56c21bc",
950 sum = "h1:il4pi2iOP5NRkBgnZH3n0GDqSCNEJ/QIRJrCAfU5h38=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100951 build_extra_args = [
952 "-go_naming_convention=go_default_library",
953 "-go_naming_convention_external=go_default_library",
954 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100955 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100956 go_repository(
Lorenz Bruna50e8452020-09-09 17:09:27 +0200957 name = "com_github_google_certificate_transparency_go",
958 importpath = "github.com/google/certificate-transparency-go",
959 version = "v1.1.0",
960 sum = "h1:10MlrYzh5wfkToxWI4yJzffsxLfxcEDlOATMx/V9Kzw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100961 build_extra_args = [
962 "-go_naming_convention=go_default_library",
963 "-go_naming_convention_external=go_default_library",
964 ],
Lorenz Bruna50e8452020-09-09 17:09:27 +0200965 )
966 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200967 name = "com_github_google_go_cmp",
968 importpath = "github.com/google/go-cmp",
969 version = "v0.4.0",
970 sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100971 build_extra_args = [
972 "-go_naming_convention=go_default_library",
973 "-go_naming_convention_external=go_default_library",
974 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +0200975 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200976 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200977 name = "com_github_google_go_dap",
978 importpath = "github.com/google/go-dap",
979 version = "v0.2.0",
980 sum = "h1:whjIGQRumwbR40qRU7CEKuFLmePUUc2s4Nt9DoXXxWk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100981 build_extra_args = [
982 "-go_naming_convention=go_default_library",
983 "-go_naming_convention_external=go_default_library",
984 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200985 )
986 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200987 name = "com_github_google_go_tpm",
988 importpath = "github.com/google/go-tpm",
989 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
990 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100991 build_extra_args = [
992 "-go_naming_convention=go_default_library",
993 "-go_naming_convention_external=go_default_library",
994 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +0200995 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200996 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200997 name = "com_github_google_go_tpm_tools",
998 importpath = "github.com/google/go-tpm-tools",
999 version = "v0.0.0-20190731025042-f8c04ff88181",
1000 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001001 build_extra_args = [
1002 "-go_naming_convention=go_default_library",
1003 "-go_naming_convention_external=go_default_library",
1004 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001005 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001006 go_repository(
1007 name = "com_github_google_gofuzz",
1008 importpath = "github.com/google/gofuzz",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001009 version = "v1.1.0",
1010 sum = "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001011 build_extra_args = [
1012 "-go_naming_convention=go_default_library",
1013 "-go_naming_convention_external=go_default_library",
1014 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001015 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001016 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001017 name = "com_github_google_gopacket",
1018 importpath = "github.com/google/gopacket",
1019 version = "v1.1.17",
1020 sum = "h1:rMrlX2ZY2UbvT+sdz3+6J+pp2z+msCq9MxTU6ymxbBY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001021 build_extra_args = [
1022 "-go_naming_convention=go_default_library",
1023 "-go_naming_convention_external=go_default_library",
1024 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001025 )
1026 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001027 name = "com_github_google_gvisor",
1028 importpath = "github.com/google/gvisor",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001029 version = "v0.0.0-20201216082428-b645fcd241a8",
1030 sum = "h1:gNssWp0Zg2Ij2OMz4Gi5ciVLnMVGzqfvPOADTN1ou+E=",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001031 patches = [
1032 "//third_party/go/patches:gvisor.patch",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001033 "//third_party/go/patches:gvisor-build-against-newer-runtime-specs.patch",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001034 ],
1035 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001036 build_extra_args = [
1037 "-go_naming_convention=go_default_library",
1038 "-go_naming_convention_external=go_default_library",
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001039 ],
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001040 )
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001041 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001042 name = "com_github_google_nftables",
1043 importpath = "github.com/google/nftables",
1044 version = "v0.0.0-20200316075819-7127d9d22474",
1045 sum = "h1:D6bN82zzK92ywYsE+Zjca7EHZCRZbcNTU3At7WdxQ+c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001046 build_extra_args = [
1047 "-go_naming_convention=go_default_library",
1048 "-go_naming_convention_external=go_default_library",
1049 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001050 )
1051 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001052 name = "com_github_google_subcommands",
1053 importpath = "github.com/google/subcommands",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001054 version = "v1.0.2-0.20190508160503-636abe8753b8",
1055 sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=",
1056 build_extra_args = [
1057 "-go_naming_convention=go_default_library",
1058 "-go_naming_convention_external=go_default_library",
1059 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001060 )
1061 go_repository(
1062 name = "com_github_google_uuid",
1063 importpath = "github.com/google/uuid",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001064 version = "v1.1.1",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001065 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001066 build_extra_args = [
1067 "-go_naming_convention=go_default_library",
1068 "-go_naming_convention_external=go_default_library",
1069 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001070 )
1071 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001072 name = "com_github_googleapis_gnostic",
1073 importpath = "github.com/googleapis/gnostic",
1074 version = "v0.4.1",
1075 sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001076 build_extra_args = [
1077 "-go_naming_convention=go_default_library",
1078 "-go_naming_convention_external=go_default_library",
1079 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001080 )
1081 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001082 name = "com_github_gorilla_websocket",
1083 importpath = "github.com/gorilla/websocket",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001084 version = "v1.4.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001085 sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001086 build_extra_args = [
1087 "-go_naming_convention=go_default_library",
1088 "-go_naming_convention_external=go_default_library",
1089 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001090 )
1091 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001092 name = "com_github_gregjones_httpcache",
1093 importpath = "github.com/gregjones/httpcache",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001094 version = "v0.0.0-20180305231024-9cad4c3443a7",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001095 sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001096 build_extra_args = [
1097 "-go_naming_convention=go_default_library",
1098 "-go_naming_convention_external=go_default_library",
1099 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001100 )
1101 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001102 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1103 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1104 version = "v1.0.1-0.20190118093823-f849b5445de4",
1105 sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001106 build_extra_args = [
1107 "-go_naming_convention=go_default_library",
1108 "-go_naming_convention_external=go_default_library",
1109 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001110 )
1111 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001112 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1113 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1114 version = "v1.2.0",
1115 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001116 build_extra_args = [
1117 "-go_naming_convention=go_default_library",
1118 "-go_naming_convention_external=go_default_library",
1119 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001120 )
1121 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001122 name = "com_github_grpc_ecosystem_grpc_gateway",
1123 importpath = "github.com/grpc-ecosystem/grpc-gateway",
1124 version = "v1.9.5",
1125 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001126 build_extra_args = [
1127 "-go_naming_convention=go_default_library",
1128 "-go_naming_convention_external=go_default_library",
1129 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001130 )
1131 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001132 name = "com_github_grpc_ecosystem_grpc_opentracing",
1133 importpath = "github.com/grpc-ecosystem/grpc-opentracing",
1134 version = "v0.0.0-20180507213350-8e809c8a8645",
1135 sum = "h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001136 build_extra_args = [
1137 "-go_naming_convention=go_default_library",
1138 "-go_naming_convention_external=go_default_library",
1139 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001140 )
1141 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001142 name = "com_github_grpc_grpc",
1143 importpath = "github.com/grpc/grpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001144 version = "v1.29.1",
1145 sum = "h1:oDOYav2X6WE7espebiQ//iP9N+/gGygUv6XuuyvkFMc=",
1146 build_extra_args = [
1147 "-go_naming_convention=go_default_library",
1148 "-go_naming_convention_external=go_default_library",
1149 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001150 )
1151 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001152 name = "com_github_hashicorp_errwrap",
1153 importpath = "github.com/hashicorp/errwrap",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001154 version = "v1.0.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001155 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001156 build_extra_args = [
1157 "-go_naming_convention=go_default_library",
1158 "-go_naming_convention_external=go_default_library",
1159 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001160 )
1161 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001162 name = "com_github_hashicorp_go_multierror",
1163 importpath = "github.com/hashicorp/go-multierror",
1164 version = "v1.0.0",
1165 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001166 build_extra_args = [
1167 "-go_naming_convention=go_default_library",
1168 "-go_naming_convention_external=go_default_library",
1169 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001170 )
1171 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001172 name = "com_github_hashicorp_golang_lru",
1173 importpath = "github.com/hashicorp/golang-lru",
1174 version = "v0.5.3",
1175 sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001176 build_extra_args = [
1177 "-go_naming_convention=go_default_library",
1178 "-go_naming_convention_external=go_default_library",
1179 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001180 )
1181 go_repository(
1182 name = "com_github_hashicorp_hcl",
1183 importpath = "github.com/hashicorp/hcl",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001184 version = "v1.0.0",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001185 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001186 build_extra_args = [
1187 "-go_naming_convention=go_default_library",
1188 "-go_naming_convention_external=go_default_library",
1189 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001190 )
1191 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001192 name = "com_github_hpcloud_tail",
1193 importpath = "github.com/hpcloud/tail",
1194 version = "v1.0.0",
1195 sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001196 build_extra_args = [
1197 "-go_naming_convention=go_default_library",
1198 "-go_naming_convention_external=go_default_library",
1199 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001200 )
1201 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001202 name = "com_github_imdario_mergo",
1203 importpath = "github.com/imdario/mergo",
1204 version = "v0.3.7",
1205 sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001206 build_extra_args = [
1207 "-go_naming_convention=go_default_library",
1208 "-go_naming_convention_external=go_default_library",
1209 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001210 )
1211 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001212 name = "com_github_infobloxopen_go_trees",
1213 importpath = "github.com/infobloxopen/go-trees",
1214 version = "v0.0.0-20190313150506-2af4e13f9062",
1215 sum = "h1:d3VSuNcgTCn21dNMm8g412Fck/XWFmMj4nJhhHT7ZZ0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001216 build_extra_args = [
1217 "-go_naming_convention=go_default_library",
1218 "-go_naming_convention_external=go_default_library",
1219 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001220 )
1221 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001222 name = "com_github_insomniacslk_dhcp",
1223 importpath = "github.com/insomniacslk/dhcp",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001224 version = "v0.0.0-20200922210017-67c425063dca",
1225 sum = "h1:zhwTlFGM8ZkD5J/c43IWkxSJQWzhm20QWou8zajbCck=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001226 build_extra_args = [
1227 "-go_naming_convention=go_default_library",
1228 "-go_naming_convention_external=go_default_library",
1229 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001230 )
1231 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001232 name = "com_github_j_keck_arping",
1233 importpath = "github.com/j-keck/arping",
1234 version = "v0.0.0-20160618110441-2cf9dc699c56",
1235 sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001236 build_extra_args = [
1237 "-go_naming_convention=go_default_library",
1238 "-go_naming_convention_external=go_default_library",
1239 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001240 )
1241 go_repository(
Lorenz Brun878f5f92020-05-12 16:15:39 +02001242 name = "com_github_joho_godotenv",
1243 importpath = "github.com/joho/godotenv",
1244 version = "v1.3.0",
1245 sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001246 build_extra_args = [
1247 "-go_naming_convention=go_default_library",
1248 "-go_naming_convention_external=go_default_library",
1249 ],
Lorenz Brun878f5f92020-05-12 16:15:39 +02001250 )
1251 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001252 name = "com_github_jonboulle_clockwork",
1253 importpath = "github.com/jonboulle/clockwork",
1254 version = "v0.1.0",
1255 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001256 build_extra_args = [
1257 "-go_naming_convention=go_default_library",
1258 "-go_naming_convention_external=go_default_library",
1259 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001260 )
1261 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001262 name = "com_github_json_iterator_go",
1263 importpath = "github.com/json-iterator/go",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001264 version = "v1.1.10",
1265 sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=",
1266 build_extra_args = [
1267 "-go_naming_convention=go_default_library",
1268 "-go_naming_convention_external=go_default_library",
1269 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001270 )
1271 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001272 name = "com_github_karrick_godirwalk",
1273 importpath = "github.com/karrick/godirwalk",
1274 version = "v1.7.5",
1275 sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001276 build_extra_args = [
1277 "-go_naming_convention=go_default_library",
1278 "-go_naming_convention_external=go_default_library",
1279 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001280 )
1281 go_repository(
1282 name = "com_github_kevinburke_go_bindata",
1283 importpath = "github.com/kevinburke/go-bindata",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001284 version = "v3.16.0+incompatible",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001285 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001286 build_extra_args = [
1287 "-go_naming_convention=go_default_library",
1288 "-go_naming_convention_external=go_default_library",
1289 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001290 )
1291 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001292 name = "com_github_koneu_natend",
1293 importpath = "github.com/koneu/natend",
1294 version = "v0.0.0-20150829182554-ec0926ea948d",
1295 sum = "h1:MFX8DxRnKMY/2M3H61iSsVbo/n3h0MWGmWNN1UViOU0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001296 build_extra_args = [
1297 "-go_naming_convention=go_default_library",
1298 "-go_naming_convention_external=go_default_library",
1299 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001300 )
1301 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001302 name = "com_github_konsorten_go_windows_terminal_sequences",
1303 importpath = "github.com/konsorten/go-windows-terminal-sequences",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001304 version = "v1.0.3",
1305 sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001306 build_extra_args = [
1307 "-go_naming_convention=go_default_library",
1308 "-go_naming_convention_external=go_default_library",
1309 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001310 )
1311 go_repository(
1312 name = "com_github_kr_pretty",
1313 importpath = "github.com/kr/pretty",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001314 version = "v0.1.0",
1315 sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=",
1316 build_extra_args = [
1317 "-go_naming_convention=go_default_library",
1318 "-go_naming_convention_external=go_default_library",
1319 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001320 )
1321 go_repository(
1322 name = "com_github_kr_pty",
1323 importpath = "github.com/kr/pty",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001324 version = "v1.1.4-0.20190131011033-7dc38fb350b1",
1325 sum = "h1:zc0R6cOw98cMengLA0fvU55mqbnN7sd/tBMLzSejp+M=",
1326 build_extra_args = [
1327 "-go_naming_convention=go_default_library",
1328 "-go_naming_convention_external=go_default_library",
1329 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001330 )
1331 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001332 name = "com_github_liggitt_tabwriter",
1333 importpath = "github.com/liggitt/tabwriter",
1334 version = "v0.0.0-20181228230101-89fcab3d43de",
1335 sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001336 build_extra_args = [
1337 "-go_naming_convention=go_default_library",
1338 "-go_naming_convention_external=go_default_library",
1339 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001340 )
1341 go_repository(
1342 name = "com_github_lithammer_dedent",
1343 importpath = "github.com/lithammer/dedent",
1344 version = "v1.1.0",
1345 sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001346 build_extra_args = [
1347 "-go_naming_convention=go_default_library",
1348 "-go_naming_convention_external=go_default_library",
1349 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001350 )
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001351 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001352 name = "com_github_magiconair_properties",
1353 importpath = "github.com/magiconair/properties",
Serge Bazanski520c9342020-12-22 10:58:41 +01001354 version = "v1.8.1",
1355 sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001356 build_extra_args = [
1357 "-go_naming_convention=go_default_library",
1358 "-go_naming_convention_external=go_default_library",
1359 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001360 )
1361 go_repository(
1362 name = "com_github_mailru_easyjson",
1363 importpath = "github.com/mailru/easyjson",
1364 version = "v0.7.0",
1365 sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001366 build_extra_args = [
1367 "-go_naming_convention=go_default_library",
1368 "-go_naming_convention_external=go_default_library",
1369 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001370 )
1371 go_repository(
1372 name = "com_github_mattn_go_colorable",
1373 importpath = "github.com/mattn/go-colorable",
1374 version = "v0.0.9",
1375 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001376 build_extra_args = [
1377 "-go_naming_convention=go_default_library",
1378 "-go_naming_convention_external=go_default_library",
1379 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001380 )
1381 go_repository(
1382 name = "com_github_mattn_go_isatty",
1383 importpath = "github.com/mattn/go-isatty",
1384 version = "v0.0.4",
1385 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001386 build_extra_args = [
1387 "-go_naming_convention=go_default_library",
1388 "-go_naming_convention_external=go_default_library",
1389 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001390 )
1391 go_repository(
1392 name = "com_github_mattn_go_runewidth",
1393 importpath = "github.com/mattn/go-runewidth",
1394 version = "v0.0.2",
1395 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001396 build_extra_args = [
1397 "-go_naming_convention=go_default_library",
1398 "-go_naming_convention_external=go_default_library",
1399 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001400 )
1401 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001402 name = "com_github_matttproud_golang_protobuf_extensions",
1403 importpath = "github.com/matttproud/golang_protobuf_extensions",
1404 version = "v1.0.1",
1405 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001406 build_extra_args = [
1407 "-go_naming_convention=go_default_library",
1408 "-go_naming_convention_external=go_default_library",
1409 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001410 )
1411 go_repository(
1412 name = "com_github_mdlayher_ethernet",
1413 importpath = "github.com/mdlayher/ethernet",
1414 version = "v0.0.0-20190606142754-0394541c37b7",
1415 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001416 build_extra_args = [
1417 "-go_naming_convention=go_default_library",
1418 "-go_naming_convention_external=go_default_library",
1419 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001420 )
1421 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001422 name = "com_github_mdlayher_genetlink",
1423 importpath = "github.com/mdlayher/genetlink",
1424 version = "v1.0.0",
1425 sum = "h1:OoHN1OdyEIkScEmRgxLEe2M9U8ClMytqA5niynLtfj0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001426 build_extra_args = [
1427 "-go_naming_convention=go_default_library",
1428 "-go_naming_convention_external=go_default_library",
1429 ],
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001430 )
1431 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001432 name = "com_github_mdlayher_netlink",
1433 importpath = "github.com/mdlayher/netlink",
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001434 version = "v1.1.0",
1435 sum = "h1:mpdLgm+brq10nI9zM1BpX1kpDbh3NLl3RSnVq6ZSkfg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001436 build_extra_args = [
1437 "-go_naming_convention=go_default_library",
1438 "-go_naming_convention_external=go_default_library",
1439 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001440 )
1441 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001442 name = "com_github_mdlayher_raw",
1443 importpath = "github.com/mdlayher/raw",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001444 version = "v0.0.0-20191009151244-50f2db8cc065",
1445 sum = "h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001446 build_extra_args = [
1447 "-go_naming_convention=go_default_library",
1448 "-go_naming_convention_external=go_default_library",
1449 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001450 )
1451 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001452 name = "com_github_miekg_dns",
1453 importpath = "github.com/miekg/dns",
Serge Bazanskid9ed6562021-01-07 16:06:44 +01001454 version = "v1.1.29",
1455 sum = "h1:xHBEhR+t5RzcFJjBLJlax2daXOrTYtr9z4WdKEfWFzg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001456 build_extra_args = [
1457 "-go_naming_convention=go_default_library",
1458 "-go_naming_convention_external=go_default_library",
1459 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001460 )
1461 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001462 name = "com_github_mindprince_gonvml",
1463 importpath = "github.com/mindprince/gonvml",
1464 version = "v0.0.0-20190828220739-9ebdce4bb989",
1465 sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001466 build_extra_args = [
1467 "-go_naming_convention=go_default_library",
1468 "-go_naming_convention_external=go_default_library",
1469 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001470 )
1471 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001472 name = "com_github_mistifyio_go_zfs",
1473 importpath = "github.com/mistifyio/go-zfs",
1474 version = "v2.1.2-0.20190413222219-f784269be439+incompatible",
1475 sum = "h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001476 build_extra_args = [
1477 "-go_naming_convention=go_default_library",
1478 "-go_naming_convention_external=go_default_library",
1479 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +02001480 )
1481 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001482 name = "com_github_mitchellh_go_wordwrap",
1483 importpath = "github.com/mitchellh/go-wordwrap",
1484 version = "v1.0.0",
1485 sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001486 build_extra_args = [
1487 "-go_naming_convention=go_default_library",
1488 "-go_naming_convention_external=go_default_library",
1489 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001490 )
1491 go_repository(
1492 name = "com_github_mitchellh_mapstructure",
1493 importpath = "github.com/mitchellh/mapstructure",
1494 version = "v1.1.2",
1495 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001496 build_extra_args = [
1497 "-go_naming_convention=go_default_library",
1498 "-go_naming_convention_external=go_default_library",
1499 ],
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001500 )
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001501 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001502 name = "com_github_moby_sys_mountinfo",
1503 importpath = "github.com/moby/sys/mountinfo",
1504 version = "v0.1.3",
1505 sum = "h1:KIrhRO14+AkwKvG/g2yIpNMOUVZ02xNhOw8KY1WsLOI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001506 build_extra_args = [
1507 "-go_naming_convention=go_default_library",
1508 "-go_naming_convention_external=go_default_library",
1509 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +02001510 )
1511 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001512 name = "com_github_moby_term",
1513 importpath = "github.com/moby/term",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001514 version = "v0.0.0-20200312100748-672ec06f55cd",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001515 sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001516 build_extra_args = [
1517 "-go_naming_convention=go_default_library",
1518 "-go_naming_convention_external=go_default_library",
1519 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001520 )
1521 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001522 name = "com_github_modern_go_concurrent",
1523 importpath = "github.com/modern-go/concurrent",
1524 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
1525 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001526 build_extra_args = [
1527 "-go_naming_convention=go_default_library",
1528 "-go_naming_convention_external=go_default_library",
1529 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001530 )
1531 go_repository(
1532 name = "com_github_modern_go_reflect2",
1533 importpath = "github.com/modern-go/reflect2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001534 version = "v1.0.1",
1535 sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001536 build_extra_args = [
1537 "-go_naming_convention=go_default_library",
1538 "-go_naming_convention_external=go_default_library",
1539 ],
1540 )
1541 go_repository(
1542 name = "com_github_mohae_deepcopy",
1543 importpath = "github.com/mohae/deepcopy",
1544 version = "v0.0.0-20170308212314-bb9b5e7adda9",
1545 sum = "h1:Sha2bQdoWE5YQPTlJOL31rmce94/tYi113SlFo1xQ2c=",
1546 build_extra_args = [
1547 "-go_naming_convention=go_default_library",
1548 "-go_naming_convention_external=go_default_library",
1549 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001550 )
1551 go_repository(
1552 name = "com_github_morikuni_aec",
1553 importpath = "github.com/morikuni/aec",
1554 version = "v1.0.0",
1555 sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001556 build_extra_args = [
1557 "-go_naming_convention=go_default_library",
1558 "-go_naming_convention_external=go_default_library",
1559 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001560 )
1561 go_repository(
1562 name = "com_github_mrunalp_fileutils",
1563 importpath = "github.com/mrunalp/fileutils",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001564 version = "v0.0.0-20200520151820-abd8a0e76976",
1565 sum = "h1:aZQToFSLH8ejFeSkTc3r3L4dPImcj7Ib/KgmkQqbGGg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001566 build_extra_args = [
1567 "-go_naming_convention=go_default_library",
1568 "-go_naming_convention_external=go_default_library",
1569 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001570 )
1571 go_repository(
1572 name = "com_github_munnerz_goautoneg",
1573 importpath = "github.com/munnerz/goautoneg",
1574 version = "v0.0.0-20191010083416-a7dc8b61c822",
1575 sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001576 build_extra_args = [
1577 "-go_naming_convention=go_default_library",
1578 "-go_naming_convention_external=go_default_library",
1579 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001580 )
1581 go_repository(
1582 name = "com_github_mxk_go_flowrate",
1583 importpath = "github.com/mxk/go-flowrate",
1584 version = "v0.0.0-20140419014527-cca7078d478f",
1585 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001586 build_extra_args = [
1587 "-go_naming_convention=go_default_library",
1588 "-go_naming_convention_external=go_default_library",
1589 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001590 )
1591 go_repository(
1592 name = "com_github_olekukonko_tablewriter",
1593 importpath = "github.com/olekukonko/tablewriter",
1594 version = "v0.0.0-20170122224234-a0225b3f23b5",
1595 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001596 build_extra_args = [
1597 "-go_naming_convention=go_default_library",
1598 "-go_naming_convention_external=go_default_library",
1599 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001600 )
1601 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001602 name = "com_github_onsi_ginkgo",
1603 importpath = "github.com/onsi/ginkgo",
1604 version = "v1.11.0",
1605 sum = "h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001606 build_extra_args = [
1607 "-go_naming_convention=go_default_library",
1608 "-go_naming_convention_external=go_default_library",
1609 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001610 )
1611 go_repository(
1612 name = "com_github_onsi_gomega",
1613 importpath = "github.com/onsi/gomega",
1614 version = "v1.7.0",
1615 sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001616 build_extra_args = [
1617 "-go_naming_convention=go_default_library",
1618 "-go_naming_convention_external=go_default_library",
1619 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001620 )
1621 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001622 name = "com_github_opencontainers_go_digest",
1623 importpath = "github.com/opencontainers/go-digest",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001624 version = "v1.0.0",
1625 sum = "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001626 build_extra_args = [
1627 "-go_naming_convention=go_default_library",
1628 "-go_naming_convention_external=go_default_library",
1629 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001630 )
1631 go_repository(
1632 name = "com_github_opencontainers_image_spec",
1633 importpath = "github.com/opencontainers/image-spec",
1634 version = "v1.0.1",
1635 sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001636 build_extra_args = [
1637 "-go_naming_convention=go_default_library",
1638 "-go_naming_convention_external=go_default_library",
1639 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001640 )
1641 go_repository(
1642 name = "com_github_opencontainers_runc",
1643 importpath = "github.com/opencontainers/runc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001644 version = "v1.0.0-rc92",
1645 sum = "h1:+IczUKCRzDzFDnw99O/PAqrcBBCoRp9xN3cB1SYSNS4=",
1646 build_extra_args = [
1647 "-go_naming_convention=go_default_library",
1648 "-go_naming_convention_external=go_default_library",
1649 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001650 )
1651 go_repository(
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001652 name = "com_github_opencontainers_runtime_spec",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001653 importpath = "github.com/opencontainers/runtime-spec",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001654 version = "v1.0.3-0.20200728170252-4d89ac9fbff6",
1655 sum = "h1:NhsM2gc769rVWDqJvapK37r+7+CBXI8xHhnfnt8uQsg=",
1656 build_extra_args = [
1657 "-go_naming_convention=go_default_library",
1658 "-go_naming_convention_external=go_default_library",
1659 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001660 )
1661 go_repository(
1662 name = "com_github_opencontainers_selinux",
1663 importpath = "github.com/opencontainers/selinux",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001664 version = "v1.6.0",
1665 sum = "h1:+bIAS/Za3q5FTwWym4fTB0vObnfCf3G/NC7K6Jx62mY=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001666 build_tags = [
1667 "selinux",
1668 ],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001669 build_extra_args = [
1670 "-go_naming_convention=go_default_library",
1671 "-go_naming_convention_external=go_default_library",
1672 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001673 )
1674 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001675 name = "com_github_opentracing_opentracing_go",
1676 importpath = "github.com/opentracing/opentracing-go",
1677 version = "v1.1.0",
1678 sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001679 build_extra_args = [
1680 "-go_naming_convention=go_default_library",
1681 "-go_naming_convention_external=go_default_library",
1682 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001683 )
1684 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001685 name = "com_github_peterbourgon_diskv",
1686 importpath = "github.com/peterbourgon/diskv",
1687 version = "v2.0.1+incompatible",
1688 sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001689 build_extra_args = [
1690 "-go_naming_convention=go_default_library",
1691 "-go_naming_convention_external=go_default_library",
1692 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001693 )
1694 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001695 name = "com_github_peterh_liner",
1696 importpath = "github.com/peterh/liner",
1697 version = "v0.0.0-20170317030525-88609521dc4b",
1698 sum = "h1:8uaXtUkxiy+T/zdLWuxa/PG4so0TPZDZfafFNNSaptE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001699 build_extra_args = [
1700 "-go_naming_convention=go_default_library",
1701 "-go_naming_convention_external=go_default_library",
1702 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001703 )
1704 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001705 name = "com_github_pkg_errors",
1706 importpath = "github.com/pkg/errors",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001707 version = "v0.9.1",
1708 sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001709 build_extra_args = [
1710 "-go_naming_convention=go_default_library",
1711 "-go_naming_convention_external=go_default_library",
1712 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001713 )
1714 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001715 name = "com_github_pquerna_cachecontrol",
1716 importpath = "github.com/pquerna/cachecontrol",
1717 version = "v0.0.0-20171018203845-0dec1b30a021",
1718 sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001719 build_extra_args = [
1720 "-go_naming_convention=go_default_library",
1721 "-go_naming_convention_external=go_default_library",
1722 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001723 )
1724 go_repository(
1725 name = "com_github_prometheus_client_golang",
1726 importpath = "github.com/prometheus/client_golang",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001727 version = "v1.6.0",
1728 sum = "h1:YVPodQOcK15POxhgARIvnDRVpLcuK8mglnMrWfyrw6A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001729 build_extra_args = [
1730 "-go_naming_convention=go_default_library",
1731 "-go_naming_convention_external=go_default_library",
1732 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001733 )
1734 go_repository(
1735 name = "com_github_prometheus_client_model",
1736 importpath = "github.com/prometheus/client_model",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001737 version = "v0.2.0",
1738 sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001739 build_extra_args = [
1740 "-go_naming_convention=go_default_library",
1741 "-go_naming_convention_external=go_default_library",
1742 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001743 )
1744 go_repository(
1745 name = "com_github_prometheus_common",
1746 importpath = "github.com/prometheus/common",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001747 version = "v0.9.1",
1748 sum = "h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001749 build_extra_args = [
1750 "-go_naming_convention=go_default_library",
1751 "-go_naming_convention_external=go_default_library",
1752 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001753 )
1754 go_repository(
1755 name = "com_github_prometheus_procfs",
1756 importpath = "github.com/prometheus/procfs",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001757 version = "v0.0.11",
1758 sum = "h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001759 build_extra_args = [
1760 "-go_naming_convention=go_default_library",
1761 "-go_naming_convention_external=go_default_library",
1762 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001763 )
1764 go_repository(
1765 name = "com_github_rekby_gpt",
1766 importpath = "github.com/rekby/gpt",
1767 version = "v0.0.0-20200219180433-a930afbc6edc",
1768 sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001769 build_extra_args = [
1770 "-go_naming_convention=go_default_library",
1771 "-go_naming_convention_external=go_default_library",
1772 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001773 )
1774 go_repository(
1775 name = "com_github_robfig_cron",
1776 importpath = "github.com/robfig/cron",
1777 version = "v1.1.0",
1778 sum = "h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001779 build_extra_args = [
1780 "-go_naming_convention=go_default_library",
1781 "-go_naming_convention_external=go_default_library",
1782 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001783 )
1784 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001785 name = "com_github_russross_blackfriday",
1786 importpath = "github.com/russross/blackfriday",
1787 version = "v1.5.2",
1788 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001789 build_extra_args = [
1790 "-go_naming_convention=go_default_library",
1791 "-go_naming_convention_external=go_default_library",
1792 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001793 )
1794 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001795 name = "com_github_russross_blackfriday_v2",
1796 importpath = "github.com/russross/blackfriday/v2",
1797 version = "v2.0.1",
1798 sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001799 build_extra_args = [
1800 "-go_naming_convention=go_default_library",
1801 "-go_naming_convention_external=go_default_library",
1802 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001803 )
1804 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001805 name = "com_github_safchain_ethtool",
1806 importpath = "github.com/safchain/ethtool",
1807 version = "v0.0.0-20190326074333-42ed695e3de8",
1808 sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001809 build_extra_args = [
1810 "-go_naming_convention=go_default_library",
1811 "-go_naming_convention_external=go_default_library",
1812 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001813 )
1814 go_repository(
Lorenz Brunb682ba52020-07-08 14:51:36 +02001815 name = "com_github_sbezverk_nfproxy",
1816 importpath = "github.com/sbezverk/nfproxy",
1817 version = "v0.0.0-20200514180651-7fac5f39824e",
1818 sum = "h1:fJ2lHQ7ZUjmgJbvVQ509ioBmrGHcbvlwfjUieExw/dU=",
1819 patches = [
1820 "//third_party/go/patches:nfproxy.patch",
1821 ],
1822 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001823 build_extra_args = [
1824 "-go_naming_convention=go_default_library",
1825 "-go_naming_convention_external=go_default_library",
1826 ],
Lorenz Brunb682ba52020-07-08 14:51:36 +02001827 )
1828 go_repository(
1829 name = "com_github_sbezverk_nftableslib",
1830 importpath = "github.com/sbezverk/nftableslib",
1831 version = "v0.0.0-20200402150358-c20bed91f482",
1832 sum = "h1:k7gEZ/EwJhHDTRXFUZQlE4/p1cmoha7zL7PWCDG3ZHQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001833 build_extra_args = [
1834 "-go_naming_convention=go_default_library",
1835 "-go_naming_convention_external=go_default_library",
1836 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001837 )
1838 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001839 name = "com_github_shurcool_sanitized_anchor_name",
1840 importpath = "github.com/shurcooL/sanitized_anchor_name",
1841 version = "v1.0.0",
1842 sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001843 build_extra_args = [
1844 "-go_naming_convention=go_default_library",
1845 "-go_naming_convention_external=go_default_library",
1846 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001847 )
1848 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001849 name = "com_github_sirupsen_logrus",
1850 importpath = "github.com/sirupsen/logrus",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001851 version = "v1.6.0",
1852 sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001853 build_extra_args = [
1854 "-go_naming_convention=go_default_library",
1855 "-go_naming_convention_external=go_default_library",
1856 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001857 )
1858 go_repository(
1859 name = "com_github_soheilhy_cmux",
1860 importpath = "github.com/soheilhy/cmux",
1861 version = "v0.1.4",
1862 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001863 build_extra_args = [
1864 "-go_naming_convention=go_default_library",
1865 "-go_naming_convention_external=go_default_library",
1866 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001867 )
1868 go_repository(
1869 name = "com_github_spf13_afero",
1870 importpath = "github.com/spf13/afero",
1871 version = "v1.2.2",
1872 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001873 build_extra_args = [
1874 "-go_naming_convention=go_default_library",
1875 "-go_naming_convention_external=go_default_library",
1876 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001877 )
1878 go_repository(
1879 name = "com_github_spf13_cast",
1880 importpath = "github.com/spf13/cast",
Serge Bazanski520c9342020-12-22 10:58:41 +01001881 version = "v1.3.0",
1882 sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001883 build_extra_args = [
1884 "-go_naming_convention=go_default_library",
1885 "-go_naming_convention_external=go_default_library",
1886 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001887 )
1888 go_repository(
1889 name = "com_github_spf13_cobra",
1890 importpath = "github.com/spf13/cobra",
Serge Bazanski14cf7502020-05-28 14:29:56 +02001891 version = "v1.0.0",
1892 sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001893 build_extra_args = [
1894 "-go_naming_convention=go_default_library",
1895 "-go_naming_convention_external=go_default_library",
1896 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001897 )
1898 go_repository(
1899 name = "com_github_spf13_jwalterweatherman",
1900 importpath = "github.com/spf13/jwalterweatherman",
Serge Bazanski520c9342020-12-22 10:58:41 +01001901 version = "v1.1.0",
1902 sum = "h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001903 build_extra_args = [
1904 "-go_naming_convention=go_default_library",
1905 "-go_naming_convention_external=go_default_library",
1906 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001907 )
1908 go_repository(
1909 name = "com_github_spf13_pflag",
1910 importpath = "github.com/spf13/pflag",
1911 version = "v1.0.5",
1912 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001913 build_extra_args = [
1914 "-go_naming_convention=go_default_library",
1915 "-go_naming_convention_external=go_default_library",
1916 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001917 )
1918 go_repository(
1919 name = "com_github_spf13_viper",
1920 importpath = "github.com/spf13/viper",
Serge Bazanski520c9342020-12-22 10:58:41 +01001921 version = "v1.4.0",
1922 sum = "h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001923 build_extra_args = [
1924 "-go_naming_convention=go_default_library",
1925 "-go_naming_convention_external=go_default_library",
1926 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001927 )
1928 go_repository(
1929 name = "com_github_stretchr_testify",
1930 importpath = "github.com/stretchr/testify",
1931 version = "v1.4.0",
1932 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001933 build_extra_args = [
1934 "-go_naming_convention=go_default_library",
1935 "-go_naming_convention_external=go_default_library",
1936 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001937 )
1938 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001939 name = "com_github_syndtr_gocapability",
1940 importpath = "github.com/syndtr/gocapability",
1941 version = "v0.0.0-20180916011248-d98352740cb2",
1942 sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001943 build_extra_args = [
1944 "-go_naming_convention=go_default_library",
1945 "-go_naming_convention_external=go_default_library",
1946 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001947 )
1948 go_repository(
1949 name = "com_github_tchap_go_patricia",
1950 importpath = "github.com/tchap/go-patricia",
1951 version = "v2.2.6+incompatible",
1952 sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001953 build_extra_args = [
1954 "-go_naming_convention=go_default_library",
1955 "-go_naming_convention_external=go_default_library",
1956 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001957 )
1958 go_repository(
1959 name = "com_github_tmc_grpc_websocket_proxy",
1960 importpath = "github.com/tmc/grpc-websocket-proxy",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001961 version = "v0.0.0-20190109142713-0ad062ec5ee5",
1962 sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001963 build_extra_args = [
1964 "-go_naming_convention=go_default_library",
1965 "-go_naming_convention_external=go_default_library",
1966 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001967 )
1968 go_repository(
1969 name = "com_github_u_root_u_root",
1970 importpath = "github.com/u-root/u-root",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001971 version = "v7.0.0+incompatible",
1972 sum = "h1:u+KSS04pSxJGI5E7WE4Bs9+Zd75QjFv+REkjy/aoAc8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001973 build_extra_args = [
1974 "-go_naming_convention=go_default_library",
1975 "-go_naming_convention_external=go_default_library",
1976 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001977 )
1978 go_repository(
1979 name = "com_github_urfave_cli",
1980 importpath = "github.com/urfave/cli",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001981 version = "v1.22.1",
1982 sum = "h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001983 build_extra_args = [
1984 "-go_naming_convention=go_default_library",
1985 "-go_naming_convention_external=go_default_library",
1986 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001987 )
1988 go_repository(
1989 name = "com_github_vishvananda_netlink",
1990 importpath = "github.com/vishvananda/netlink",
1991 version = "v1.1.0",
1992 sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001993 build_extra_args = [
1994 "-go_naming_convention=go_default_library",
1995 "-go_naming_convention_external=go_default_library",
1996 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001997 )
1998 go_repository(
1999 name = "com_github_vishvananda_netns",
2000 importpath = "github.com/vishvananda/netns",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002001 version = "v0.0.0-20200520041808-52d707b772fe",
2002 sum = "h1:mjAZxE1nh8yvuwhGHpdDqdhtNu2dgbpk93TwoXuk5so=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002003 build_extra_args = [
2004 "-go_naming_convention=go_default_library",
2005 "-go_naming_convention_external=go_default_library",
2006 ],
2007 )
2008 go_repository(
2009 name = "com_github_willf_bitset",
2010 importpath = "github.com/willf/bitset",
2011 version = "v1.1.11",
2012 sum = "h1:N7Z7E9UvjW+sGsEl7k/SJrvY2reP1A07MrGuCjIOjRE=",
2013 build_tags = [
2014 "selinux",
2015 ],
2016 build_extra_args = [
2017 "-go_naming_convention=go_default_library",
2018 "-go_naming_convention_external=go_default_library",
2019 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002020 )
2021 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002022 name = "com_github_xiang90_probing",
2023 importpath = "github.com/xiang90/probing",
2024 version = "v0.0.0-20190116061207-43a291ad63a2",
2025 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002026 build_extra_args = [
2027 "-go_naming_convention=go_default_library",
2028 "-go_naming_convention_external=go_default_library",
2029 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002030 )
2031 go_repository(
2032 name = "com_github_yalue_native_endian",
2033 importpath = "github.com/yalue/native_endian",
2034 version = "v0.0.0-20180607135909-51013b03be4f",
2035 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002036 build_extra_args = [
2037 "-go_naming_convention=go_default_library",
2038 "-go_naming_convention_external=go_default_library",
2039 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002040 )
2041 go_repository(
2042 name = "io_etcd_go_bbolt",
2043 importpath = "go.etcd.io/bbolt",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002044 version = "v1.3.5",
2045 sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002046 build_extra_args = [
2047 "-go_naming_convention=go_default_library",
2048 "-go_naming_convention_external=go_default_library",
2049 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002050 )
2051 go_repository(
2052 name = "io_etcd_go_etcd",
2053 importpath = "go.etcd.io/etcd",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002054 version = "v0.5.0-alpha.5.0.20200520232829-54ba9589114f",
2055 sum = "h1:pBCD+Z7cy5WPTq+R6MmJJvDRpn88cp7bmTypBsn91g4=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002056 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002057 build_extra_args = [
2058 "-go_naming_convention=go_default_library",
2059 "-go_naming_convention_external=go_default_library",
2060 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002061 )
2062 go_repository(
2063 name = "org_mongodb_go_mongo_driver",
2064 importpath = "go.mongodb.org/mongo-driver",
2065 version = "v1.1.2",
2066 sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002067 build_extra_args = [
2068 "-go_naming_convention=go_default_library",
2069 "-go_naming_convention_external=go_default_library",
2070 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002071 )
2072 go_repository(
2073 name = "io_opencensus_go",
2074 importpath = "go.opencensus.io",
2075 version = "v0.22.0",
2076 sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002077 build_extra_args = [
2078 "-go_naming_convention=go_default_library",
2079 "-go_naming_convention_external=go_default_library",
2080 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002081 )
2082 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002083 name = "net_starlark_go",
2084 importpath = "go.starlark.net",
2085 version = "v0.0.0-20190702223751-32f345186213",
2086 sum = "h1:lkYv5AKwvvduv5XWP6szk/bvvgO6aDeUujhZQXIFTes=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002087 build_extra_args = [
2088 "-go_naming_convention=go_default_library",
2089 "-go_naming_convention_external=go_default_library",
2090 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002091 )
2092 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002093 name = "org_uber_go_atomic",
2094 importpath = "go.uber.org/atomic",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002095 version = "v1.4.0",
2096 sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002097 build_extra_args = [
2098 "-go_naming_convention=go_default_library",
2099 "-go_naming_convention_external=go_default_library",
2100 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002101 )
2102 go_repository(
2103 name = "org_uber_go_multierr",
2104 importpath = "go.uber.org/multierr",
2105 version = "v1.1.0",
2106 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002107 build_extra_args = [
2108 "-go_naming_convention=go_default_library",
2109 "-go_naming_convention_external=go_default_library",
2110 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002111 )
2112 go_repository(
2113 name = "org_uber_go_zap",
2114 importpath = "go.uber.org/zap",
2115 version = "v1.15.0",
2116 sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002117 build_extra_args = [
2118 "-go_naming_convention=go_default_library",
2119 "-go_naming_convention_external=go_default_library",
2120 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002121 )
2122 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002123 name = "org_golang_x_arch",
2124 importpath = "golang.org/x/arch",
2125 version = "v0.0.0-20190927153633-4e8777c89be4",
2126 sum = "h1:QlVATYS7JBoZMVaf+cNjb90WD/beKVHnIxFKT4QaHVI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002127 build_extra_args = [
2128 "-go_naming_convention=go_default_library",
2129 "-go_naming_convention_external=go_default_library",
2130 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002131 )
2132 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002133 name = "org_golang_x_crypto",
2134 importpath = "golang.org/x/crypto",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002135 version = "v0.0.0-20200622213623-75b288015ac9",
2136 sum = "h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=",
2137 build_extra_args = [
2138 "-go_naming_convention=go_default_library",
2139 "-go_naming_convention_external=go_default_library",
2140 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002141 )
2142 go_repository(
2143 name = "org_golang_x_mod",
2144 importpath = "golang.org/x/mod",
2145 version = "v0.3.0",
2146 sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002147 build_extra_args = [
2148 "-go_naming_convention=go_default_library",
2149 "-go_naming_convention_external=go_default_library",
2150 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002151 )
2152 go_repository(
2153 name = "org_golang_x_net",
2154 importpath = "golang.org/x/net",
2155 version = "v0.0.0-20190311183353-d8887717615a",
2156 sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002157 build_extra_args = [
2158 "-go_naming_convention=go_default_library",
2159 "-go_naming_convention_external=go_default_library",
2160 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002161 )
2162 go_repository(
2163 name = "org_golang_x_oauth2",
2164 importpath = "golang.org/x/oauth2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002165 version = "v0.0.0-20191202225959-858c2ad4c8b6",
2166 sum = "h1:pE8b58s1HRDMi8RDc79m0HISf9D4TzseP40cEA6IGfs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002167 build_extra_args = [
2168 "-go_naming_convention=go_default_library",
2169 "-go_naming_convention_external=go_default_library",
2170 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002171 )
2172 go_repository(
2173 name = "org_golang_x_sync",
2174 importpath = "golang.org/x/sync",
2175 version = "v0.0.0-20181108010431-42b317875d0f",
2176 sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002177 build_extra_args = [
2178 "-go_naming_convention=go_default_library",
2179 "-go_naming_convention_external=go_default_library",
2180 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002181 )
2182 go_repository(
2183 name = "org_golang_x_text",
2184 importpath = "golang.org/x/text",
2185 version = "v0.3.0",
2186 sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002187 build_extra_args = [
2188 "-go_naming_convention=go_default_library",
2189 "-go_naming_convention_external=go_default_library",
2190 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002191 )
2192 go_repository(
2193 name = "org_golang_x_time",
2194 importpath = "golang.org/x/time",
2195 version = "v0.0.0-20191024005414-555d28b269f0",
2196 sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002197 build_extra_args = [
2198 "-go_naming_convention=go_default_library",
2199 "-go_naming_convention_external=go_default_library",
2200 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002201 )
2202 go_repository(
Leopold Schabel26d41992020-12-15 19:27:58 +01002203 name = "org_golang_x_tools",
2204 importpath = "golang.org/x/tools",
2205 version = "v0.0.0-20201215171152-6307297f4651",
2206 sum = "h1:bdfqbHwYVvhLEIkESR524rqSsmV06Og3Fgz60LE7vZc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002207 build_extra_args = [
2208 "-go_naming_convention=go_default_library",
2209 "-go_naming_convention_external=go_default_library",
2210 ],
Leopold Schabel26d41992020-12-15 19:27:58 +01002211 )
2212 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002213 name = "org_golang_x_xerrors",
2214 importpath = "golang.org/x/xerrors",
2215 version = "v0.0.0-20191204190536-9bdfabe68543",
2216 sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002217 build_extra_args = [
2218 "-go_naming_convention=go_default_library",
2219 "-go_naming_convention_external=go_default_library",
2220 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002221 )
2222 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02002223 name = "com_zx2c4_golang_wireguard_wgctrl",
2224 importpath = "golang.zx2c4.com/wireguard/wgctrl",
2225 version = "v0.0.0-20200515170644-ec7f26be9d9e",
2226 sum = "h1:fqDhK9OlzaaiFjnyaAfR9Q1RPKCK7OCTLlHGP9f74Nk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002227 build_extra_args = [
2228 "-go_naming_convention=go_default_library",
2229 "-go_naming_convention_external=go_default_library",
2230 ],
Lorenz Brunf042e6f2020-06-24 16:46:09 +02002231 )
2232 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002233 name = "org_gonum_v1_gonum",
2234 importpath = "gonum.org/v1/gonum",
2235 version = "v0.6.2",
2236 sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002237 build_extra_args = [
2238 "-go_naming_convention=go_default_library",
2239 "-go_naming_convention_external=go_default_library",
2240 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002241 )
2242 go_repository(
2243 name = "org_golang_google_genproto",
2244 importpath = "google.golang.org/genproto",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002245 version = "v0.0.0-20200224152610-e50cd9704f63",
2246 sum = "h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002247 build_extra_args = [
2248 "-go_naming_convention=go_default_library",
2249 "-go_naming_convention_external=go_default_library",
2250 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002251 )
2252 go_repository(
2253 name = "org_golang_google_grpc",
2254 importpath = "google.golang.org/grpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002255 version = "v1.29.1",
2256 sum = "h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4=",
2257 build_extra_args = [
2258 "-go_naming_convention=go_default_library",
2259 "-go_naming_convention_external=go_default_library",
2260 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002261 )
2262 go_repository(
2263 name = "in_gopkg_djherbis_times_v1",
2264 importpath = "gopkg.in/djherbis/times.v1",
2265 version = "v1.2.0",
2266 sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002267 build_extra_args = [
2268 "-go_naming_convention=go_default_library",
2269 "-go_naming_convention_external=go_default_library",
2270 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002271 )
2272 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02002273 name = "in_gopkg_fsnotify_v1",
2274 importpath = "gopkg.in/fsnotify.v1",
2275 version = "v1.4.7",
2276 sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002277 build_extra_args = [
2278 "-go_naming_convention=go_default_library",
2279 "-go_naming_convention_external=go_default_library",
2280 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002281 )
2282 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002283 name = "in_gopkg_inf_v0",
2284 importpath = "gopkg.in/inf.v0",
2285 version = "v0.9.1",
2286 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002287 build_extra_args = [
2288 "-go_naming_convention=go_default_library",
2289 "-go_naming_convention_external=go_default_library",
2290 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002291 )
2292 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002293 name = "in_gopkg_natefinch_lumberjack_v2",
2294 importpath = "gopkg.in/natefinch/lumberjack.v2",
2295 version = "v2.0.0",
2296 sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002297 build_extra_args = [
2298 "-go_naming_convention=go_default_library",
2299 "-go_naming_convention_external=go_default_library",
2300 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002301 )
2302 go_repository(
2303 name = "in_gopkg_square_go_jose_v2",
2304 importpath = "gopkg.in/square/go-jose.v2",
2305 version = "v2.2.2",
2306 sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002307 build_extra_args = [
2308 "-go_naming_convention=go_default_library",
2309 "-go_naming_convention_external=go_default_library",
2310 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002311 )
2312 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02002313 name = "in_gopkg_tomb_v1",
2314 importpath = "gopkg.in/tomb.v1",
2315 version = "v1.0.0-20141024135613-dd632973f1e7",
2316 sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002317 build_extra_args = [
2318 "-go_naming_convention=go_default_library",
2319 "-go_naming_convention_external=go_default_library",
2320 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002321 )
2322 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002323 name = "in_gopkg_yaml_v2",
2324 importpath = "gopkg.in/yaml.v2",
2325 version = "v2.2.8",
2326 sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002327 build_extra_args = [
2328 "-go_naming_convention=go_default_library",
2329 "-go_naming_convention_external=go_default_library",
2330 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002331 )
2332 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002333 name = "io_k8s_api",
2334 importpath = "k8s.io/api",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002335 version = "v0.19.0-rc.0",
2336 sum = "h1:K+xi+F3RNAxpFyS1f7uHekMNprjFX7WVZDx2lJE+A3A=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002337 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002338 build_extra_args = [
2339 "-go_naming_convention=go_default_library",
2340 "-go_naming_convention_external=go_default_library",
2341 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002342 )
2343 go_repository(
2344 name = "io_k8s_apiextensions_apiserver",
2345 importpath = "k8s.io/apiextensions-apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002346 version = "v0.19.0-rc.0",
2347 sum = "h1:XGNmUwNvh5gt6sYwCzaxLU6Dr461DVKWlGiaCSKZzyw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002348 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002349 build_extra_args = [
2350 "-go_naming_convention=go_default_library",
2351 "-go_naming_convention_external=go_default_library",
2352 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002353 )
2354 go_repository(
2355 name = "io_k8s_apimachinery",
2356 importpath = "k8s.io/apimachinery",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002357 version = "v0.20.0-alpha.0",
2358 sum = "h1:XCZhrYfFYSC8GBpI4OUJFTH1s5euLMYdoIDQ7u2aDPM=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002359 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002360 build_extra_args = [
2361 "-go_naming_convention=go_default_library",
2362 "-go_naming_convention_external=go_default_library",
2363 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002364 )
2365 go_repository(
2366 name = "io_k8s_apiserver",
2367 importpath = "k8s.io/apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002368 version = "v0.19.0-rc.0",
2369 sum = "h1:SaF/gMgUeDPbQDKHTMvB2yynBUZpp6s4HYQIOx/LdDQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002370 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002371 build_extra_args = [
2372 "-go_naming_convention=go_default_library",
2373 "-go_naming_convention_external=go_default_library",
2374 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002375 )
2376 go_repository(
2377 name = "io_k8s_cli_runtime",
2378 importpath = "k8s.io/cli-runtime",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002379 version = "v0.19.0-rc.0",
2380 sum = "h1:amuzfqubksp5ooo99cpiu6hYe6ua1bGEqw59vZKyRqA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002381 build_extra_args = [
2382 "-go_naming_convention=go_default_library",
2383 "-go_naming_convention_external=go_default_library",
2384 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002385 )
2386 go_repository(
2387 name = "io_k8s_client_go",
2388 importpath = "k8s.io/client-go",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002389 version = "v0.19.0-rc.0",
2390 sum = "h1:6WW8MElhoLeYcLiN4ky1159XG5E39KYdmLCrV/6lNiE=",
Lorenz Bruned0503c2020-07-28 17:21:25 +02002391 pre_patches = [
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002392 "//third_party/go/patches:k8s-client-go.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002393 ],
2394 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002395 build_extra_args = [
2396 "-go_naming_convention=go_default_library",
2397 "-go_naming_convention_external=go_default_library",
2398 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002399 )
2400 go_repository(
2401 name = "io_k8s_cloud_provider",
2402 importpath = "k8s.io/cloud-provider",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002403 version = "v0.19.0-rc.0",
2404 sum = "h1:W1YV1XhdklzoGFZcYmzJnm3D4O6uWaoEAFRF1X4h7uw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002405 build_extra_args = [
2406 "-go_naming_convention=go_default_library",
2407 "-go_naming_convention_external=go_default_library",
2408 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002409 )
2410 go_repository(
2411 name = "io_k8s_cluster_bootstrap",
2412 importpath = "k8s.io/cluster-bootstrap",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002413 version = "v0.19.0-rc.0",
2414 sum = "h1:2OCD/1YLoWlBisd7MPfPM35ZXFct/eA94TkRs/uAuhg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002415 build_extra_args = [
2416 "-go_naming_convention=go_default_library",
2417 "-go_naming_convention_external=go_default_library",
2418 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002419 )
2420 go_repository(
2421 name = "io_k8s_component_base",
2422 importpath = "k8s.io/component-base",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002423 version = "v0.19.0-rc.0",
2424 sum = "h1:S/jt6xey1Wg5i5A9/BCkPYekpjJ5zlfuSCCVlNSJ/Yc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002425 build_extra_args = [
2426 "-go_naming_convention=go_default_library",
2427 "-go_naming_convention_external=go_default_library",
2428 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002429 )
2430 go_repository(
2431 name = "io_k8s_cri_api",
2432 importpath = "k8s.io/cri-api",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002433 version = "v0.19.0-rc.0",
2434 sum = "h1:vXd1YUBZcQkkDb2jYdtaCm+XFA2euMVGVU08EKsN40k=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002435 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002436 build_extra_args = [
2437 "-go_naming_convention=go_default_library",
2438 "-go_naming_convention_external=go_default_library",
2439 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002440 )
2441 go_repository(
2442 name = "io_k8s_csi_translation_lib",
2443 importpath = "k8s.io/csi-translation-lib",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002444 version = "v0.19.0-rc.0",
2445 sum = "h1:2xvrVxnNKtbhilsj/gcD60P9r2PGT+zAEhBWNynySgk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002446 build_extra_args = [
2447 "-go_naming_convention=go_default_library",
2448 "-go_naming_convention_external=go_default_library",
2449 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002450 )
2451 go_repository(
2452 name = "io_k8s_gengo",
2453 importpath = "k8s.io/gengo",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002454 version = "v0.0.0-20200428234225-8167cfdcfc14",
2455 sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002456 build_extra_args = [
2457 "-go_naming_convention=go_default_library",
2458 "-go_naming_convention_external=go_default_library",
2459 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002460 )
2461 go_repository(
2462 name = "io_k8s_heapster",
2463 importpath = "k8s.io/heapster",
2464 version = "v1.2.0-beta.1",
2465 sum = "h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002466 build_extra_args = [
2467 "-go_naming_convention=go_default_library",
2468 "-go_naming_convention_external=go_default_library",
2469 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002470 )
2471 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02002472 name = "io_k8s_klog_v2",
2473 importpath = "k8s.io/klog/v2",
2474 version = "v2.2.0",
2475 sum = "h1:XRvcwJozkgZ1UQJmfMGpvRthQHOvihEhYtDfAaxMz/A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002476 build_extra_args = [
2477 "-go_naming_convention=go_default_library",
2478 "-go_naming_convention_external=go_default_library",
2479 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002480 )
2481 go_repository(
2482 name = "io_k8s_kube_aggregator",
2483 importpath = "k8s.io/kube-aggregator",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002484 version = "v0.19.0-rc.0",
2485 sum = "h1:+u9y1c0R2GF8fuaEnlJrdUtxoEmQOON98oatycSquOA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002486 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002487 build_extra_args = [
2488 "-go_naming_convention=go_default_library",
2489 "-go_naming_convention_external=go_default_library",
2490 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002491 )
2492 go_repository(
2493 name = "io_k8s_kube_controller_manager",
2494 importpath = "k8s.io/kube-controller-manager",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002495 version = "v0.19.0-rc.0",
2496 sum = "h1:b78T0fHLtRqOEe/70UzdTI0mN2hOph/krz9B5yI/DN4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002497 build_extra_args = [
2498 "-go_naming_convention=go_default_library",
2499 "-go_naming_convention_external=go_default_library",
2500 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002501 )
2502 go_repository(
2503 name = "io_k8s_kube_openapi",
2504 importpath = "k8s.io/kube-openapi",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002505 version = "v0.0.0-20200427153329-656914f816f9",
2506 sum = "h1:5NC2ITmvg8RoxoH0wgmL4zn4VZqXGsKbxrikjaQx6s4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002507 build_extra_args = [
2508 "-go_naming_convention=go_default_library",
2509 "-go_naming_convention_external=go_default_library",
2510 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002511 )
2512 go_repository(
2513 name = "io_k8s_kube_proxy",
2514 importpath = "k8s.io/kube-proxy",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002515 version = "v0.19.0-rc.0",
2516 sum = "h1:eYzuS4rtUGH8Nglk40WIWSNQyMSTj8pKcGB14BKVhHg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002517 build_extra_args = [
2518 "-go_naming_convention=go_default_library",
2519 "-go_naming_convention_external=go_default_library",
2520 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002521 )
2522 go_repository(
2523 name = "io_k8s_kube_scheduler",
2524 importpath = "k8s.io/kube-scheduler",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002525 version = "v0.19.0-rc.0",
2526 sum = "h1:KiKDepusDaex8fJj2R0F1y2zNj/oPaCzziC7JiuU09o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002527 build_extra_args = [
2528 "-go_naming_convention=go_default_library",
2529 "-go_naming_convention_external=go_default_library",
2530 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002531 )
2532 go_repository(
2533 name = "io_k8s_kubectl",
2534 importpath = "k8s.io/kubectl",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002535 version = "v0.19.0-rc.0",
2536 sum = "h1:JcCGByIwsglw1eQKUpTfYuxSjvQ5NUQTyxoGp1P/Bx4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002537 build_extra_args = [
2538 "-go_naming_convention=go_default_library",
2539 "-go_naming_convention_external=go_default_library",
2540 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002541 )
2542 go_repository(
2543 name = "io_k8s_kubelet",
2544 importpath = "k8s.io/kubelet",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002545 version = "v0.19.0-rc.0",
2546 sum = "h1:Eii9aWFKr4MtrRSlhxnaLkGZ0WkSb2p6sPyDuMul/Tc=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002547 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002548 build_extra_args = [
2549 "-go_naming_convention=go_default_library",
2550 "-go_naming_convention_external=go_default_library",
2551 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002552 )
2553 go_repository(
2554 name = "io_k8s_kubernetes",
2555 importpath = "k8s.io/kubernetes",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002556 version = "v1.19.0-rc.0",
2557 sum = "h1:vKA6/0biZ/LJUPuWWzn1lfqIQrjfuJBVAtHn7AYScTs=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002558 build_file_proto_mode = "disable",
2559 build_tags = [
2560 "providerless",
2561 ],
2562 patches = [
2563 "//third_party/go/patches:k8s-kubernetes.patch",
2564 "//third_party/go/patches:k8s-kubernetes-build.patch",
Lorenz Brun878f5f92020-05-12 16:15:39 +02002565 "//third_party/go/patches:k8s-native-metrics.patch",
2566 "//third_party/go/patches:k8s-use-native.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002567 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002568 pre_patches = [
2569 "//third_party/go/patches:k8s-e2e-tests-providerless.patch",
2570 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002571 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002572 build_extra_args = [
2573 "-go_naming_convention=go_default_library",
2574 "-go_naming_convention_external=go_default_library",
2575 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002576 )
2577 go_repository(
2578 name = "io_k8s_legacy_cloud_providers",
2579 importpath = "k8s.io/legacy-cloud-providers",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002580 version = "v0.19.0-rc.0",
2581 sum = "h1:cyf6e9AnQL/ATzZHXDqdwlD+lmRhtKCYPcfeFqb8wn0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002582 build_extra_args = [
2583 "-go_naming_convention=go_default_library",
2584 "-go_naming_convention_external=go_default_library",
2585 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002586 )
2587 go_repository(
2588 name = "io_k8s_metrics",
2589 importpath = "k8s.io/metrics",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002590 version = "v0.19.0-rc.0",
2591 sum = "h1:hPBuMVgXakpnLBLe0K9SZxF8T7mH9VaNTY/pKsU/958=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002592 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002593 build_extra_args = [
2594 "-go_naming_convention=go_default_library",
2595 "-go_naming_convention_external=go_default_library",
2596 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002597 )
2598 go_repository(
2599 name = "io_k8s_repo_infra",
2600 importpath = "k8s.io/repo-infra",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002601 version = "v0.1.4-0.20210105022653-a3483874bd37",
2602 sum = "h1:0GPavEcPKBA0rYl7f6dO0mXYmx7t9RaXD3be2g23Ps4=",
2603 build_extra_args = [
2604 "-go_naming_convention=go_default_library",
2605 "-go_naming_convention_external=go_default_library",
2606 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01002607 )
2608 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02002609 name = "io_k8s_sample_apiserver",
2610 importpath = "k8s.io/sample-apiserver",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002611 version = "v0.19.0-rc.0",
2612 sum = "h1:ZsO1AWW9k79zA+tU1nu7nGMGT7XidiA1jDrfBvMZmzg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002613 build_extra_args = [
2614 "-go_naming_convention=go_default_library",
2615 "-go_naming_convention_external=go_default_library",
2616 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002617 )
2618 go_repository(
2619 name = "io_k8s_utils",
2620 importpath = "k8s.io/utils",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002621 version = "v0.0.0-20200619165400-6e3d28b6ed19",
2622 sum = "h1:7Nu2dTj82c6IaWvL7hImJzcXoTPz1MsSCH7r+0m6rfo=",
Lorenz Brun878f5f92020-05-12 16:15:39 +02002623 patches = [
2624 "//third_party/go/patches:k8s-native-mounter.patch",
2625 ],
2626 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002627 build_extra_args = [
2628 "-go_naming_convention=go_default_library",
2629 "-go_naming_convention_external=go_default_library",
2630 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002631 )
2632 go_repository(
2633 name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
2634 importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002635 version = "v0.0.9",
2636 sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002637 build_extra_args = [
2638 "-go_naming_convention=go_default_library",
2639 "-go_naming_convention_external=go_default_library",
2640 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002641 )
2642 go_repository(
2643 name = "io_k8s_sigs_kustomize",
2644 importpath = "sigs.k8s.io/kustomize",
2645 version = "v2.0.3+incompatible",
2646 sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002647 build_extra_args = [
2648 "-go_naming_convention=go_default_library",
2649 "-go_naming_convention_external=go_default_library",
2650 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002651 )
2652 go_repository(
2653 name = "io_k8s_sigs_structured_merge_diff_v3",
2654 importpath = "sigs.k8s.io/structured-merge-diff/v3",
2655 version = "v3.0.0",
2656 sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002657 build_extra_args = [
2658 "-go_naming_convention=go_default_library",
2659 "-go_naming_convention_external=go_default_library",
2660 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002661 )
2662 go_repository(
2663 name = "io_k8s_sigs_yaml",
2664 importpath = "sigs.k8s.io/yaml",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002665 version = "v1.2.0",
2666 sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002667 build_extra_args = [
2668 "-go_naming_convention=go_default_library",
2669 "-go_naming_convention_external=go_default_library",
2670 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002671 )
2672 go_repository(
2673 name = "ml_vbom_util",
2674 importpath = "vbom.ml/util",
2675 version = "v0.0.0-20160121211510-db5cfe13f5cc",
2676 sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002677 build_extra_args = [
2678 "-go_naming_convention=go_default_library",
2679 "-go_naming_convention_external=go_default_library",
2680 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01002681 )