blob: 0dea440b80e5b1252d8358ab2fb8273721279a6f [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",
Lorenz Brun74e8e5c2021-01-26 14:00:50 +0100315 patches = [
316 "//third_party/go/patches:containerd-netns-statedir.patch",
317 ],
318 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100319 build_extra_args = [
320 "-go_naming_convention=go_default_library",
321 "-go_naming_convention_external=go_default_library",
322 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200323 )
324 go_repository(
325 name = "com_github_containerd_fifo",
326 importpath = "github.com/containerd/fifo",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200327 version = "v0.0.0-20200410184934-f15a3290365b",
328 sum = "h1:qUtCegLdOUVfVJOw+KDg6eJyE1TGvLlkGEd1091kSSQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100329 build_extra_args = [
330 "-go_naming_convention=go_default_library",
331 "-go_naming_convention_external=go_default_library",
332 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200333 )
334 go_repository(
335 name = "com_github_containerd_go_cni",
336 importpath = "github.com/containerd/go-cni",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100337 version = "v1.0.1",
338 sum = "h1:VXr2EkOPD0v1gu7CKfof6XzEIDzsE/dI9yj/W7PSWLs=",
339 build_extra_args = [
340 "-go_naming_convention=go_default_library",
341 "-go_naming_convention_external=go_default_library",
342 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200343 )
344 go_repository(
345 name = "com_github_containerd_go_runc",
346 importpath = "github.com/containerd/go-runc",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200347 version = "v0.0.0-20200220073739-7016d3ce2328",
348 sum = "h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100349 build_extra_args = [
350 "-go_naming_convention=go_default_library",
351 "-go_naming_convention_external=go_default_library",
352 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200353 )
354 go_repository(
355 name = "com_github_containerd_imgcrypt",
356 importpath = "github.com/containerd/imgcrypt",
357 version = "v1.0.1",
358 sum = "h1:IyI3IIP4m6zrNFuNFT7HizGVcuD6BYJFpdM1JvPKCbQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100359 build_extra_args = [
360 "-go_naming_convention=go_default_library",
361 "-go_naming_convention_external=go_default_library",
362 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200363 )
364 go_repository(
365 name = "com_github_containerd_ttrpc",
366 importpath = "github.com/containerd/ttrpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100367 version = "v1.0.2-0.20210119122237-222b428f008e",
368 sum = "h1:+Fbjfo26pg4HtkAw9sC/YhUwaAb16355o/J/oHkyCDc=",
369 replace = "github.com/monogon-dev/ttrpc",
370 build_extra_args = [
371 "-go_naming_convention=go_default_library",
372 "-go_naming_convention_external=go_default_library",
373 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200374 )
375 go_repository(
376 name = "com_github_containerd_typeurl",
377 importpath = "github.com/containerd/typeurl",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200378 version = "v1.0.1",
379 sum = "h1:PvuK4E3D5S5q6IqsPDCy928FhP0LUIGcmZ/Yhgp5Djw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100380 build_extra_args = [
381 "-go_naming_convention=go_default_library",
382 "-go_naming_convention_external=go_default_library",
383 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200384 )
385 go_repository(
386 name = "com_github_containernetworking_cni",
387 importpath = "github.com/containernetworking/cni",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100388 version = "v0.8.0",
389 sum = "h1:BT9lpgGoH4jw3lFC7Odz2prU5ruiYKcgAjMCbgybcKI=",
Lorenz Brun74e8e5c2021-01-26 14:00:50 +0100390 patches = [
391 "//third_party/go/patches:cni-fix-cachepath.patch",
392 ],
393 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100394 build_extra_args = [
395 "-go_naming_convention=go_default_library",
396 "-go_naming_convention_external=go_default_library",
397 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200398 )
399 go_repository(
400 name = "com_github_containernetworking_plugins",
401 importpath = "github.com/containernetworking/plugins",
402 version = "v0.8.2",
403 sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100404 build_extra_args = [
405 "-go_naming_convention=go_default_library",
406 "-go_naming_convention_external=go_default_library",
407 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100408 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200409 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200410 name = "com_github_containers_ocicrypt",
411 importpath = "github.com/containers/ocicrypt",
412 version = "v1.0.1",
413 sum = "h1:EToign46OSLTFWnb2oNj9RG3XDnkOX8r28ZIXUuk5Pc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100414 build_extra_args = [
415 "-go_naming_convention=go_default_library",
416 "-go_naming_convention_external=go_default_library",
417 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200418 )
419 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200420 name = "com_github_coredns_coredns",
421 importpath = "github.com/coredns/coredns",
422 version = "v1.7.0",
423 sum = "h1:Tm2ZSdhTk+4okgjUp4K6KYzvBI2u34cdD4fKQRC4Eeo=",
424 pre_patches = [
425 "//third_party/go/patches:coredns-remove-unused-plugins.patch",
426 ],
427 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100428 build_extra_args = [
429 "-go_naming_convention=go_default_library",
430 "-go_naming_convention_external=go_default_library",
431 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200432 )
433 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200434 name = "com_github_coreos_go_iptables",
435 importpath = "github.com/coreos/go-iptables",
436 version = "v0.4.2",
437 sum = "h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100438 build_extra_args = [
439 "-go_naming_convention=go_default_library",
440 "-go_naming_convention_external=go_default_library",
441 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200442 )
443 go_repository(
444 name = "com_github_coreos_go_oidc",
445 importpath = "github.com/coreos/go-oidc",
446 version = "v2.1.0+incompatible",
447 sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100448 build_extra_args = [
449 "-go_naming_convention=go_default_library",
450 "-go_naming_convention_external=go_default_library",
451 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200452 )
453 go_repository(
454 name = "com_github_coreos_go_semver",
455 importpath = "github.com/coreos/go-semver",
456 version = "v0.3.0",
457 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100458 build_extra_args = [
459 "-go_naming_convention=go_default_library",
460 "-go_naming_convention_external=go_default_library",
461 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200462 )
463 go_repository(
464 name = "com_github_coreos_go_systemd",
465 importpath = "github.com/coreos/go-systemd",
466 version = "v0.0.0-20190321100706-95778dfbb74e",
467 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100468 build_extra_args = [
469 "-go_naming_convention=go_default_library",
470 "-go_naming_convention_external=go_default_library",
471 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200472 )
473 go_repository(
474 name = "com_github_coreos_go_systemd_v22",
475 importpath = "github.com/coreos/go-systemd/v22",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100476 version = "v22.1.0",
477 sum = "h1:kq/SbG2BCKLkDKkjQf5OWwKWUKj1lgs3lFI4PxnR5lg=",
478 build_extra_args = [
479 "-go_naming_convention=go_default_library",
480 "-go_naming_convention_external=go_default_library",
481 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200482 )
483 go_repository(
484 name = "com_github_coreos_pkg",
485 importpath = "github.com/coreos/pkg",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200486 version = "v0.0.0-20180928190104-399ea9e2e55f",
487 sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100488 build_extra_args = [
489 "-go_naming_convention=go_default_library",
490 "-go_naming_convention_external=go_default_library",
491 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200492 )
493 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200494 name = "com_github_cosiner_argv",
495 importpath = "github.com/cosiner/argv",
496 version = "v0.0.0-20170225145430-13bacc38a0a5",
497 sum = "h1:rIXlvz2IWiupMFlC45cZCXZFvKX/ExBcSLrDy2G0Lp8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100498 build_extra_args = [
499 "-go_naming_convention=go_default_library",
500 "-go_naming_convention_external=go_default_library",
501 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200502 )
503 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +0200504 name = "com_github_cpuguy83_go_md2man_v2",
505 importpath = "github.com/cpuguy83/go-md2man/v2",
506 version = "v2.0.0",
507 sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100508 build_extra_args = [
509 "-go_naming_convention=go_default_library",
510 "-go_naming_convention_external=go_default_library",
511 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +0200512 )
513 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200514 name = "com_github_cyphar_filepath_securejoin",
515 importpath = "github.com/cyphar/filepath-securejoin",
516 version = "v0.2.2",
517 sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100518 build_extra_args = [
519 "-go_naming_convention=go_default_library",
520 "-go_naming_convention_external=go_default_library",
521 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200522 )
523 go_repository(
524 name = "com_github_davecgh_go_spew",
525 importpath = "github.com/davecgh/go-spew",
526 version = "v1.1.1",
527 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100528 build_extra_args = [
529 "-go_naming_convention=go_default_library",
530 "-go_naming_convention_external=go_default_library",
531 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200532 )
533 go_repository(
534 name = "com_github_daviddengcn_go_colortext",
535 importpath = "github.com/daviddengcn/go-colortext",
536 version = "v0.0.0-20160507010035-511bcaf42ccd",
537 sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100538 build_extra_args = [
539 "-go_naming_convention=go_default_library",
540 "-go_naming_convention_external=go_default_library",
541 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200542 )
543 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200544 name = "com_github_dgrijalva_jwt_go",
545 importpath = "github.com/dgrijalva/jwt-go",
546 version = "v3.2.0+incompatible",
547 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100548 build_extra_args = [
549 "-go_naming_convention=go_default_library",
550 "-go_naming_convention_external=go_default_library",
551 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200552 )
553 go_repository(
554 name = "com_github_diskfs_go_diskfs",
555 importpath = "github.com/diskfs/go-diskfs",
556 version = "v1.0.0",
557 sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100558 build_extra_args = [
559 "-go_naming_convention=go_default_library",
560 "-go_naming_convention_external=go_default_library",
561 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200562 )
563 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200564 name = "com_github_dnstap_golang_dnstap",
565 importpath = "github.com/dnstap/golang-dnstap",
566 version = "v0.2.0",
567 sum = "h1:+NrmP4mkaTeKYV7xJ5FXpUxRn0RpcgoQcsOCTS8WQPk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100568 build_extra_args = [
569 "-go_naming_convention=go_default_library",
570 "-go_naming_convention_external=go_default_library",
571 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200572 )
573 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200574 name = "com_github_docker_distribution",
575 importpath = "github.com/docker/distribution",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200576 version = "v2.7.1+incompatible",
577 sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100578 build_extra_args = [
579 "-go_naming_convention=go_default_library",
580 "-go_naming_convention_external=go_default_library",
581 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200582 )
583 go_repository(
584 name = "com_github_docker_docker",
585 importpath = "github.com/docker/docker",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200586 version = "v17.12.0-ce-rc1.0.20200310163718-4634ce647cf2+incompatible",
587 sum = "h1:ax4NateCD5bjRTqLvQBlFrSUPOoZRgEXWpJ6Bmu6OO0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100588 build_extra_args = [
589 "-go_naming_convention=go_default_library",
590 "-go_naming_convention_external=go_default_library",
591 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200592 )
593 go_repository(
594 name = "com_github_docker_go_connections",
595 importpath = "github.com/docker/go-connections",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200596 version = "v0.4.0",
597 sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100598 build_extra_args = [
599 "-go_naming_convention=go_default_library",
600 "-go_naming_convention_external=go_default_library",
601 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200602 )
603 go_repository(
604 name = "com_github_docker_go_events",
605 importpath = "github.com/docker/go-events",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200606 version = "v0.0.0-20190806004212-e31b211e4f1c",
607 sum = "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100608 build_extra_args = [
609 "-go_naming_convention=go_default_library",
610 "-go_naming_convention_external=go_default_library",
611 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200612 )
613 go_repository(
614 name = "com_github_docker_go_metrics",
615 importpath = "github.com/docker/go-metrics",
616 version = "v0.0.1",
617 sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100618 build_extra_args = [
619 "-go_naming_convention=go_default_library",
620 "-go_naming_convention_external=go_default_library",
621 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200622 )
623 go_repository(
624 name = "com_github_docker_go_units",
625 importpath = "github.com/docker/go-units",
626 version = "v0.4.0",
627 sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100628 build_extra_args = [
629 "-go_naming_convention=go_default_library",
630 "-go_naming_convention_external=go_default_library",
631 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200632 )
633 go_repository(
634 name = "com_github_docker_spdystream",
635 importpath = "github.com/docker/spdystream",
636 version = "v0.0.0-20160310174837-449fdfce4d96",
637 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100638 build_extra_args = [
639 "-go_naming_convention=go_default_library",
640 "-go_naming_convention_external=go_default_library",
641 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200642 )
643 go_repository(
644 name = "com_github_dustin_go_humanize",
645 importpath = "github.com/dustin/go-humanize",
646 version = "v1.0.0",
647 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100648 build_extra_args = [
649 "-go_naming_convention=go_default_library",
650 "-go_naming_convention_external=go_default_library",
651 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200652 )
653 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +0200654 name = "com_github_elazarl_goproxy",
655 importpath = "github.com/elazarl/goproxy",
656 version = "v0.0.0-20180725130230-947c36da3153",
657 sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100658 build_extra_args = [
659 "-go_naming_convention=go_default_library",
660 "-go_naming_convention_external=go_default_library",
661 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +0200662 )
663 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200664 name = "com_github_emicklei_go_restful",
665 importpath = "github.com/emicklei/go-restful",
666 version = "v2.9.5+incompatible",
667 sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100668 build_extra_args = [
669 "-go_naming_convention=go_default_library",
670 "-go_naming_convention_external=go_default_library",
671 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200672 )
673 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200674 name = "com_github_euank_go_kmsg_parser",
675 importpath = "github.com/euank/go-kmsg-parser",
676 version = "v2.0.0+incompatible",
677 sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100678 build_extra_args = [
679 "-go_naming_convention=go_default_library",
680 "-go_naming_convention_external=go_default_library",
681 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200682 )
683 go_repository(
684 name = "com_github_evanphx_json_patch",
685 importpath = "github.com/evanphx/json-patch",
Serge Bazanski19eb0002021-01-21 14:25:25 +0100686 version = "v4.9.0+incompatible",
687 sum = "h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100688 build_extra_args = [
689 "-go_naming_convention=go_default_library",
690 "-go_naming_convention_external=go_default_library",
691 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200692 )
693 go_repository(
694 name = "com_github_exponent_io_jsonpath",
695 importpath = "github.com/exponent-io/jsonpath",
696 version = "v0.0.0-20151013193312-d6023ce2651d",
697 sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100698 build_extra_args = [
699 "-go_naming_convention=go_default_library",
700 "-go_naming_convention_external=go_default_library",
701 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200702 )
703 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200704 name = "com_github_farsightsec_golang_framestream",
705 importpath = "github.com/farsightsec/golang-framestream",
706 version = "v0.0.0-20190425193708-fa4b164d59b8",
707 sum = "h1:/iPdQppoAsTfML+yqFSq2EBChiEMnRkh5WvhFgtWwcU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100708 build_extra_args = [
709 "-go_naming_convention=go_default_library",
710 "-go_naming_convention_external=go_default_library",
711 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200712 )
713 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200714 name = "com_github_fatih_camelcase",
715 importpath = "github.com/fatih/camelcase",
716 version = "v1.0.0",
717 sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100718 build_extra_args = [
719 "-go_naming_convention=go_default_library",
720 "-go_naming_convention_external=go_default_library",
721 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200722 )
723 go_repository(
724 name = "com_github_fatih_color",
725 importpath = "github.com/fatih/color",
726 version = "v1.7.0",
727 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100728 build_extra_args = [
729 "-go_naming_convention=go_default_library",
730 "-go_naming_convention_external=go_default_library",
731 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200732 )
733 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200734 name = "com_github_flynn_go_shlex",
735 importpath = "github.com/flynn/go-shlex",
736 version = "v0.0.0-20150515145356-3f9db97f8568",
737 sum = "h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100738 build_extra_args = [
739 "-go_naming_convention=go_default_library",
740 "-go_naming_convention_external=go_default_library",
741 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +0200742 )
743 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200744 name = "com_github_fullsailor_pkcs7",
745 importpath = "github.com/fullsailor/pkcs7",
746 version = "v0.0.0-20180613152042-8306686428a5",
747 sum = "h1:v+vxrd9XS8uWIXG2RK0BHCnXc30qLVQXVqbK+IOmpXk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100748 build_extra_args = [
749 "-go_naming_convention=go_default_library",
750 "-go_naming_convention_external=go_default_library",
751 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200752 )
753 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200754 name = "com_github_ghodss_yaml",
755 importpath = "github.com/ghodss/yaml",
756 version = "v1.0.0",
757 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100758 build_extra_args = [
759 "-go_naming_convention=go_default_library",
760 "-go_naming_convention_external=go_default_library",
761 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200762 )
763 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200764 name = "com_github_go_delve_delve",
765 importpath = "github.com/go-delve/delve",
766 version = "v1.4.1",
767 sum = "h1:kZs0umEv+VKnK84kY9/ZXWrakdLTeRTyYjFdgLelZCQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100768 build_extra_args = [
769 "-go_naming_convention=go_default_library",
770 "-go_naming_convention_external=go_default_library",
771 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200772 )
773 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +0200774 name = "com_github_go_logr_logr",
775 importpath = "github.com/go-logr/logr",
776 version = "v0.2.0",
777 sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100778 build_extra_args = [
779 "-go_naming_convention=go_default_library",
780 "-go_naming_convention_external=go_default_library",
781 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +0200782 )
783 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200784 name = "com_github_go_openapi_analysis",
785 importpath = "github.com/go-openapi/analysis",
786 version = "v0.19.5",
787 sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100788 build_extra_args = [
789 "-go_naming_convention=go_default_library",
790 "-go_naming_convention_external=go_default_library",
791 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200792 )
793 go_repository(
794 name = "com_github_go_openapi_errors",
795 importpath = "github.com/go-openapi/errors",
796 version = "v0.19.2",
797 sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100798 build_extra_args = [
799 "-go_naming_convention=go_default_library",
800 "-go_naming_convention_external=go_default_library",
801 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200802 )
803 go_repository(
804 name = "com_github_go_openapi_jsonpointer",
805 importpath = "github.com/go-openapi/jsonpointer",
806 version = "v0.19.3",
807 sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100808 build_extra_args = [
809 "-go_naming_convention=go_default_library",
810 "-go_naming_convention_external=go_default_library",
811 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200812 )
813 go_repository(
814 name = "com_github_go_openapi_jsonreference",
815 importpath = "github.com/go-openapi/jsonreference",
816 version = "v0.19.3",
817 sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100818 build_extra_args = [
819 "-go_naming_convention=go_default_library",
820 "-go_naming_convention_external=go_default_library",
821 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200822 )
823 go_repository(
824 name = "com_github_go_openapi_loads",
825 importpath = "github.com/go-openapi/loads",
826 version = "v0.19.4",
827 sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100828 build_extra_args = [
829 "-go_naming_convention=go_default_library",
830 "-go_naming_convention_external=go_default_library",
831 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200832 )
833 go_repository(
834 name = "com_github_go_openapi_runtime",
835 importpath = "github.com/go-openapi/runtime",
836 version = "v0.19.4",
837 sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100838 build_extra_args = [
839 "-go_naming_convention=go_default_library",
840 "-go_naming_convention_external=go_default_library",
841 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200842 )
843 go_repository(
844 name = "com_github_go_openapi_spec",
845 importpath = "github.com/go-openapi/spec",
846 version = "v0.19.3",
847 sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100848 build_extra_args = [
849 "-go_naming_convention=go_default_library",
850 "-go_naming_convention_external=go_default_library",
851 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200852 )
853 go_repository(
854 name = "com_github_go_openapi_strfmt",
855 importpath = "github.com/go-openapi/strfmt",
856 version = "v0.19.3",
857 sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100858 build_extra_args = [
859 "-go_naming_convention=go_default_library",
860 "-go_naming_convention_external=go_default_library",
861 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200862 )
863 go_repository(
864 name = "com_github_go_openapi_swag",
865 importpath = "github.com/go-openapi/swag",
866 version = "v0.19.5",
867 sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100868 build_extra_args = [
869 "-go_naming_convention=go_default_library",
870 "-go_naming_convention_external=go_default_library",
871 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200872 )
873 go_repository(
874 name = "com_github_go_openapi_validate",
875 importpath = "github.com/go-openapi/validate",
876 version = "v0.19.5",
877 sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100878 build_extra_args = [
879 "-go_naming_convention=go_default_library",
880 "-go_naming_convention_external=go_default_library",
881 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200882 )
883 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200884 name = "com_github_go_stack_stack",
885 importpath = "github.com/go-stack/stack",
886 version = "v1.8.0",
887 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100888 build_extra_args = [
889 "-go_naming_convention=go_default_library",
890 "-go_naming_convention_external=go_default_library",
891 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200892 )
893 go_repository(
894 name = "com_github_godbus_dbus_v5",
895 importpath = "github.com/godbus/dbus/v5",
896 version = "v5.0.3",
897 sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100898 build_extra_args = [
899 "-go_naming_convention=go_default_library",
900 "-go_naming_convention_external=go_default_library",
901 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200902 )
903 go_repository(
904 name = "com_github_gofrs_flock",
905 importpath = "github.com/gofrs/flock",
906 version = "v0.6.1-0.20180915234121-886344bea079",
907 sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100908 build_extra_args = [
909 "-go_naming_convention=go_default_library",
910 "-go_naming_convention_external=go_default_library",
911 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200912 )
913 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200914 name = "com_github_gogo_googleapis",
915 importpath = "github.com/gogo/googleapis",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200916 version = "v1.3.2",
917 sum = "h1:kX1es4djPJrsDhY7aZKJy7aZasdcB5oSOEphMjSB53c=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200918 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100919 build_extra_args = [
920 "-go_naming_convention=go_default_library",
921 "-go_naming_convention_external=go_default_library",
922 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200923 )
924 go_repository(
925 name = "com_github_gogo_protobuf",
926 importpath = "github.com/gogo/protobuf",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200927 version = "v1.3.1",
928 sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100929 build_extra_args = [
930 "-go_naming_convention=go_default_library",
931 "-go_naming_convention_external=go_default_library",
932 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200933 )
934 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200935 name = "com_github_golang_groupcache",
936 importpath = "github.com/golang/groupcache",
Lorenz Brunb876fc32020-07-14 13:54:01 +0200937 version = "v0.0.0-20191227052852-215e87163ea7",
938 sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100939 build_extra_args = [
940 "-go_naming_convention=go_default_library",
941 "-go_naming_convention_external=go_default_library",
942 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200943 )
944 go_repository(
945 name = "com_github_google_btree",
946 importpath = "github.com/google/btree",
947 version = "v1.0.0",
948 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100949 build_extra_args = [
950 "-go_naming_convention=go_default_library",
951 "-go_naming_convention_external=go_default_library",
952 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200953 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100954 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +0200955 name = "com_github_google_cadvisor",
956 importpath = "github.com/google/cadvisor",
Serge Bazanski19eb0002021-01-21 14:25:25 +0100957 version = "v0.37.3",
958 sum = "h1:qsH/np74sg1/tEe+bn+e2JIPFxrw6En3gCVuQdolc74=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100959 build_extra_args = [
960 "-go_naming_convention=go_default_library",
961 "-go_naming_convention_external=go_default_library",
962 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100963 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +0100964 go_repository(
Lorenz Bruna50e8452020-09-09 17:09:27 +0200965 name = "com_github_google_certificate_transparency_go",
966 importpath = "github.com/google/certificate-transparency-go",
967 version = "v1.1.0",
968 sum = "h1:10MlrYzh5wfkToxWI4yJzffsxLfxcEDlOATMx/V9Kzw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100969 build_extra_args = [
970 "-go_naming_convention=go_default_library",
971 "-go_naming_convention_external=go_default_library",
972 ],
Lorenz Bruna50e8452020-09-09 17:09:27 +0200973 )
974 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200975 name = "com_github_google_go_cmp",
976 importpath = "github.com/google/go-cmp",
977 version = "v0.4.0",
978 sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100979 build_extra_args = [
980 "-go_naming_convention=go_default_library",
981 "-go_naming_convention_external=go_default_library",
982 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +0200983 )
Serge Bazanskibb7db922020-04-30 12:43:10 +0200984 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200985 name = "com_github_google_go_dap",
986 importpath = "github.com/google/go-dap",
987 version = "v0.2.0",
988 sum = "h1:whjIGQRumwbR40qRU7CEKuFLmePUUc2s4Nt9DoXXxWk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100989 build_extra_args = [
990 "-go_naming_convention=go_default_library",
991 "-go_naming_convention_external=go_default_library",
992 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +0200993 )
994 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +0200995 name = "com_github_google_go_tpm",
996 importpath = "github.com/google/go-tpm",
997 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
998 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +0100999 build_extra_args = [
1000 "-go_naming_convention=go_default_library",
1001 "-go_naming_convention_external=go_default_library",
1002 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001003 )
Serge Bazanskibb7db922020-04-30 12:43:10 +02001004 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001005 name = "com_github_google_go_tpm_tools",
1006 importpath = "github.com/google/go-tpm-tools",
1007 version = "v0.0.0-20190731025042-f8c04ff88181",
1008 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001009 build_extra_args = [
1010 "-go_naming_convention=go_default_library",
1011 "-go_naming_convention_external=go_default_library",
1012 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001013 )
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001014 go_repository(
1015 name = "com_github_google_gofuzz",
1016 importpath = "github.com/google/gofuzz",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001017 version = "v1.1.0",
1018 sum = "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001019 build_extra_args = [
1020 "-go_naming_convention=go_default_library",
1021 "-go_naming_convention_external=go_default_library",
1022 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001023 )
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001024 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001025 name = "com_github_google_gopacket",
1026 importpath = "github.com/google/gopacket",
1027 version = "v1.1.17",
1028 sum = "h1:rMrlX2ZY2UbvT+sdz3+6J+pp2z+msCq9MxTU6ymxbBY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001029 build_extra_args = [
1030 "-go_naming_convention=go_default_library",
1031 "-go_naming_convention_external=go_default_library",
1032 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001033 )
1034 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001035 name = "com_github_google_gvisor",
1036 importpath = "github.com/google/gvisor",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001037 version = "v0.0.0-20201216082428-b645fcd241a8",
1038 sum = "h1:gNssWp0Zg2Ij2OMz4Gi5ciVLnMVGzqfvPOADTN1ou+E=",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001039 patches = [
1040 "//third_party/go/patches:gvisor.patch",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001041 "//third_party/go/patches:gvisor-build-against-newer-runtime-specs.patch",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001042 ],
1043 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001044 build_extra_args = [
1045 "-go_naming_convention=go_default_library",
1046 "-go_naming_convention_external=go_default_library",
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001047 ],
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001048 )
Lorenz Brunc88c82d2020-05-08 14:35:04 +02001049 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001050 name = "com_github_google_nftables",
1051 importpath = "github.com/google/nftables",
1052 version = "v0.0.0-20200316075819-7127d9d22474",
1053 sum = "h1:D6bN82zzK92ywYsE+Zjca7EHZCRZbcNTU3At7WdxQ+c=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001054 build_extra_args = [
1055 "-go_naming_convention=go_default_library",
1056 "-go_naming_convention_external=go_default_library",
1057 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001058 )
1059 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001060 name = "com_github_google_subcommands",
1061 importpath = "github.com/google/subcommands",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001062 version = "v1.0.2-0.20190508160503-636abe8753b8",
1063 sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=",
1064 build_extra_args = [
1065 "-go_naming_convention=go_default_library",
1066 "-go_naming_convention_external=go_default_library",
1067 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001068 )
1069 go_repository(
1070 name = "com_github_google_uuid",
1071 importpath = "github.com/google/uuid",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001072 version = "v1.1.1",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001073 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001074 build_extra_args = [
1075 "-go_naming_convention=go_default_library",
1076 "-go_naming_convention_external=go_default_library",
1077 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001078 )
1079 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001080 name = "com_github_googleapis_gnostic",
1081 importpath = "github.com/googleapis/gnostic",
1082 version = "v0.4.1",
1083 sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001084 build_extra_args = [
1085 "-go_naming_convention=go_default_library",
1086 "-go_naming_convention_external=go_default_library",
1087 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001088 )
1089 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001090 name = "com_github_gorilla_websocket",
1091 importpath = "github.com/gorilla/websocket",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001092 version = "v1.4.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001093 sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001094 build_extra_args = [
1095 "-go_naming_convention=go_default_library",
1096 "-go_naming_convention_external=go_default_library",
1097 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001098 )
1099 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001100 name = "com_github_gregjones_httpcache",
1101 importpath = "github.com/gregjones/httpcache",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001102 version = "v0.0.0-20180305231024-9cad4c3443a7",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001103 sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001104 build_extra_args = [
1105 "-go_naming_convention=go_default_library",
1106 "-go_naming_convention_external=go_default_library",
1107 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001108 )
1109 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001110 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1111 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1112 version = "v1.0.1-0.20190118093823-f849b5445de4",
1113 sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001114 build_extra_args = [
1115 "-go_naming_convention=go_default_library",
1116 "-go_naming_convention_external=go_default_library",
1117 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001118 )
1119 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001120 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1121 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1122 version = "v1.2.0",
1123 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001124 build_extra_args = [
1125 "-go_naming_convention=go_default_library",
1126 "-go_naming_convention_external=go_default_library",
1127 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001128 )
1129 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001130 name = "com_github_grpc_ecosystem_grpc_gateway",
1131 importpath = "github.com/grpc-ecosystem/grpc-gateway",
1132 version = "v1.9.5",
1133 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001134 build_extra_args = [
1135 "-go_naming_convention=go_default_library",
1136 "-go_naming_convention_external=go_default_library",
1137 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001138 )
1139 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001140 name = "com_github_grpc_ecosystem_grpc_opentracing",
1141 importpath = "github.com/grpc-ecosystem/grpc-opentracing",
1142 version = "v0.0.0-20180507213350-8e809c8a8645",
1143 sum = "h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001144 build_extra_args = [
1145 "-go_naming_convention=go_default_library",
1146 "-go_naming_convention_external=go_default_library",
1147 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001148 )
1149 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001150 name = "com_github_grpc_grpc",
1151 importpath = "github.com/grpc/grpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001152 version = "v1.29.1",
1153 sum = "h1:oDOYav2X6WE7espebiQ//iP9N+/gGygUv6XuuyvkFMc=",
1154 build_extra_args = [
1155 "-go_naming_convention=go_default_library",
1156 "-go_naming_convention_external=go_default_library",
1157 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001158 )
1159 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001160 name = "com_github_hashicorp_errwrap",
1161 importpath = "github.com/hashicorp/errwrap",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001162 version = "v1.0.0",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001163 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001164 build_extra_args = [
1165 "-go_naming_convention=go_default_library",
1166 "-go_naming_convention_external=go_default_library",
1167 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001168 )
1169 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001170 name = "com_github_hashicorp_go_multierror",
1171 importpath = "github.com/hashicorp/go-multierror",
1172 version = "v1.0.0",
1173 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001174 build_extra_args = [
1175 "-go_naming_convention=go_default_library",
1176 "-go_naming_convention_external=go_default_library",
1177 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001178 )
1179 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001180 name = "com_github_hashicorp_golang_lru",
1181 importpath = "github.com/hashicorp/golang-lru",
1182 version = "v0.5.3",
1183 sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001184 build_extra_args = [
1185 "-go_naming_convention=go_default_library",
1186 "-go_naming_convention_external=go_default_library",
1187 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001188 )
1189 go_repository(
1190 name = "com_github_hashicorp_hcl",
1191 importpath = "github.com/hashicorp/hcl",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001192 version = "v1.0.0",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001193 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001194 build_extra_args = [
1195 "-go_naming_convention=go_default_library",
1196 "-go_naming_convention_external=go_default_library",
1197 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001198 )
1199 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001200 name = "com_github_hpcloud_tail",
1201 importpath = "github.com/hpcloud/tail",
1202 version = "v1.0.0",
1203 sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001204 build_extra_args = [
1205 "-go_naming_convention=go_default_library",
1206 "-go_naming_convention_external=go_default_library",
1207 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001208 )
1209 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001210 name = "com_github_imdario_mergo",
1211 importpath = "github.com/imdario/mergo",
1212 version = "v0.3.7",
1213 sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001214 build_extra_args = [
1215 "-go_naming_convention=go_default_library",
1216 "-go_naming_convention_external=go_default_library",
1217 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001218 )
1219 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001220 name = "com_github_infobloxopen_go_trees",
1221 importpath = "github.com/infobloxopen/go-trees",
1222 version = "v0.0.0-20190313150506-2af4e13f9062",
1223 sum = "h1:d3VSuNcgTCn21dNMm8g412Fck/XWFmMj4nJhhHT7ZZ0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001224 build_extra_args = [
1225 "-go_naming_convention=go_default_library",
1226 "-go_naming_convention_external=go_default_library",
1227 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001228 )
1229 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001230 name = "com_github_insomniacslk_dhcp",
1231 importpath = "github.com/insomniacslk/dhcp",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001232 version = "v0.0.0-20200922210017-67c425063dca",
1233 sum = "h1:zhwTlFGM8ZkD5J/c43IWkxSJQWzhm20QWou8zajbCck=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001234 build_extra_args = [
1235 "-go_naming_convention=go_default_library",
1236 "-go_naming_convention_external=go_default_library",
1237 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001238 )
1239 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001240 name = "com_github_j_keck_arping",
1241 importpath = "github.com/j-keck/arping",
1242 version = "v0.0.0-20160618110441-2cf9dc699c56",
1243 sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001244 build_extra_args = [
1245 "-go_naming_convention=go_default_library",
1246 "-go_naming_convention_external=go_default_library",
1247 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001248 )
1249 go_repository(
Lorenz Brun878f5f92020-05-12 16:15:39 +02001250 name = "com_github_joho_godotenv",
1251 importpath = "github.com/joho/godotenv",
1252 version = "v1.3.0",
1253 sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001254 build_extra_args = [
1255 "-go_naming_convention=go_default_library",
1256 "-go_naming_convention_external=go_default_library",
1257 ],
Lorenz Brun878f5f92020-05-12 16:15:39 +02001258 )
1259 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001260 name = "com_github_jonboulle_clockwork",
1261 importpath = "github.com/jonboulle/clockwork",
1262 version = "v0.1.0",
1263 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001264 build_extra_args = [
1265 "-go_naming_convention=go_default_library",
1266 "-go_naming_convention_external=go_default_library",
1267 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001268 )
1269 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001270 name = "com_github_json_iterator_go",
1271 importpath = "github.com/json-iterator/go",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001272 version = "v1.1.10",
1273 sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=",
1274 build_extra_args = [
1275 "-go_naming_convention=go_default_library",
1276 "-go_naming_convention_external=go_default_library",
1277 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001278 )
1279 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001280 name = "com_github_karrick_godirwalk",
1281 importpath = "github.com/karrick/godirwalk",
1282 version = "v1.7.5",
1283 sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001284 build_extra_args = [
1285 "-go_naming_convention=go_default_library",
1286 "-go_naming_convention_external=go_default_library",
1287 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001288 )
1289 go_repository(
1290 name = "com_github_kevinburke_go_bindata",
1291 importpath = "github.com/kevinburke/go-bindata",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001292 version = "v3.16.0+incompatible",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001293 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001294 build_extra_args = [
1295 "-go_naming_convention=go_default_library",
1296 "-go_naming_convention_external=go_default_library",
1297 ],
Serge Bazanskibb7db922020-04-30 12:43:10 +02001298 )
1299 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001300 name = "com_github_koneu_natend",
1301 importpath = "github.com/koneu/natend",
1302 version = "v0.0.0-20150829182554-ec0926ea948d",
1303 sum = "h1:MFX8DxRnKMY/2M3H61iSsVbo/n3h0MWGmWNN1UViOU0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001304 build_extra_args = [
1305 "-go_naming_convention=go_default_library",
1306 "-go_naming_convention_external=go_default_library",
1307 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001308 )
1309 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001310 name = "com_github_konsorten_go_windows_terminal_sequences",
1311 importpath = "github.com/konsorten/go-windows-terminal-sequences",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001312 version = "v1.0.3",
1313 sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001314 build_extra_args = [
1315 "-go_naming_convention=go_default_library",
1316 "-go_naming_convention_external=go_default_library",
1317 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001318 )
1319 go_repository(
1320 name = "com_github_kr_pretty",
1321 importpath = "github.com/kr/pretty",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001322 version = "v0.1.0",
1323 sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=",
1324 build_extra_args = [
1325 "-go_naming_convention=go_default_library",
1326 "-go_naming_convention_external=go_default_library",
1327 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001328 )
1329 go_repository(
1330 name = "com_github_kr_pty",
1331 importpath = "github.com/kr/pty",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001332 version = "v1.1.4-0.20190131011033-7dc38fb350b1",
1333 sum = "h1:zc0R6cOw98cMengLA0fvU55mqbnN7sd/tBMLzSejp+M=",
1334 build_extra_args = [
1335 "-go_naming_convention=go_default_library",
1336 "-go_naming_convention_external=go_default_library",
1337 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001338 )
1339 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001340 name = "com_github_liggitt_tabwriter",
1341 importpath = "github.com/liggitt/tabwriter",
1342 version = "v0.0.0-20181228230101-89fcab3d43de",
1343 sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001344 build_extra_args = [
1345 "-go_naming_convention=go_default_library",
1346 "-go_naming_convention_external=go_default_library",
1347 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001348 )
1349 go_repository(
1350 name = "com_github_lithammer_dedent",
1351 importpath = "github.com/lithammer/dedent",
1352 version = "v1.1.0",
1353 sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001354 build_extra_args = [
1355 "-go_naming_convention=go_default_library",
1356 "-go_naming_convention_external=go_default_library",
1357 ],
Serge Bazanski6c8d5f92020-02-11 12:42:29 +01001358 )
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001359 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001360 name = "com_github_magiconair_properties",
1361 importpath = "github.com/magiconair/properties",
Serge Bazanski520c9342020-12-22 10:58:41 +01001362 version = "v1.8.1",
1363 sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001364 build_extra_args = [
1365 "-go_naming_convention=go_default_library",
1366 "-go_naming_convention_external=go_default_library",
1367 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001368 )
1369 go_repository(
1370 name = "com_github_mailru_easyjson",
1371 importpath = "github.com/mailru/easyjson",
1372 version = "v0.7.0",
1373 sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001374 build_extra_args = [
1375 "-go_naming_convention=go_default_library",
1376 "-go_naming_convention_external=go_default_library",
1377 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001378 )
1379 go_repository(
1380 name = "com_github_mattn_go_colorable",
1381 importpath = "github.com/mattn/go-colorable",
1382 version = "v0.0.9",
1383 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001384 build_extra_args = [
1385 "-go_naming_convention=go_default_library",
1386 "-go_naming_convention_external=go_default_library",
1387 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001388 )
1389 go_repository(
1390 name = "com_github_mattn_go_isatty",
1391 importpath = "github.com/mattn/go-isatty",
1392 version = "v0.0.4",
1393 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001394 build_extra_args = [
1395 "-go_naming_convention=go_default_library",
1396 "-go_naming_convention_external=go_default_library",
1397 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001398 )
1399 go_repository(
1400 name = "com_github_mattn_go_runewidth",
1401 importpath = "github.com/mattn/go-runewidth",
1402 version = "v0.0.2",
1403 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001404 build_extra_args = [
1405 "-go_naming_convention=go_default_library",
1406 "-go_naming_convention_external=go_default_library",
1407 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001408 )
1409 go_repository(
Lorenz Brunb60d9cb2021-02-18 17:34:00 +01001410 name = "com_github_mattn_go_shellwords",
1411 importpath = "github.com/mattn/go-shellwords",
1412 version = "v1.0.11",
1413 sum = "h1:vCoR9VPpsk/TZFW2JwK5I9S0xdrtUq2bph6/YjEPnaw=",
1414 build_extra_args = [
1415 "-go_naming_convention=go_default_library",
1416 "-go_naming_convention_external=go_default_library",
1417 ],
1418 )
1419 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001420 name = "com_github_matttproud_golang_protobuf_extensions",
1421 importpath = "github.com/matttproud/golang_protobuf_extensions",
1422 version = "v1.0.1",
1423 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001424 build_extra_args = [
1425 "-go_naming_convention=go_default_library",
1426 "-go_naming_convention_external=go_default_library",
1427 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001428 )
1429 go_repository(
1430 name = "com_github_mdlayher_ethernet",
1431 importpath = "github.com/mdlayher/ethernet",
1432 version = "v0.0.0-20190606142754-0394541c37b7",
1433 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001434 build_extra_args = [
1435 "-go_naming_convention=go_default_library",
1436 "-go_naming_convention_external=go_default_library",
1437 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001438 )
1439 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001440 name = "com_github_mdlayher_genetlink",
1441 importpath = "github.com/mdlayher/genetlink",
1442 version = "v1.0.0",
1443 sum = "h1:OoHN1OdyEIkScEmRgxLEe2M9U8ClMytqA5niynLtfj0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001444 build_extra_args = [
1445 "-go_naming_convention=go_default_library",
1446 "-go_naming_convention_external=go_default_library",
1447 ],
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001448 )
1449 go_repository(
Lorenz Brun52f7f292020-06-24 16:42:02 +02001450 name = "com_github_mdlayher_netlink",
1451 importpath = "github.com/mdlayher/netlink",
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001452 version = "v1.1.0",
1453 sum = "h1:mpdLgm+brq10nI9zM1BpX1kpDbh3NLl3RSnVq6ZSkfg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001454 build_extra_args = [
1455 "-go_naming_convention=go_default_library",
1456 "-go_naming_convention_external=go_default_library",
1457 ],
Lorenz Brun52f7f292020-06-24 16:42:02 +02001458 )
1459 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001460 name = "com_github_mdlayher_raw",
1461 importpath = "github.com/mdlayher/raw",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001462 version = "v0.0.0-20191009151244-50f2db8cc065",
1463 sum = "h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001464 build_extra_args = [
1465 "-go_naming_convention=go_default_library",
1466 "-go_naming_convention_external=go_default_library",
1467 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001468 )
1469 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001470 name = "com_github_miekg_dns",
1471 importpath = "github.com/miekg/dns",
Serge Bazanskid9ed6562021-01-07 16:06:44 +01001472 version = "v1.1.29",
1473 sum = "h1:xHBEhR+t5RzcFJjBLJlax2daXOrTYtr9z4WdKEfWFzg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001474 build_extra_args = [
1475 "-go_naming_convention=go_default_library",
1476 "-go_naming_convention_external=go_default_library",
1477 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001478 )
1479 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001480 name = "com_github_mindprince_gonvml",
1481 importpath = "github.com/mindprince/gonvml",
1482 version = "v0.0.0-20190828220739-9ebdce4bb989",
1483 sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001484 build_extra_args = [
1485 "-go_naming_convention=go_default_library",
1486 "-go_naming_convention_external=go_default_library",
1487 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001488 )
1489 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001490 name = "com_github_mistifyio_go_zfs",
1491 importpath = "github.com/mistifyio/go-zfs",
1492 version = "v2.1.2-0.20190413222219-f784269be439+incompatible",
1493 sum = "h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001494 build_extra_args = [
1495 "-go_naming_convention=go_default_library",
1496 "-go_naming_convention_external=go_default_library",
1497 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +02001498 )
1499 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001500 name = "com_github_mitchellh_go_wordwrap",
1501 importpath = "github.com/mitchellh/go-wordwrap",
1502 version = "v1.0.0",
1503 sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001504 build_extra_args = [
1505 "-go_naming_convention=go_default_library",
1506 "-go_naming_convention_external=go_default_library",
1507 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001508 )
1509 go_repository(
1510 name = "com_github_mitchellh_mapstructure",
1511 importpath = "github.com/mitchellh/mapstructure",
1512 version = "v1.1.2",
1513 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001514 build_extra_args = [
1515 "-go_naming_convention=go_default_library",
1516 "-go_naming_convention_external=go_default_library",
1517 ],
Hendrik Hofstadt79d7a622020-03-11 19:18:56 +01001518 )
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001519 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02001520 name = "com_github_moby_sys_mountinfo",
1521 importpath = "github.com/moby/sys/mountinfo",
1522 version = "v0.1.3",
1523 sum = "h1:KIrhRO14+AkwKvG/g2yIpNMOUVZ02xNhOw8KY1WsLOI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001524 build_extra_args = [
1525 "-go_naming_convention=go_default_library",
1526 "-go_naming_convention_external=go_default_library",
1527 ],
Lorenz Brunb876fc32020-07-14 13:54:01 +02001528 )
1529 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02001530 name = "com_github_moby_term",
1531 importpath = "github.com/moby/term",
Serge Bazanskibb7db922020-04-30 12:43:10 +02001532 version = "v0.0.0-20200312100748-672ec06f55cd",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001533 sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001534 build_extra_args = [
1535 "-go_naming_convention=go_default_library",
1536 "-go_naming_convention_external=go_default_library",
1537 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01001538 )
1539 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001540 name = "com_github_modern_go_concurrent",
1541 importpath = "github.com/modern-go/concurrent",
1542 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
1543 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001544 build_extra_args = [
1545 "-go_naming_convention=go_default_library",
1546 "-go_naming_convention_external=go_default_library",
1547 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001548 )
1549 go_repository(
1550 name = "com_github_modern_go_reflect2",
1551 importpath = "github.com/modern-go/reflect2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001552 version = "v1.0.1",
1553 sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001554 build_extra_args = [
1555 "-go_naming_convention=go_default_library",
1556 "-go_naming_convention_external=go_default_library",
1557 ],
1558 )
1559 go_repository(
1560 name = "com_github_mohae_deepcopy",
1561 importpath = "github.com/mohae/deepcopy",
1562 version = "v0.0.0-20170308212314-bb9b5e7adda9",
1563 sum = "h1:Sha2bQdoWE5YQPTlJOL31rmce94/tYi113SlFo1xQ2c=",
1564 build_extra_args = [
1565 "-go_naming_convention=go_default_library",
1566 "-go_naming_convention_external=go_default_library",
1567 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001568 )
1569 go_repository(
1570 name = "com_github_morikuni_aec",
1571 importpath = "github.com/morikuni/aec",
1572 version = "v1.0.0",
1573 sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001574 build_extra_args = [
1575 "-go_naming_convention=go_default_library",
1576 "-go_naming_convention_external=go_default_library",
1577 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001578 )
1579 go_repository(
1580 name = "com_github_mrunalp_fileutils",
1581 importpath = "github.com/mrunalp/fileutils",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001582 version = "v0.0.0-20200520151820-abd8a0e76976",
1583 sum = "h1:aZQToFSLH8ejFeSkTc3r3L4dPImcj7Ib/KgmkQqbGGg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001584 build_extra_args = [
1585 "-go_naming_convention=go_default_library",
1586 "-go_naming_convention_external=go_default_library",
1587 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001588 )
1589 go_repository(
1590 name = "com_github_munnerz_goautoneg",
1591 importpath = "github.com/munnerz/goautoneg",
1592 version = "v0.0.0-20191010083416-a7dc8b61c822",
1593 sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001594 build_extra_args = [
1595 "-go_naming_convention=go_default_library",
1596 "-go_naming_convention_external=go_default_library",
1597 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001598 )
1599 go_repository(
1600 name = "com_github_mxk_go_flowrate",
1601 importpath = "github.com/mxk/go-flowrate",
1602 version = "v0.0.0-20140419014527-cca7078d478f",
1603 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001604 build_extra_args = [
1605 "-go_naming_convention=go_default_library",
1606 "-go_naming_convention_external=go_default_library",
1607 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001608 )
1609 go_repository(
1610 name = "com_github_olekukonko_tablewriter",
1611 importpath = "github.com/olekukonko/tablewriter",
1612 version = "v0.0.0-20170122224234-a0225b3f23b5",
1613 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001614 build_extra_args = [
1615 "-go_naming_convention=go_default_library",
1616 "-go_naming_convention_external=go_default_library",
1617 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001618 )
1619 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02001620 name = "com_github_onsi_ginkgo",
1621 importpath = "github.com/onsi/ginkgo",
1622 version = "v1.11.0",
1623 sum = "h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001624 build_extra_args = [
1625 "-go_naming_convention=go_default_library",
1626 "-go_naming_convention_external=go_default_library",
1627 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001628 )
1629 go_repository(
1630 name = "com_github_onsi_gomega",
1631 importpath = "github.com/onsi/gomega",
1632 version = "v1.7.0",
1633 sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001634 build_extra_args = [
1635 "-go_naming_convention=go_default_library",
1636 "-go_naming_convention_external=go_default_library",
1637 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02001638 )
1639 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001640 name = "com_github_opencontainers_go_digest",
1641 importpath = "github.com/opencontainers/go-digest",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001642 version = "v1.0.0",
1643 sum = "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001644 build_extra_args = [
1645 "-go_naming_convention=go_default_library",
1646 "-go_naming_convention_external=go_default_library",
1647 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001648 )
1649 go_repository(
1650 name = "com_github_opencontainers_image_spec",
1651 importpath = "github.com/opencontainers/image-spec",
1652 version = "v1.0.1",
1653 sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001654 build_extra_args = [
1655 "-go_naming_convention=go_default_library",
1656 "-go_naming_convention_external=go_default_library",
1657 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001658 )
1659 go_repository(
1660 name = "com_github_opencontainers_runc",
1661 importpath = "github.com/opencontainers/runc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001662 version = "v1.0.0-rc92",
1663 sum = "h1:+IczUKCRzDzFDnw99O/PAqrcBBCoRp9xN3cB1SYSNS4=",
1664 build_extra_args = [
1665 "-go_naming_convention=go_default_library",
1666 "-go_naming_convention_external=go_default_library",
1667 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001668 )
1669 go_repository(
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001670 name = "com_github_opencontainers_runtime_spec",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001671 importpath = "github.com/opencontainers/runtime-spec",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001672 version = "v1.0.3-0.20200728170252-4d89ac9fbff6",
1673 sum = "h1:NhsM2gc769rVWDqJvapK37r+7+CBXI8xHhnfnt8uQsg=",
1674 build_extra_args = [
1675 "-go_naming_convention=go_default_library",
1676 "-go_naming_convention_external=go_default_library",
1677 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001678 )
1679 go_repository(
1680 name = "com_github_opencontainers_selinux",
1681 importpath = "github.com/opencontainers/selinux",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001682 version = "v1.6.0",
1683 sum = "h1:+bIAS/Za3q5FTwWym4fTB0vObnfCf3G/NC7K6Jx62mY=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001684 build_tags = [
1685 "selinux",
1686 ],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001687 build_extra_args = [
1688 "-go_naming_convention=go_default_library",
1689 "-go_naming_convention_external=go_default_library",
1690 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001691 )
1692 go_repository(
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001693 name = "com_github_opentracing_opentracing_go",
1694 importpath = "github.com/opentracing/opentracing-go",
1695 version = "v1.1.0",
1696 sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001697 build_extra_args = [
1698 "-go_naming_convention=go_default_library",
1699 "-go_naming_convention_external=go_default_library",
1700 ],
Lorenz Brunb29e0b02020-07-28 17:26:12 +02001701 )
1702 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001703 name = "com_github_peterbourgon_diskv",
1704 importpath = "github.com/peterbourgon/diskv",
1705 version = "v2.0.1+incompatible",
1706 sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001707 build_extra_args = [
1708 "-go_naming_convention=go_default_library",
1709 "-go_naming_convention_external=go_default_library",
1710 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001711 )
1712 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001713 name = "com_github_peterh_liner",
1714 importpath = "github.com/peterh/liner",
1715 version = "v0.0.0-20170317030525-88609521dc4b",
1716 sum = "h1:8uaXtUkxiy+T/zdLWuxa/PG4so0TPZDZfafFNNSaptE=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001717 build_extra_args = [
1718 "-go_naming_convention=go_default_library",
1719 "-go_naming_convention_external=go_default_library",
1720 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02001721 )
1722 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001723 name = "com_github_pkg_errors",
1724 importpath = "github.com/pkg/errors",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001725 version = "v0.9.1",
1726 sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001727 build_extra_args = [
1728 "-go_naming_convention=go_default_library",
1729 "-go_naming_convention_external=go_default_library",
1730 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001731 )
1732 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001733 name = "com_github_pquerna_cachecontrol",
1734 importpath = "github.com/pquerna/cachecontrol",
1735 version = "v0.0.0-20171018203845-0dec1b30a021",
1736 sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001737 build_extra_args = [
1738 "-go_naming_convention=go_default_library",
1739 "-go_naming_convention_external=go_default_library",
1740 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001741 )
1742 go_repository(
1743 name = "com_github_prometheus_client_golang",
1744 importpath = "github.com/prometheus/client_golang",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001745 version = "v1.6.0",
1746 sum = "h1:YVPodQOcK15POxhgARIvnDRVpLcuK8mglnMrWfyrw6A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001747 build_extra_args = [
1748 "-go_naming_convention=go_default_library",
1749 "-go_naming_convention_external=go_default_library",
1750 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001751 )
1752 go_repository(
1753 name = "com_github_prometheus_client_model",
1754 importpath = "github.com/prometheus/client_model",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001755 version = "v0.2.0",
1756 sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001757 build_extra_args = [
1758 "-go_naming_convention=go_default_library",
1759 "-go_naming_convention_external=go_default_library",
1760 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001761 )
1762 go_repository(
1763 name = "com_github_prometheus_common",
1764 importpath = "github.com/prometheus/common",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001765 version = "v0.9.1",
1766 sum = "h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001767 build_extra_args = [
1768 "-go_naming_convention=go_default_library",
1769 "-go_naming_convention_external=go_default_library",
1770 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001771 )
1772 go_repository(
1773 name = "com_github_prometheus_procfs",
1774 importpath = "github.com/prometheus/procfs",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001775 version = "v0.0.11",
1776 sum = "h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001777 build_extra_args = [
1778 "-go_naming_convention=go_default_library",
1779 "-go_naming_convention_external=go_default_library",
1780 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001781 )
1782 go_repository(
1783 name = "com_github_rekby_gpt",
1784 importpath = "github.com/rekby/gpt",
1785 version = "v0.0.0-20200219180433-a930afbc6edc",
1786 sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001787 build_extra_args = [
1788 "-go_naming_convention=go_default_library",
1789 "-go_naming_convention_external=go_default_library",
1790 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001791 )
1792 go_repository(
1793 name = "com_github_robfig_cron",
1794 importpath = "github.com/robfig/cron",
1795 version = "v1.1.0",
1796 sum = "h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001797 build_extra_args = [
1798 "-go_naming_convention=go_default_library",
1799 "-go_naming_convention_external=go_default_library",
1800 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001801 )
1802 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001803 name = "com_github_russross_blackfriday",
1804 importpath = "github.com/russross/blackfriday",
1805 version = "v1.5.2",
1806 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001807 build_extra_args = [
1808 "-go_naming_convention=go_default_library",
1809 "-go_naming_convention_external=go_default_library",
1810 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001811 )
1812 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001813 name = "com_github_russross_blackfriday_v2",
1814 importpath = "github.com/russross/blackfriday/v2",
1815 version = "v2.0.1",
1816 sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001817 build_extra_args = [
1818 "-go_naming_convention=go_default_library",
1819 "-go_naming_convention_external=go_default_library",
1820 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001821 )
1822 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001823 name = "com_github_safchain_ethtool",
1824 importpath = "github.com/safchain/ethtool",
1825 version = "v0.0.0-20190326074333-42ed695e3de8",
1826 sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001827 build_extra_args = [
1828 "-go_naming_convention=go_default_library",
1829 "-go_naming_convention_external=go_default_library",
1830 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001831 )
1832 go_repository(
Lorenz Brunb682ba52020-07-08 14:51:36 +02001833 name = "com_github_sbezverk_nfproxy",
1834 importpath = "github.com/sbezverk/nfproxy",
1835 version = "v0.0.0-20200514180651-7fac5f39824e",
1836 sum = "h1:fJ2lHQ7ZUjmgJbvVQ509ioBmrGHcbvlwfjUieExw/dU=",
1837 patches = [
1838 "//third_party/go/patches:nfproxy.patch",
1839 ],
1840 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001841 build_extra_args = [
1842 "-go_naming_convention=go_default_library",
1843 "-go_naming_convention_external=go_default_library",
1844 ],
Lorenz Brunb682ba52020-07-08 14:51:36 +02001845 )
1846 go_repository(
1847 name = "com_github_sbezverk_nftableslib",
1848 importpath = "github.com/sbezverk/nftableslib",
1849 version = "v0.0.0-20200402150358-c20bed91f482",
1850 sum = "h1:k7gEZ/EwJhHDTRXFUZQlE4/p1cmoha7zL7PWCDG3ZHQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001851 build_extra_args = [
1852 "-go_naming_convention=go_default_library",
1853 "-go_naming_convention_external=go_default_library",
1854 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001855 )
1856 go_repository(
Serge Bazanski14cf7502020-05-28 14:29:56 +02001857 name = "com_github_shurcool_sanitized_anchor_name",
1858 importpath = "github.com/shurcooL/sanitized_anchor_name",
1859 version = "v1.0.0",
1860 sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001861 build_extra_args = [
1862 "-go_naming_convention=go_default_library",
1863 "-go_naming_convention_external=go_default_library",
1864 ],
Serge Bazanski14cf7502020-05-28 14:29:56 +02001865 )
1866 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001867 name = "com_github_sirupsen_logrus",
1868 importpath = "github.com/sirupsen/logrus",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001869 version = "v1.6.0",
1870 sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001871 build_extra_args = [
1872 "-go_naming_convention=go_default_library",
1873 "-go_naming_convention_external=go_default_library",
1874 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001875 )
1876 go_repository(
1877 name = "com_github_soheilhy_cmux",
1878 importpath = "github.com/soheilhy/cmux",
1879 version = "v0.1.4",
1880 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001881 build_extra_args = [
1882 "-go_naming_convention=go_default_library",
1883 "-go_naming_convention_external=go_default_library",
1884 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001885 )
1886 go_repository(
1887 name = "com_github_spf13_afero",
1888 importpath = "github.com/spf13/afero",
1889 version = "v1.2.2",
1890 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001891 build_extra_args = [
1892 "-go_naming_convention=go_default_library",
1893 "-go_naming_convention_external=go_default_library",
1894 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001895 )
1896 go_repository(
1897 name = "com_github_spf13_cast",
1898 importpath = "github.com/spf13/cast",
Serge Bazanski520c9342020-12-22 10:58:41 +01001899 version = "v1.3.0",
1900 sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001901 build_extra_args = [
1902 "-go_naming_convention=go_default_library",
1903 "-go_naming_convention_external=go_default_library",
1904 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001905 )
1906 go_repository(
1907 name = "com_github_spf13_cobra",
1908 importpath = "github.com/spf13/cobra",
Serge Bazanski14cf7502020-05-28 14:29:56 +02001909 version = "v1.0.0",
1910 sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001911 build_extra_args = [
1912 "-go_naming_convention=go_default_library",
1913 "-go_naming_convention_external=go_default_library",
1914 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001915 )
1916 go_repository(
1917 name = "com_github_spf13_jwalterweatherman",
1918 importpath = "github.com/spf13/jwalterweatherman",
Serge Bazanski520c9342020-12-22 10:58:41 +01001919 version = "v1.1.0",
1920 sum = "h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001921 build_extra_args = [
1922 "-go_naming_convention=go_default_library",
1923 "-go_naming_convention_external=go_default_library",
1924 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001925 )
1926 go_repository(
1927 name = "com_github_spf13_pflag",
1928 importpath = "github.com/spf13/pflag",
1929 version = "v1.0.5",
1930 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001931 build_extra_args = [
1932 "-go_naming_convention=go_default_library",
1933 "-go_naming_convention_external=go_default_library",
1934 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001935 )
1936 go_repository(
1937 name = "com_github_spf13_viper",
1938 importpath = "github.com/spf13/viper",
Serge Bazanski520c9342020-12-22 10:58:41 +01001939 version = "v1.4.0",
1940 sum = "h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001941 build_extra_args = [
1942 "-go_naming_convention=go_default_library",
1943 "-go_naming_convention_external=go_default_library",
1944 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001945 )
1946 go_repository(
1947 name = "com_github_stretchr_testify",
1948 importpath = "github.com/stretchr/testify",
1949 version = "v1.4.0",
1950 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001951 build_extra_args = [
1952 "-go_naming_convention=go_default_library",
1953 "-go_naming_convention_external=go_default_library",
1954 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001955 )
1956 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001957 name = "com_github_syndtr_gocapability",
1958 importpath = "github.com/syndtr/gocapability",
1959 version = "v0.0.0-20180916011248-d98352740cb2",
1960 sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001961 build_extra_args = [
1962 "-go_naming_convention=go_default_library",
1963 "-go_naming_convention_external=go_default_library",
1964 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001965 )
1966 go_repository(
1967 name = "com_github_tchap_go_patricia",
1968 importpath = "github.com/tchap/go-patricia",
1969 version = "v2.2.6+incompatible",
1970 sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001971 build_extra_args = [
1972 "-go_naming_convention=go_default_library",
1973 "-go_naming_convention_external=go_default_library",
1974 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001975 )
1976 go_repository(
1977 name = "com_github_tmc_grpc_websocket_proxy",
1978 importpath = "github.com/tmc/grpc-websocket-proxy",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001979 version = "v0.0.0-20190109142713-0ad062ec5ee5",
1980 sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001981 build_extra_args = [
1982 "-go_naming_convention=go_default_library",
1983 "-go_naming_convention_external=go_default_library",
1984 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001985 )
1986 go_repository(
1987 name = "com_github_u_root_u_root",
1988 importpath = "github.com/u-root/u-root",
Lorenz Brun56a7ae62020-10-29 11:03:30 +01001989 version = "v7.0.0+incompatible",
1990 sum = "h1:u+KSS04pSxJGI5E7WE4Bs9+Zd75QjFv+REkjy/aoAc8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01001991 build_extra_args = [
1992 "-go_naming_convention=go_default_library",
1993 "-go_naming_convention_external=go_default_library",
1994 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02001995 )
1996 go_repository(
1997 name = "com_github_urfave_cli",
1998 importpath = "github.com/urfave/cli",
Lorenz Brunb876fc32020-07-14 13:54:01 +02001999 version = "v1.22.1",
2000 sum = "h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002001 build_extra_args = [
2002 "-go_naming_convention=go_default_library",
2003 "-go_naming_convention_external=go_default_library",
2004 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002005 )
2006 go_repository(
2007 name = "com_github_vishvananda_netlink",
2008 importpath = "github.com/vishvananda/netlink",
2009 version = "v1.1.0",
2010 sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002011 build_extra_args = [
2012 "-go_naming_convention=go_default_library",
2013 "-go_naming_convention_external=go_default_library",
2014 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002015 )
2016 go_repository(
2017 name = "com_github_vishvananda_netns",
2018 importpath = "github.com/vishvananda/netns",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002019 version = "v0.0.0-20200520041808-52d707b772fe",
2020 sum = "h1:mjAZxE1nh8yvuwhGHpdDqdhtNu2dgbpk93TwoXuk5so=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002021 build_extra_args = [
2022 "-go_naming_convention=go_default_library",
2023 "-go_naming_convention_external=go_default_library",
2024 ],
2025 )
2026 go_repository(
2027 name = "com_github_willf_bitset",
2028 importpath = "github.com/willf/bitset",
2029 version = "v1.1.11",
2030 sum = "h1:N7Z7E9UvjW+sGsEl7k/SJrvY2reP1A07MrGuCjIOjRE=",
2031 build_tags = [
2032 "selinux",
2033 ],
2034 build_extra_args = [
2035 "-go_naming_convention=go_default_library",
2036 "-go_naming_convention_external=go_default_library",
2037 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002038 )
2039 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002040 name = "com_github_xiang90_probing",
2041 importpath = "github.com/xiang90/probing",
2042 version = "v0.0.0-20190116061207-43a291ad63a2",
2043 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002044 build_extra_args = [
2045 "-go_naming_convention=go_default_library",
2046 "-go_naming_convention_external=go_default_library",
2047 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002048 )
2049 go_repository(
2050 name = "com_github_yalue_native_endian",
2051 importpath = "github.com/yalue/native_endian",
2052 version = "v0.0.0-20180607135909-51013b03be4f",
2053 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002054 build_extra_args = [
2055 "-go_naming_convention=go_default_library",
2056 "-go_naming_convention_external=go_default_library",
2057 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002058 )
2059 go_repository(
2060 name = "io_etcd_go_bbolt",
2061 importpath = "go.etcd.io/bbolt",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002062 version = "v1.3.5",
2063 sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002064 build_extra_args = [
2065 "-go_naming_convention=go_default_library",
2066 "-go_naming_convention_external=go_default_library",
2067 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002068 )
2069 go_repository(
2070 name = "io_etcd_go_etcd",
2071 importpath = "go.etcd.io/etcd",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002072 version = "v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5",
2073 sum = "h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002074 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002075 build_extra_args = [
2076 "-go_naming_convention=go_default_library",
2077 "-go_naming_convention_external=go_default_library",
2078 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002079 )
2080 go_repository(
2081 name = "org_mongodb_go_mongo_driver",
2082 importpath = "go.mongodb.org/mongo-driver",
2083 version = "v1.1.2",
2084 sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002085 build_extra_args = [
2086 "-go_naming_convention=go_default_library",
2087 "-go_naming_convention_external=go_default_library",
2088 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002089 )
2090 go_repository(
2091 name = "io_opencensus_go",
2092 importpath = "go.opencensus.io",
2093 version = "v0.22.0",
2094 sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002095 build_extra_args = [
2096 "-go_naming_convention=go_default_library",
2097 "-go_naming_convention_external=go_default_library",
2098 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002099 )
2100 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002101 name = "net_starlark_go",
2102 importpath = "go.starlark.net",
2103 version = "v0.0.0-20190702223751-32f345186213",
2104 sum = "h1:lkYv5AKwvvduv5XWP6szk/bvvgO6aDeUujhZQXIFTes=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002105 build_extra_args = [
2106 "-go_naming_convention=go_default_library",
2107 "-go_naming_convention_external=go_default_library",
2108 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002109 )
2110 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002111 name = "org_uber_go_atomic",
2112 importpath = "go.uber.org/atomic",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002113 version = "v1.4.0",
2114 sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002115 build_extra_args = [
2116 "-go_naming_convention=go_default_library",
2117 "-go_naming_convention_external=go_default_library",
2118 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002119 )
2120 go_repository(
2121 name = "org_uber_go_multierr",
2122 importpath = "go.uber.org/multierr",
2123 version = "v1.1.0",
2124 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002125 build_extra_args = [
2126 "-go_naming_convention=go_default_library",
2127 "-go_naming_convention_external=go_default_library",
2128 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002129 )
2130 go_repository(
2131 name = "org_uber_go_zap",
2132 importpath = "go.uber.org/zap",
2133 version = "v1.15.0",
2134 sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002135 build_extra_args = [
2136 "-go_naming_convention=go_default_library",
2137 "-go_naming_convention_external=go_default_library",
2138 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002139 )
2140 go_repository(
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002141 name = "org_golang_x_arch",
2142 importpath = "golang.org/x/arch",
2143 version = "v0.0.0-20190927153633-4e8777c89be4",
2144 sum = "h1:QlVATYS7JBoZMVaf+cNjb90WD/beKVHnIxFKT4QaHVI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002145 build_extra_args = [
2146 "-go_naming_convention=go_default_library",
2147 "-go_naming_convention_external=go_default_library",
2148 ],
Leopold Schabel3058b7a2020-06-03 17:51:07 +02002149 )
2150 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002151 name = "org_golang_x_crypto",
2152 importpath = "golang.org/x/crypto",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002153 version = "v0.0.0-20200622213623-75b288015ac9",
2154 sum = "h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=",
2155 build_extra_args = [
2156 "-go_naming_convention=go_default_library",
2157 "-go_naming_convention_external=go_default_library",
2158 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002159 )
2160 go_repository(
2161 name = "org_golang_x_mod",
2162 importpath = "golang.org/x/mod",
2163 version = "v0.3.0",
2164 sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002165 build_extra_args = [
2166 "-go_naming_convention=go_default_library",
2167 "-go_naming_convention_external=go_default_library",
2168 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002169 )
2170 go_repository(
2171 name = "org_golang_x_net",
2172 importpath = "golang.org/x/net",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002173 version = "v0.0.0-20201110031124-69a78807bb2b",
2174 sum = "h1:uwuIcX0g4Yl1NC5XAz37xsr2lTtcqevgzYNVt49waME=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002175 build_extra_args = [
2176 "-go_naming_convention=go_default_library",
2177 "-go_naming_convention_external=go_default_library",
2178 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002179 )
2180 go_repository(
2181 name = "org_golang_x_oauth2",
2182 importpath = "golang.org/x/oauth2",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002183 version = "v0.0.0-20191202225959-858c2ad4c8b6",
2184 sum = "h1:pE8b58s1HRDMi8RDc79m0HISf9D4TzseP40cEA6IGfs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002185 build_extra_args = [
2186 "-go_naming_convention=go_default_library",
2187 "-go_naming_convention_external=go_default_library",
2188 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002189 )
2190 go_repository(
2191 name = "org_golang_x_sync",
2192 importpath = "golang.org/x/sync",
2193 version = "v0.0.0-20181108010431-42b317875d0f",
2194 sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002195 build_extra_args = [
2196 "-go_naming_convention=go_default_library",
2197 "-go_naming_convention_external=go_default_library",
2198 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002199 )
2200 go_repository(
2201 name = "org_golang_x_text",
2202 importpath = "golang.org/x/text",
2203 version = "v0.3.0",
2204 sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002205 build_extra_args = [
2206 "-go_naming_convention=go_default_library",
2207 "-go_naming_convention_external=go_default_library",
2208 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002209 )
2210 go_repository(
2211 name = "org_golang_x_time",
2212 importpath = "golang.org/x/time",
2213 version = "v0.0.0-20191024005414-555d28b269f0",
2214 sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002215 build_extra_args = [
2216 "-go_naming_convention=go_default_library",
2217 "-go_naming_convention_external=go_default_library",
2218 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002219 )
2220 go_repository(
Leopold Schabel26d41992020-12-15 19:27:58 +01002221 name = "org_golang_x_tools",
2222 importpath = "golang.org/x/tools",
2223 version = "v0.0.0-20201215171152-6307297f4651",
2224 sum = "h1:bdfqbHwYVvhLEIkESR524rqSsmV06Og3Fgz60LE7vZc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002225 build_extra_args = [
2226 "-go_naming_convention=go_default_library",
2227 "-go_naming_convention_external=go_default_library",
2228 ],
Leopold Schabel26d41992020-12-15 19:27:58 +01002229 )
2230 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002231 name = "org_golang_x_xerrors",
2232 importpath = "golang.org/x/xerrors",
2233 version = "v0.0.0-20191204190536-9bdfabe68543",
2234 sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002235 build_extra_args = [
2236 "-go_naming_convention=go_default_library",
2237 "-go_naming_convention_external=go_default_library",
2238 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002239 )
2240 go_repository(
Lorenz Brunf042e6f2020-06-24 16:46:09 +02002241 name = "com_zx2c4_golang_wireguard_wgctrl",
2242 importpath = "golang.zx2c4.com/wireguard/wgctrl",
2243 version = "v0.0.0-20200515170644-ec7f26be9d9e",
2244 sum = "h1:fqDhK9OlzaaiFjnyaAfR9Q1RPKCK7OCTLlHGP9f74Nk=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002245 build_extra_args = [
2246 "-go_naming_convention=go_default_library",
2247 "-go_naming_convention_external=go_default_library",
2248 ],
Lorenz Brunf042e6f2020-06-24 16:46:09 +02002249 )
2250 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002251 name = "org_gonum_v1_gonum",
2252 importpath = "gonum.org/v1/gonum",
2253 version = "v0.6.2",
2254 sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002255 build_extra_args = [
2256 "-go_naming_convention=go_default_library",
2257 "-go_naming_convention_external=go_default_library",
2258 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002259 )
2260 go_repository(
2261 name = "org_golang_google_genproto",
2262 importpath = "google.golang.org/genproto",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002263 version = "v0.0.0-20200224152610-e50cd9704f63",
2264 sum = "h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002265 build_extra_args = [
2266 "-go_naming_convention=go_default_library",
2267 "-go_naming_convention_external=go_default_library",
2268 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002269 )
2270 go_repository(
2271 name = "org_golang_google_grpc",
2272 importpath = "google.golang.org/grpc",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002273 version = "v1.29.1",
2274 sum = "h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4=",
2275 build_extra_args = [
2276 "-go_naming_convention=go_default_library",
2277 "-go_naming_convention_external=go_default_library",
2278 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002279 )
2280 go_repository(
2281 name = "in_gopkg_djherbis_times_v1",
2282 importpath = "gopkg.in/djherbis/times.v1",
2283 version = "v1.2.0",
2284 sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002285 build_extra_args = [
2286 "-go_naming_convention=go_default_library",
2287 "-go_naming_convention_external=go_default_library",
2288 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002289 )
2290 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02002291 name = "in_gopkg_fsnotify_v1",
2292 importpath = "gopkg.in/fsnotify.v1",
2293 version = "v1.4.7",
2294 sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002295 build_extra_args = [
2296 "-go_naming_convention=go_default_library",
2297 "-go_naming_convention_external=go_default_library",
2298 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002299 )
2300 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002301 name = "in_gopkg_inf_v0",
2302 importpath = "gopkg.in/inf.v0",
2303 version = "v0.9.1",
2304 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002305 build_extra_args = [
2306 "-go_naming_convention=go_default_library",
2307 "-go_naming_convention_external=go_default_library",
2308 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002309 )
2310 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002311 name = "in_gopkg_natefinch_lumberjack_v2",
2312 importpath = "gopkg.in/natefinch/lumberjack.v2",
2313 version = "v2.0.0",
2314 sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002315 build_extra_args = [
2316 "-go_naming_convention=go_default_library",
2317 "-go_naming_convention_external=go_default_library",
2318 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002319 )
2320 go_repository(
2321 name = "in_gopkg_square_go_jose_v2",
2322 importpath = "gopkg.in/square/go-jose.v2",
2323 version = "v2.2.2",
2324 sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002325 build_extra_args = [
2326 "-go_naming_convention=go_default_library",
2327 "-go_naming_convention_external=go_default_library",
2328 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002329 )
2330 go_repository(
Lorenz Bruned0503c2020-07-28 17:21:25 +02002331 name = "in_gopkg_tomb_v1",
2332 importpath = "gopkg.in/tomb.v1",
2333 version = "v1.0.0-20141024135613-dd632973f1e7",
2334 sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002335 build_extra_args = [
2336 "-go_naming_convention=go_default_library",
2337 "-go_naming_convention_external=go_default_library",
2338 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002339 )
2340 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002341 name = "in_gopkg_yaml_v2",
2342 importpath = "gopkg.in/yaml.v2",
2343 version = "v2.2.8",
2344 sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002345 build_extra_args = [
2346 "-go_naming_convention=go_default_library",
2347 "-go_naming_convention_external=go_default_library",
2348 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002349 )
2350 go_repository(
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002351 name = "io_k8s_api",
2352 importpath = "k8s.io/api",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002353 version = "v0.19.7",
2354 sum = "h1:MpHhls03C2pyzoYcpbe4QqYiiZjdvW+tuWq6TbjV14Y=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002355 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002356 build_extra_args = [
2357 "-go_naming_convention=go_default_library",
2358 "-go_naming_convention_external=go_default_library",
2359 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002360 )
2361 go_repository(
2362 name = "io_k8s_apiextensions_apiserver",
2363 importpath = "k8s.io/apiextensions-apiserver",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002364 version = "v0.19.7",
2365 sum = "h1:aV9DANMSCCYBEMbtoT/5oesrtcciQrjy9yqWVtZZL5A=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002366 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002367 build_extra_args = [
2368 "-go_naming_convention=go_default_library",
2369 "-go_naming_convention_external=go_default_library",
2370 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002371 )
2372 go_repository(
2373 name = "io_k8s_apimachinery",
2374 importpath = "k8s.io/apimachinery",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002375 version = "v0.19.8-rc.0",
2376 sum = "h1:/vt04+wL+Y79Qsu8hAo2K4QJA+AKGkJCYmoTTVrUiPQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002377 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002378 build_extra_args = [
2379 "-go_naming_convention=go_default_library",
2380 "-go_naming_convention_external=go_default_library",
2381 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002382 )
2383 go_repository(
2384 name = "io_k8s_apiserver",
2385 importpath = "k8s.io/apiserver",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002386 version = "v0.19.7",
2387 sum = "h1:fOOELJ9TNC6DgKL3GUkQLE/EBMLjwBseTstx2eRP61o=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002388 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002389 build_extra_args = [
2390 "-go_naming_convention=go_default_library",
2391 "-go_naming_convention_external=go_default_library",
2392 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002393 )
2394 go_repository(
2395 name = "io_k8s_cli_runtime",
2396 importpath = "k8s.io/cli-runtime",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002397 version = "v0.19.7",
2398 sum = "h1:VkHsqrQYCD6+yBm2k9lOxLJtfo1tmb/TdYIHQ2RSCsY=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002399 build_extra_args = [
2400 "-go_naming_convention=go_default_library",
2401 "-go_naming_convention_external=go_default_library",
2402 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002403 )
2404 go_repository(
2405 name = "io_k8s_client_go",
2406 importpath = "k8s.io/client-go",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002407 version = "v0.19.7",
2408 sum = "h1:SoJ4mzZ9LyXBGDe8MmpMznw0CwQ1ITWgsmG7GixvhUU=",
Lorenz Bruned0503c2020-07-28 17:21:25 +02002409 pre_patches = [
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002410 "//third_party/go/patches:k8s-client-go.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002411 ],
2412 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002413 build_extra_args = [
2414 "-go_naming_convention=go_default_library",
2415 "-go_naming_convention_external=go_default_library",
2416 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002417 )
2418 go_repository(
2419 name = "io_k8s_cloud_provider",
2420 importpath = "k8s.io/cloud-provider",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002421 version = "v0.19.7",
2422 sum = "h1:01fiPTLkTU/MNKZBcMmeYQ5DWqRS4d3GhYGGGlkjgOw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002423 build_extra_args = [
2424 "-go_naming_convention=go_default_library",
2425 "-go_naming_convention_external=go_default_library",
2426 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002427 )
2428 go_repository(
2429 name = "io_k8s_cluster_bootstrap",
2430 importpath = "k8s.io/cluster-bootstrap",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002431 version = "v0.19.7",
2432 sum = "h1:xlI+YfeS5gOVa33WVh1viiPZMDN9j7BAiY0iJkg2LwI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002433 build_extra_args = [
2434 "-go_naming_convention=go_default_library",
2435 "-go_naming_convention_external=go_default_library",
2436 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002437 )
2438 go_repository(
2439 name = "io_k8s_component_base",
2440 importpath = "k8s.io/component-base",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002441 version = "v0.19.7",
2442 sum = "h1:ZXS2VRWOWBOc2fTd1zjzhi/b/mkqFT9FDqiNsn1cH30=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002443 build_extra_args = [
2444 "-go_naming_convention=go_default_library",
2445 "-go_naming_convention_external=go_default_library",
2446 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002447 )
2448 go_repository(
2449 name = "io_k8s_cri_api",
2450 importpath = "k8s.io/cri-api",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002451 version = "v0.19.8-rc.0",
2452 sum = "h1:aXNNIIoVcmIB/mlz/otcULQOgnErxnLB4uaWENHKblA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002453 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002454 build_extra_args = [
2455 "-go_naming_convention=go_default_library",
2456 "-go_naming_convention_external=go_default_library",
2457 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002458 )
2459 go_repository(
2460 name = "io_k8s_csi_translation_lib",
2461 importpath = "k8s.io/csi-translation-lib",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002462 version = "v0.19.7",
2463 sum = "h1:Spr0XWqXufEUQA47axmPTm1xOabdMYG9MUbJVaRRb0g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002464 build_extra_args = [
2465 "-go_naming_convention=go_default_library",
2466 "-go_naming_convention_external=go_default_library",
2467 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002468 )
2469 go_repository(
2470 name = "io_k8s_gengo",
2471 importpath = "k8s.io/gengo",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002472 version = "v0.0.0-20200428234225-8167cfdcfc14",
2473 sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002474 build_extra_args = [
2475 "-go_naming_convention=go_default_library",
2476 "-go_naming_convention_external=go_default_library",
2477 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002478 )
2479 go_repository(
2480 name = "io_k8s_heapster",
2481 importpath = "k8s.io/heapster",
2482 version = "v1.2.0-beta.1",
2483 sum = "h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002484 build_extra_args = [
2485 "-go_naming_convention=go_default_library",
2486 "-go_naming_convention_external=go_default_library",
2487 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002488 )
2489 go_repository(
Lorenz Brunb876fc32020-07-14 13:54:01 +02002490 name = "io_k8s_klog_v2",
2491 importpath = "k8s.io/klog/v2",
2492 version = "v2.2.0",
2493 sum = "h1:XRvcwJozkgZ1UQJmfMGpvRthQHOvihEhYtDfAaxMz/A=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002494 build_extra_args = [
2495 "-go_naming_convention=go_default_library",
2496 "-go_naming_convention_external=go_default_library",
2497 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002498 )
2499 go_repository(
2500 name = "io_k8s_kube_aggregator",
2501 importpath = "k8s.io/kube-aggregator",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002502 version = "v0.19.7",
2503 sum = "h1:Eol5vPNFKaDScdVuTh0AofhuSr4cJxP5Vfv8JXW8OAQ=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002504 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002505 build_extra_args = [
2506 "-go_naming_convention=go_default_library",
2507 "-go_naming_convention_external=go_default_library",
2508 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002509 )
2510 go_repository(
2511 name = "io_k8s_kube_controller_manager",
2512 importpath = "k8s.io/kube-controller-manager",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002513 version = "v0.19.7",
2514 sum = "h1:3rNXjHM5LHcv2HiO2JjdV4yW3EN+2tCPaKXWL/Cl8TM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002515 build_extra_args = [
2516 "-go_naming_convention=go_default_library",
2517 "-go_naming_convention_external=go_default_library",
2518 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002519 )
2520 go_repository(
2521 name = "io_k8s_kube_openapi",
2522 importpath = "k8s.io/kube-openapi",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002523 version = "v0.0.0-20200805222855-6aeccd4b50c6",
2524 sum = "h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002525 build_extra_args = [
2526 "-go_naming_convention=go_default_library",
2527 "-go_naming_convention_external=go_default_library",
2528 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002529 )
2530 go_repository(
2531 name = "io_k8s_kube_proxy",
2532 importpath = "k8s.io/kube-proxy",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002533 version = "v0.19.7",
2534 sum = "h1:QQUwEnHA1jawodclndlmK/6Ifc9XVNlUaQ4Vq5RVbI8=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002535 build_extra_args = [
2536 "-go_naming_convention=go_default_library",
2537 "-go_naming_convention_external=go_default_library",
2538 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002539 )
2540 go_repository(
2541 name = "io_k8s_kube_scheduler",
2542 importpath = "k8s.io/kube-scheduler",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002543 version = "v0.19.7",
2544 sum = "h1:TlQFoH7rATVqU7myNZ4FBgnXdGIwR7iBBNk3ir8Y9WM=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002545 build_extra_args = [
2546 "-go_naming_convention=go_default_library",
2547 "-go_naming_convention_external=go_default_library",
2548 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002549 )
2550 go_repository(
2551 name = "io_k8s_kubectl",
2552 importpath = "k8s.io/kubectl",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002553 version = "v0.19.7",
2554 sum = "h1:pSsha+MBr9KLhn0IKrRikeAZ7g2oeShIGHLgqAzE3Ak=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002555 build_extra_args = [
2556 "-go_naming_convention=go_default_library",
2557 "-go_naming_convention_external=go_default_library",
2558 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002559 )
2560 go_repository(
2561 name = "io_k8s_kubelet",
2562 importpath = "k8s.io/kubelet",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002563 version = "v0.19.7",
2564 sum = "h1:cPp0fXN99cxyXeoI3nG2ZBORUvR0liT+bg6ofCybJzw=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002565 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002566 build_extra_args = [
2567 "-go_naming_convention=go_default_library",
2568 "-go_naming_convention_external=go_default_library",
2569 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002570 )
2571 go_repository(
2572 name = "io_k8s_kubernetes",
2573 importpath = "k8s.io/kubernetes",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002574 version = "v1.19.7",
2575 sum = "h1:Yk9W5SL1KR2mwy0nNZwjFXNImfK7ihrbKhXttidNTiE=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002576 build_file_proto_mode = "disable",
2577 build_tags = [
2578 "providerless",
2579 ],
2580 patches = [
2581 "//third_party/go/patches:k8s-kubernetes.patch",
2582 "//third_party/go/patches:k8s-kubernetes-build.patch",
Lorenz Brun878f5f92020-05-12 16:15:39 +02002583 "//third_party/go/patches:k8s-native-metrics.patch",
2584 "//third_party/go/patches:k8s-use-native.patch",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002585 "//third_party/go/patches:k8s-revert-seccomp-runtime-default.patch",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002586 ],
Lorenz Bruned0503c2020-07-28 17:21:25 +02002587 pre_patches = [
2588 "//third_party/go/patches:k8s-e2e-tests-providerless.patch",
Lorenz Brun842536b2021-01-26 13:54:57 +01002589 "//third_party/go/patches:k8s-fix-paths.patch",
2590 "//third_party/go/patches:k8s-fix-logs-path.patch",
Lorenz Brun7b822272021-02-03 17:03:41 +01002591 "//third_party/go/patches:k8s-drop-legacy-log-path.patch",
Lorenz Bruned0503c2020-07-28 17:21:25 +02002592 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002593 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002594 build_extra_args = [
2595 "-go_naming_convention=go_default_library",
2596 "-go_naming_convention_external=go_default_library",
2597 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002598 )
2599 go_repository(
2600 name = "io_k8s_legacy_cloud_providers",
2601 importpath = "k8s.io/legacy-cloud-providers",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002602 version = "v0.19.7",
2603 sum = "h1:YJ/l/8/Hn56I9m1cudK8aNypRA/NvI/hYhg8fo/CTus=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002604 build_extra_args = [
2605 "-go_naming_convention=go_default_library",
2606 "-go_naming_convention_external=go_default_library",
2607 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002608 )
2609 go_repository(
2610 name = "io_k8s_metrics",
2611 importpath = "k8s.io/metrics",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002612 version = "v0.19.7",
2613 sum = "h1:fpTtFhNtS0DwJiYGGsL4YoSjHlLw8qugkgw3EXSWaUA=",
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002614 build_file_proto_mode = "disable",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002615 build_extra_args = [
2616 "-go_naming_convention=go_default_library",
2617 "-go_naming_convention_external=go_default_library",
2618 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002619 )
2620 go_repository(
2621 name = "io_k8s_repo_infra",
2622 importpath = "k8s.io/repo-infra",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002623 version = "v0.1.4-0.20210105022653-a3483874bd37",
2624 sum = "h1:0GPavEcPKBA0rYl7f6dO0mXYmx7t9RaXD3be2g23Ps4=",
Lorenz Brun2073ce32021-02-03 18:52:59 +01002625 pre_patches = [
2626 "//third_party/go/patches:k8s-infra-bzl4-compat.patch",
2627 ],
2628 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002629 build_extra_args = [
2630 "-go_naming_convention=go_default_library",
2631 "-go_naming_convention_external=go_default_library",
2632 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01002633 )
2634 go_repository(
Serge Bazanskibb7db922020-04-30 12:43:10 +02002635 name = "io_k8s_sample_apiserver",
2636 importpath = "k8s.io/sample-apiserver",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002637 version = "v0.19.7",
2638 sum = "h1:ZWD6dsvqpqhWj3jKRb19/m/bo/0r+TRgjkX+h5m7f4g=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002639 build_extra_args = [
2640 "-go_naming_convention=go_default_library",
2641 "-go_naming_convention_external=go_default_library",
2642 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002643 )
2644 go_repository(
2645 name = "io_k8s_utils",
2646 importpath = "k8s.io/utils",
Serge Bazanski19eb0002021-01-21 14:25:25 +01002647 version = "v0.0.0-20200729134348-d5654de09c73",
2648 sum = "h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=",
Lorenz Brun878f5f92020-05-12 16:15:39 +02002649 patches = [
2650 "//third_party/go/patches:k8s-native-mounter.patch",
2651 ],
2652 patch_args = ["-p1"],
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002653 build_extra_args = [
2654 "-go_naming_convention=go_default_library",
2655 "-go_naming_convention_external=go_default_library",
2656 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002657 )
2658 go_repository(
2659 name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
2660 importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002661 version = "v0.0.9",
2662 sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002663 build_extra_args = [
2664 "-go_naming_convention=go_default_library",
2665 "-go_naming_convention_external=go_default_library",
2666 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002667 )
2668 go_repository(
2669 name = "io_k8s_sigs_kustomize",
2670 importpath = "sigs.k8s.io/kustomize",
2671 version = "v2.0.3+incompatible",
2672 sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002673 build_extra_args = [
2674 "-go_naming_convention=go_default_library",
2675 "-go_naming_convention_external=go_default_library",
2676 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002677 )
2678 go_repository(
Serge Bazanski19eb0002021-01-21 14:25:25 +01002679 name = "io_k8s_sigs_structured_merge_diff_v4",
2680 importpath = "sigs.k8s.io/structured-merge-diff/v4",
2681 version = "v4.0.1",
2682 sum = "h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002683 build_extra_args = [
2684 "-go_naming_convention=go_default_library",
2685 "-go_naming_convention_external=go_default_library",
2686 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002687 )
2688 go_repository(
2689 name = "io_k8s_sigs_yaml",
2690 importpath = "sigs.k8s.io/yaml",
Lorenz Brunb876fc32020-07-14 13:54:01 +02002691 version = "v1.2.0",
2692 sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002693 build_extra_args = [
2694 "-go_naming_convention=go_default_library",
2695 "-go_naming_convention_external=go_default_library",
2696 ],
Serge Bazanskif369cfa2020-05-22 18:36:42 +02002697 )
2698 go_repository(
2699 name = "ml_vbom_util",
2700 importpath = "vbom.ml/util",
2701 version = "v0.0.0-20160121211510-db5cfe13f5cc",
2702 sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
Serge Bazanskif12bedf2021-01-15 16:58:50 +01002703 build_extra_args = [
2704 "-go_naming_convention=go_default_library",
2705 "-go_naming_convention_external=go_default_library",
2706 ],
Lorenz Brun7b5d9942020-03-19 16:14:02 +01002707 )