blob: 6f49b6dfae97d510f94cdf3e45a12a660f610863 [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(
21 name = "co_honnef_go_tools",
22 importpath = "honnef.co/go/tools",
23 sum = "h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs=",
24 version = "v0.0.0-20190523083050-ea95bdfd59fc",
25 )
26
27 go_repository(
28 name = "com_github_alecthomas_template",
29 importpath = "github.com/alecthomas/template",
30 sum = "h1:cAKDfWh5VpdgMhJosfJnn5/FoN2SRZ4p7fJNX58YPaU=",
31 version = "v0.0.0-20160405071501-a0175ee3bccc",
32 )
33 go_repository(
34 name = "com_github_alecthomas_units",
35 importpath = "github.com/alecthomas/units",
36 sum = "h1:qet1QNfXsQxTZqLG4oE62mJzwPIB8+Tee4RNCL9ulrY=",
37 version = "v0.0.0-20151022065526-2efee857e7cf",
38 )
39
40 go_repository(
41 name = "com_github_armon_consul_api",
42 importpath = "github.com/armon/consul-api",
43 sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
44 version = "v0.0.0-20180202201655-eb2c6b5be1b6",
45 )
46
47 go_repository(
48 name = "com_github_beorn7_perks",
49 importpath = "github.com/beorn7/perks",
50 sum = "h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0=",
51 version = "v1.0.0",
52 )
53 go_repository(
54 name = "com_github_bgentry_speakeasy",
55 importpath = "github.com/bgentry/speakeasy",
56 sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
57 version = "v0.1.0",
58 )
59
60 go_repository(
61 name = "com_github_burntsushi_toml",
62 importpath = "github.com/BurntSushi/toml",
63 sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
64 version = "v0.3.1",
65 )
66
67 go_repository(
68 name = "com_github_client9_misspell",
69 importpath = "github.com/client9/misspell",
70 sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
71 version = "v0.3.4",
72 )
73
74 go_repository(
75 name = "com_github_coreos_etcd",
76 importpath = "github.com/coreos/etcd",
77 sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=",
78 version = "v3.3.10+incompatible",
79 )
80 go_repository(
81 name = "com_github_coreos_go_etcd",
82 importpath = "github.com/coreos/go-etcd",
83 sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=",
84 version = "v2.0.0+incompatible",
85 )
86
87 go_repository(
88 name = "com_github_coreos_go_semver",
89 importpath = "github.com/coreos/go-semver",
90 sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
91 version = "v0.3.0",
92 )
93 go_repository(
94 name = "com_github_coreos_go_systemd",
95 importpath = "github.com/coreos/go-systemd",
96 sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
97 version = "v0.0.0-20190321100706-95778dfbb74e",
98 )
99 go_repository(
100 name = "com_github_coreos_pkg",
101 importpath = "github.com/coreos/pkg",
102 sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
103 version = "v0.0.0-20180928190104-399ea9e2e55f",
104 )
105 go_repository(
106 name = "com_github_cpuguy83_go_md2man",
107 importpath = "github.com/cpuguy83/go-md2man",
108 sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
109 version = "v1.0.10",
110 )
111
112 go_repository(
113 name = "com_github_davecgh_go_spew",
114 importpath = "github.com/davecgh/go-spew",
115 sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
116 version = "v1.1.1",
117 )
118
119 go_repository(
120 name = "com_github_dgrijalva_jwt_go",
121 importpath = "github.com/dgrijalva/jwt-go",
122 sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
123 version = "v3.2.0+incompatible",
124 )
125
126 go_repository(
127 name = "com_github_diskfs_go_diskfs",
128 importpath = "github.com/diskfs/go-diskfs",
129 sum = "h1:6FpT3lje7LzjItwqQ6ZRyD5pfroKgVq4UyWwelTjPCM=",
130 version = "v0.0.0-20190829135618-cf5830e4e419",
131 )
132
133 go_repository(
134 name = "com_github_dustin_go_humanize",
135 importpath = "github.com/dustin/go-humanize",
136 sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
137 version = "v1.0.0",
138 )
139
140 go_repository(
141 name = "com_github_fatih_color",
142 importpath = "github.com/fatih/color",
143 sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
144 version = "v1.7.0",
145 )
146
147 go_repository(
148 name = "com_github_fsnotify_fsnotify",
149 importpath = "github.com/fsnotify/fsnotify",
150 sum = "h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=",
151 version = "v1.4.7",
152 )
153
154 go_repository(
155 name = "com_github_ghodss_yaml",
156 importpath = "github.com/ghodss/yaml",
157 sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
158 version = "v1.0.0",
159 )
160
161 go_repository(
162 name = "com_github_go_kit_kit",
163 importpath = "github.com/go-kit/kit",
164 sum = "h1:Wz+5lgoB0kkuqLEc6NVmwRknTKP6dTGbSqvhZtBI/j0=",
165 version = "v0.8.0",
166 )
167
168 go_repository(
169 name = "com_github_go_logfmt_logfmt",
170 importpath = "github.com/go-logfmt/logfmt",
171 sum = "h1:8HUsc87TaSWLKwrnumgC8/YconD2fJQsRJAsWaPg2ic=",
172 version = "v0.3.0",
173 )
174
175 go_repository(
176 name = "com_github_go_stack_stack",
177 importpath = "github.com/go-stack/stack",
178 sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
179 version = "v1.8.0",
180 )
181
182 go_repository(
183 name = "com_github_gogo_protobuf",
184 importpath = "github.com/gogo/protobuf",
185 sum = "h1:3PaI8p3seN09VjbTYC/QWlUZdZ1qS1zGjy7LH2Wt07I=",
186 version = "v1.2.2-0.20190723190241-65acae22fc9d",
187 )
188 go_repository(
189 name = "com_github_golang_glog",
190 importpath = "github.com/golang/glog",
191 sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
192 version = "v0.0.0-20160126235308-23def4e6c14b",
193 )
194 go_repository(
195 name = "com_github_golang_groupcache",
196 importpath = "github.com/golang/groupcache",
197 sum = "h1:ZgQEtGgCBiWRM39fZuwSd1LwSqqSW0hOdXCYYDX0R3I=",
198 version = "v0.0.0-20190702054246-869f871628b6",
199 )
200
201 go_repository(
202 name = "com_github_golang_mock",
203 importpath = "github.com/golang/mock",
204 sum = "h1:G5FRp8JnTd7RQH5kemVNlMeyXQAztQ3mOWV95KxsXH8=",
205 version = "v1.1.1",
206 )
207 go_repository(
208 name = "com_github_golang_protobuf",
209 importpath = "github.com/golang/protobuf",
210 sum = "h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs=",
211 version = "v1.3.2",
212 )
213
214 go_repository(
215 name = "com_github_google_btree",
216 importpath = "github.com/google/btree",
217 sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
218 version = "v1.0.0",
219 )
220 go_repository(
221 name = "com_github_google_go_cmp",
222 importpath = "github.com/google/go-cmp",
223 sum = "h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg=",
224 version = "v0.3.1",
225 )
226
227 go_repository(
228 name = "com_github_google_go_tpm",
229 importpath = "github.com/google/go-tpm",
230 sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
231 version = "v0.1.2-0.20190725015402-ae6dd98980d4",
232 )
233 go_repository(
234 name = "com_github_google_go_tpm_tools",
235 importpath = "github.com/google/go-tpm-tools",
236 sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
237 version = "v0.0.0-20190731025042-f8c04ff88181",
238 )
239 go_repository(
240 name = "com_github_google_gofuzz",
241 importpath = "github.com/google/gofuzz",
242 sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
243 version = "v1.0.0",
244 )
245
246 go_repository(
247 name = "com_github_google_uuid",
248 importpath = "github.com/google/uuid",
249 sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
250 version = "v1.1.1",
251 )
252
253 go_repository(
254 name = "com_github_gorilla_websocket",
255 importpath = "github.com/gorilla/websocket",
256 sum = "h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=",
257 version = "v1.4.1",
258 )
259
260 go_repository(
261 name = "com_github_grpc_ecosystem_go_grpc_middleware",
262 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
263 sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
264 version = "v1.0.1-0.20190118093823-f849b5445de4",
265 )
266 go_repository(
267 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
268 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
269 sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
270 version = "v1.2.0",
271 )
272 go_repository(
273 name = "com_github_grpc_ecosystem_grpc_gateway",
274 importpath = "github.com/grpc-ecosystem/grpc-gateway",
275 sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
276 version = "v1.9.5",
277 )
278
279 go_repository(
280 name = "com_github_hashicorp_hcl",
281 importpath = "github.com/hashicorp/hcl",
282 sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
283 version = "v1.0.0",
284 )
285
286 go_repository(
287 name = "com_github_hugelgupf_socketpair",
288 importpath = "github.com/hugelgupf/socketpair",
289 sum = "h1:/jC7qQFrv8CrSJVmaolDVOxTfS9kc36uB6H40kdbQq8=",
290 version = "v0.0.0-20190730060125-05d35a94e714",
291 )
292
293 go_repository(
294 name = "com_github_inconshreveable_mousetrap",
295 importpath = "github.com/inconshreveable/mousetrap",
296 sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=",
297 version = "v1.0.0",
298 )
299 go_repository(
300 name = "com_github_insomniacslk_dhcp",
301 importpath = "github.com/insomniacslk/dhcp",
302 sum = "h1:2PyiA5CVpWhQ4CPINgksFnopxYOGUN1n2IjKwrRqQDE=",
303 version = "v0.0.0-20190814082028-393ae75a101b",
304 )
305
306 go_repository(
307 name = "com_github_jonboulle_clockwork",
308 importpath = "github.com/jonboulle/clockwork",
309 sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
310 version = "v0.1.0",
311 )
312 go_repository(
313 name = "com_github_json_iterator_go",
314 importpath = "github.com/json-iterator/go",
315 sum = "h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok=",
316 version = "v1.1.8",
317 )
318
319 go_repository(
320 name = "com_github_julienschmidt_httprouter",
321 importpath = "github.com/julienschmidt/httprouter",
322 sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=",
323 version = "v1.2.0",
324 )
325
326 go_repository(
327 name = "com_github_kisielk_errcheck",
328 importpath = "github.com/kisielk/errcheck",
329 sum = "h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=",
330 version = "v1.2.0",
331 )
332 go_repository(
333 name = "com_github_kisielk_gotool",
334 importpath = "github.com/kisielk/gotool",
335 sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
336 version = "v1.0.0",
337 )
338
339 go_repository(
340 name = "com_github_konsorten_go_windows_terminal_sequences",
341 importpath = "github.com/konsorten/go-windows-terminal-sequences",
342 sum = "h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s=",
343 version = "v1.0.2",
344 )
345 go_repository(
346 name = "com_github_kr_logfmt",
347 importpath = "github.com/kr/logfmt",
348 sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=",
349 version = "v0.0.0-20140226030751-b84e30acd515",
350 )
351 go_repository(
352 name = "com_github_kr_pretty",
353 importpath = "github.com/kr/pretty",
354 sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=",
355 version = "v0.1.0",
356 )
357 go_repository(
358 name = "com_github_kr_pty",
359 importpath = "github.com/kr/pty",
360 sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
361 version = "v1.1.1",
362 )
363 go_repository(
364 name = "com_github_kr_text",
365 importpath = "github.com/kr/text",
366 sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=",
367 version = "v0.1.0",
368 )
369
370 go_repository(
371 name = "com_github_magiconair_properties",
372 importpath = "github.com/magiconair/properties",
373 sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
374 version = "v1.8.0",
375 )
376
377 go_repository(
378 name = "com_github_mattn_go_colorable",
379 importpath = "github.com/mattn/go-colorable",
380 sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
381 version = "v0.0.9",
382 )
383 go_repository(
384 name = "com_github_mattn_go_isatty",
385 importpath = "github.com/mattn/go-isatty",
386 sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
387 version = "v0.0.4",
388 )
389 go_repository(
390 name = "com_github_mattn_go_runewidth",
391 importpath = "github.com/mattn/go-runewidth",
392 sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
393 version = "v0.0.2",
394 )
395 go_repository(
396 name = "com_github_matttproud_golang_protobuf_extensions",
397 importpath = "github.com/matttproud/golang_protobuf_extensions",
398 sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
399 version = "v1.0.1",
400 )
401 go_repository(
402 name = "com_github_mdlayher_ethernet",
403 importpath = "github.com/mdlayher/ethernet",
404 sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
405 version = "v0.0.0-20190606142754-0394541c37b7",
406 )
407 go_repository(
408 name = "com_github_mdlayher_raw",
409 importpath = "github.com/mdlayher/raw",
410 sum = "h1:Xjvm7UTnKTwrlhbs+8qA6I0v1iX77rY3QxftSgvOVRk=",
411 version = "v0.0.0-20190606144222-a54781e5f38f",
412 )
413
414 go_repository(
415 name = "com_github_mitchellh_go_homedir",
416 importpath = "github.com/mitchellh/go-homedir",
417 sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=",
418 version = "v1.1.0",
419 )
420
421 go_repository(
422 name = "com_github_mitchellh_mapstructure",
423 importpath = "github.com/mitchellh/mapstructure",
424 sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
425 version = "v1.1.2",
426 )
427
428 go_repository(
429 name = "com_github_modern_go_concurrent",
430 importpath = "github.com/modern-go/concurrent",
431 sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
432 version = "v0.0.0-20180306012644-bacd9c7ef1dd",
433 )
434 go_repository(
435 name = "com_github_modern_go_reflect2",
436 importpath = "github.com/modern-go/reflect2",
437 sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
438 version = "v1.0.1",
439 )
440 go_repository(
441 name = "com_github_mwitkow_go_conntrack",
442 importpath = "github.com/mwitkow/go-conntrack",
443 sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=",
444 version = "v0.0.0-20161129095857-cc309e4a2223",
445 )
446
447 go_repository(
448 name = "com_github_olekukonko_tablewriter",
449 importpath = "github.com/olekukonko/tablewriter",
450 sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
451 version = "v0.0.0-20170122224234-a0225b3f23b5",
452 )
453
454 go_repository(
455 name = "com_github_onsi_ginkgo",
456 importpath = "github.com/onsi/ginkgo",
457 sum = "h1:Ix8l273rp3QzYgXSR+c8d1fTG7UPgYkOSELPhiY/YGw=",
458 version = "v1.6.0",
459 )
460 go_repository(
461 name = "com_github_onsi_gomega",
462 importpath = "github.com/onsi/gomega",
463 sum = "h1:3mYCb7aPxS/RU7TI1y4rkEn1oKmPRjNJLNEXgw7MH2I=",
464 version = "v1.4.2",
465 )
466
467 go_repository(
468 name = "com_github_pelletier_go_toml",
469 importpath = "github.com/pelletier/go-toml",
470 sum = "h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=",
471 version = "v1.2.0",
472 )
473
474 go_repository(
475 name = "com_github_pkg_errors",
476 importpath = "github.com/pkg/errors",
477 sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=",
478 version = "v0.8.1",
479 )
480
481 go_repository(
482 name = "com_github_pmezard_go_difflib",
483 importpath = "github.com/pmezard/go-difflib",
484 sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
485 version = "v1.0.0",
486 )
487
488 go_repository(
489 name = "com_github_prometheus_client_golang",
490 importpath = "github.com/prometheus/client_golang",
491 sum = "h1:vrDKnkGzuGvhNAL56c7DBz29ZL+KxnoR0x7enabFceM=",
492 version = "v1.0.0",
493 )
494 go_repository(
495 name = "com_github_prometheus_client_model",
496 importpath = "github.com/prometheus/client_model",
497 sum = "h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE=",
498 version = "v0.0.0-20190129233127-fd36f4220a90",
499 )
500 go_repository(
501 name = "com_github_prometheus_common",
502 importpath = "github.com/prometheus/common",
503 sum = "h1:K0MGApIoQvMw27RTdJkPbr3JZ7DNbtxQNyi5STVM6Kw=",
504 version = "v0.4.1",
505 )
506 go_repository(
507 name = "com_github_prometheus_procfs",
508 importpath = "github.com/prometheus/procfs",
509 sum = "h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs=",
510 version = "v0.0.2",
511 )
512
513 go_repository(
514 name = "com_github_rekby_gpt",
515 importpath = "github.com/rekby/gpt",
516 sum = "h1:cFRSGvObVNqtA4pnu8Y/0CWxc4WFvfssCVTrslH/yg4=",
517 version = "v0.0.0-20190209220743-520ac65554cf",
518 )
519
520 go_repository(
521 name = "com_github_rogpeppe_fastuuid",
522 importpath = "github.com/rogpeppe/fastuuid",
523 sum = "h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=",
524 version = "v0.0.0-20150106093220-6724a57986af",
525 )
526
527 go_repository(
528 name = "com_github_russross_blackfriday",
529 importpath = "github.com/russross/blackfriday",
530 sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
531 version = "v1.5.2",
532 )
533
534 go_repository(
535 name = "com_github_satori_go_uuid",
536 importpath = "github.com/satori/go.uuid",
537 sum = "h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=",
538 version = "v1.2.0",
539 )
540
541 go_repository(
542 name = "com_github_sirupsen_logrus",
543 importpath = "github.com/sirupsen/logrus",
544 sum = "h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=",
545 version = "v1.4.2",
546 )
547
548 go_repository(
549 name = "com_github_soheilhy_cmux",
550 importpath = "github.com/soheilhy/cmux",
551 sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
552 version = "v0.1.4",
553 )
554
555 go_repository(
556 name = "com_github_spf13_afero",
557 importpath = "github.com/spf13/afero",
558 sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
559 version = "v1.2.2",
560 )
561 go_repository(
562 name = "com_github_spf13_cast",
563 importpath = "github.com/spf13/cast",
564 sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
565 version = "v1.3.0",
566 )
567 go_repository(
568 name = "com_github_spf13_cobra",
569 importpath = "github.com/spf13/cobra",
570 sum = "h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s=",
571 version = "v0.0.5",
572 )
573 go_repository(
574 name = "com_github_spf13_jwalterweatherman",
575 importpath = "github.com/spf13/jwalterweatherman",
576 sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
577 version = "v1.0.0",
578 )
579 go_repository(
580 name = "com_github_spf13_pflag",
581 importpath = "github.com/spf13/pflag",
582 sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
583 version = "v1.0.5",
584 )
585 go_repository(
586 name = "com_github_spf13_viper",
587 importpath = "github.com/spf13/viper",
588 sum = "h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M=",
589 version = "v1.3.2",
590 )
591
592 go_repository(
593 name = "com_github_stretchr_objx",
594 importpath = "github.com/stretchr/objx",
595 sum = "h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=",
596 version = "v0.2.0",
597 )
598 go_repository(
599 name = "com_github_stretchr_testify",
600 importpath = "github.com/stretchr/testify",
601 sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
602 version = "v1.4.0",
603 )
604
605 go_repository(
606 name = "com_github_tmc_grpc_websocket_proxy",
607 importpath = "github.com/tmc/grpc-websocket-proxy",
608 sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
609 version = "v0.0.0-20190109142713-0ad062ec5ee5",
610 )
611
612 go_repository(
613 name = "com_github_u_root_u_root",
614 importpath = "github.com/u-root/u-root",
615 sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
616 version = "v6.0.0+incompatible",
617 )
618
619 go_repository(
620 name = "com_github_ugorji_go_codec",
621 importpath = "github.com/ugorji/go/codec",
622 sum = "h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=",
623 version = "v0.0.0-20181204163529-d75b2dcb6bc8",
624 )
625 go_repository(
626 name = "com_github_urfave_cli",
627 importpath = "github.com/urfave/cli",
628 sum = "h1:fDqGv3UG/4jbVl/QkFwEdddtEDjh/5Ov6X+0B/3bPaw=",
629 version = "v1.20.0",
630 )
631
632 go_repository(
633 name = "com_github_vishvananda_netlink",
634 importpath = "github.com/vishvananda/netlink",
635 sum = "h1:bqNY2lgheFIu1meHUFSH3d7vG93AFyqg3oGbJCOJgSM=",
636 version = "v1.0.0",
637 )
638 go_repository(
639 name = "com_github_vishvananda_netns",
640 importpath = "github.com/vishvananda/netns",
641 sum = "h1:nBX3nTcmxEtHSERBJaIo1Qa26VwRaopnZmfDQUXsF4I=",
642 version = "v0.0.0-20190625233234-7109fa855b0f",
643 )
644 go_repository(
645 name = "com_github_xiang90_probing",
646 importpath = "github.com/xiang90/probing",
647 sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
648 version = "v0.0.0-20190116061207-43a291ad63a2",
649 )
650 go_repository(
651 name = "com_github_xordataexchange_crypt",
652 importpath = "github.com/xordataexchange/crypt",
653 sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=",
654 version = "v0.0.3-0.20170626215501-b2862e3d0a77",
655 )
656 go_repository(
657 name = "com_github_yalue_native_endian",
658 importpath = "github.com/yalue/native_endian",
659 sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
660 version = "v0.0.0-20180607135909-51013b03be4f",
661 )
662
663 go_repository(
664 name = "com_google_cloud_go",
665 importpath = "cloud.google.com/go",
666 sum = "h1:eOI3/cP2VTU6uZLDYAoic+eyzzB9YyGmJ7eIjl8rOPg=",
667 version = "v0.34.0",
668 )
669
670 go_repository(
671 name = "in_gopkg_alecthomas_kingpin_v2",
672 importpath = "gopkg.in/alecthomas/kingpin.v2",
673 sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=",
674 version = "v2.2.6",
675 )
676
677 go_repository(
678 name = "in_gopkg_check_v1",
679 importpath = "gopkg.in/check.v1",
680 sum = "h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=",
681 version = "v1.0.0-20190902080502-41f04d3bba15",
682 )
683 go_repository(
684 name = "in_gopkg_cheggaaa_pb_v1",
685 importpath = "gopkg.in/cheggaaa/pb.v1",
686 sum = "h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=",
687 version = "v1.0.25",
688 )
689
690 go_repository(
691 name = "in_gopkg_resty_v1",
692 importpath = "gopkg.in/resty.v1",
693 sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=",
694 version = "v1.12.0",
695 )
696
697 go_repository(
698 name = "in_gopkg_yaml_v2",
699 importpath = "gopkg.in/yaml.v2",
700 sum = "h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I=",
701 version = "v2.2.4",
702 )
703 go_repository(
704 name = "io_etcd_go_bbolt",
705 importpath = "go.etcd.io/bbolt",
706 sum = "h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=",
707 version = "v1.3.3",
708 )
709 go_repository(
710 name = "io_etcd_go_etcd",
711 build_file_proto_mode = "disable",
712 importpath = "go.etcd.io/etcd",
713 sum = "h1:lWF4f9Nypl1ZqSb4gLeh/DGvBYVaUYHuiB93teOmwgc=",
714 version = "v0.5.0-alpha.5.0.20191023171146-3cf2f69b5738",
715 )
716
717 go_repository(
718 name = "io_k8s_sigs_yaml",
719 importpath = "sigs.k8s.io/yaml",
720 sum = "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs=",
721 version = "v1.1.0",
722 )
723
724 go_repository(
725 name = "org_golang_google_appengine",
726 importpath = "google.golang.org/appengine",
727 sum = "h1:KxkO13IPW4Lslp2bz+KHP2E3gtFlrIGNThxkZQ3g+4c=",
728 version = "v1.5.0",
729 )
730 go_repository(
731 name = "org_golang_google_genproto",
732 importpath = "google.golang.org/genproto",
733 sum = "h1:nfPFGzJkUDX6uBmpN/pSw7MbOAWegH5QDQuoXFHedLg=",
734 version = "v0.0.0-20190502173448-54afdca5d873",
735 )
736 go_repository(
737 name = "org_golang_google_grpc",
738 build_file_proto_mode = "disable",
739 importpath = "google.golang.org/grpc",
740 sum = "h1:q4XQuHFC6I28BKZpo6IYyb3mNO+l7lSOxRuYTCiDfXk=",
741 version = "v1.23.1",
742 )
743
744 go_repository(
745 name = "org_golang_x_crypto",
746 importpath = "golang.org/x/crypto",
747 sum = "h1:ACG4HJsFiNMf47Y4PeRoebLNy/2lXT9EtprMuTFWt1M=",
748 version = "v0.0.0-20190923035154-9ee001bba392",
749 )
750
751 go_repository(
752 name = "org_golang_x_lint",
753 importpath = "golang.org/x/lint",
754 sum = "h1:XQyxROzUlZH+WIQwySDgnISgOivlhjIEwaQaJEJrrN0=",
755 version = "v0.0.0-20190313153728-d0100b6bd8b3",
756 )
757 go_repository(
758 name = "org_golang_x_net",
759 importpath = "golang.org/x/net",
760 sum = "h1:rjwSpXsdiK0dV8/Naq3kAw9ymfAeJIyd0upUIElB+lI=",
761 version = "v0.0.0-20191004110552-13f9640d40b9",
762 )
763 go_repository(
764 name = "org_golang_x_oauth2",
765 importpath = "golang.org/x/oauth2",
766 sum = "h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=",
767 version = "v0.0.0-20190604053449-0f29369cfe45",
768 )
769
770 go_repository(
771 name = "org_golang_x_sync",
772 importpath = "golang.org/x/sync",
773 sum = "h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=",
774 version = "v0.0.0-20190423024810-112230192c58",
775 )
776 go_repository(
777 name = "org_golang_x_sys",
778 importpath = "golang.org/x/sys",
779 sum = "h1:ZtoklVMHQy6BFRHkbG6JzK+S6rX82//Yeok1vMlizfQ=",
780 version = "v0.0.0-20191018095205-727590c5006e",
781 )
782 go_repository(
783 name = "org_golang_x_text",
784 importpath = "golang.org/x/text",
785 sum = "h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=",
786 version = "v0.3.2",
787 )
788 go_repository(
789 name = "org_golang_x_time",
790 importpath = "golang.org/x/time",
791 sum = "h1:SvFZT6jyqRaOeXpc5h/JSfZenJ2O330aBsf7JfSUXmQ=",
792 version = "v0.0.0-20190308202827-9d24e82272b4",
793 )
794 go_repository(
795 name = "org_golang_x_tools",
796 importpath = "golang.org/x/tools",
797 sum = "h1:KfpJVdWhuRqNk4XVXzjXf2KAV4TBEP77SYdFGjeGuIE=",
798 version = "v0.0.0-20190624180213-70d37148ca0c",
799 )
800 go_repository(
801 name = "org_uber_go_atomic",
802 importpath = "go.uber.org/atomic",
803 sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
804 version = "v1.4.0",
805 )
806 go_repository(
807 name = "org_uber_go_multierr",
808 importpath = "go.uber.org/multierr",
809 sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
810 version = "v1.1.0",
811 )
812 go_repository(
813 name = "org_uber_go_zap",
814 importpath = "go.uber.org/zap",
815 sum = "h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=",
816 version = "v1.10.0",
817 )
818 go_repository(
819 name = "com_github_apmckinlay_gsuneido",
820 importpath = "github.com/apmckinlay/gsuneido",
821 sum = "h1:WwxMm9boNuaj5YW+qfRoORxLLJrSRiK1zovCfGNddY0=",
822 version = "v0.0.0-20190404155041-0b6cd442a18f",
823 )
824 go_repository(
825 name = "com_github_armon_go_radix",
826 importpath = "github.com/armon/go-radix",
827 sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
828 version = "v0.0.0-20180808171621-7fddfc383310",
829 )
830 go_repository(
831 name = "com_github_cockroachdb_apd",
832 importpath = "github.com/cockroachdb/apd",
833 sum = "h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=",
834 version = "v1.1.0",
835 )
836 go_repository(
837 name = "com_github_data_dog_go_sqlmock",
838 importpath = "github.com/DATA-DOG/go-sqlmock",
839 sum = "h1:CWUqKXe0s8A2z6qCgkP4Kru7wC11YoAnoupUKFDnH08=",
840 version = "v1.3.3",
841 )
842 go_repository(
843 name = "com_github_denisenkom_go_mssqldb",
844 importpath = "github.com/denisenkom/go-mssqldb",
845 sum = "h1:epsH3lb7KVbXHYk7LYGN5EiE0MxcevHU85CKITJ0wUY=",
846 version = "v0.0.0-20191001013358-cfbb681360f0",
847 )
848 go_repository(
849 name = "com_github_ericlagergren_decimal",
850 importpath = "github.com/ericlagergren/decimal",
851 sum = "h1:gImfQgMq4P8DtUESTFGgqBaYuUwc0xE7AoYRKkYzrOc=",
852 version = "v0.0.0-20191018222636-98d6b4cb4b5e",
853 )
854 go_repository(
855 name = "com_github_friendsofgo_errors",
856 importpath = "github.com/friendsofgo/errors",
857 sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
858 version = "v0.9.2",
859 )
860 go_repository(
861 name = "com_github_glerchundi_sqlboiler_crdb",
862 importpath = "github.com/glerchundi/sqlboiler-crdb",
863 sum = "h1:qC5Gu83hkXlQVECFs1u/9EdwYjo58RYaxWnJZGa0YN0=",
864 version = "v0.0.0-20191112134934-62014c8c8df1",
865 )
866 go_repository(
867 name = "com_github_go_sql_driver_mysql",
868 importpath = "github.com/go-sql-driver/mysql",
869 sum = "h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA=",
870 version = "v1.4.1",
871 )
872 go_repository(
873 name = "com_github_gobuffalo_envy",
874 importpath = "github.com/gobuffalo/envy",
875 sum = "h1:GlXgaiBkmrYMHco6t4j7SacKO4XUjvh5pwXh0f4uxXU=",
876 version = "v1.7.0",
877 )
878 go_repository(
879 name = "com_github_gobuffalo_logger",
880 importpath = "github.com/gobuffalo/logger",
881 sum = "h1:xw9Ko9EcC5iAFprrjJ6oZco9UpzS5MQ4jAwghsLHdy4=",
882 version = "v1.0.0",
883 )
884 go_repository(
885 name = "com_github_gobuffalo_packd",
886 importpath = "github.com/gobuffalo/packd",
887 sum = "h1:eMwymTkA1uXsqxS0Tpoop3Lc0u3kTfiMBE6nKtQU4g4=",
888 version = "v0.3.0",
889 )
890 go_repository(
891 name = "com_github_gobuffalo_packr",
892 importpath = "github.com/gobuffalo/packr",
893 sum = "h1:hu1fuVR3fXEZR7rXNW3h8rqSML8EVAf6KNm0NKO/wKg=",
894 version = "v1.30.1",
895 )
896 go_repository(
897 name = "com_github_gobuffalo_packr_v2",
898 importpath = "github.com/gobuffalo/packr/v2",
899 sum = "h1:TFOeY2VoGamPjQLiNDT3mn//ytzk236VMO2j7iHxJR4=",
900 version = "v2.5.1",
901 )
902 go_repository(
903 name = "com_github_gofrs_uuid",
904 importpath = "github.com/gofrs/uuid",
905 sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
906 version = "v3.2.0+incompatible",
907 )
908 go_repository(
909 name = "com_github_golang_sql_civil",
910 importpath = "github.com/golang-sql/civil",
911 sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
912 version = "v0.0.0-20190719163853-cb61b32ac6fe",
913 )
914 go_repository(
915 name = "com_github_hashicorp_errwrap",
916 importpath = "github.com/hashicorp/errwrap",
917 sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
918 version = "v1.0.0",
919 )
920 go_repository(
921 name = "com_github_hashicorp_go_multierror",
922 importpath = "github.com/hashicorp/go-multierror",
923 sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
924 version = "v1.0.0",
925 )
926 go_repository(
927 name = "com_github_joho_godotenv",
928 importpath = "github.com/joho/godotenv",
929 sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=",
930 version = "v1.3.0",
931 )
932 go_repository(
933 name = "com_github_karrick_godirwalk",
934 importpath = "github.com/karrick/godirwalk",
935 sum = "h1:BqUm+LuJcXjGv1d2mj3gBiQyrQ57a0rYoAmhvJQ7RDU=",
936 version = "v1.10.12",
937 )
938 go_repository(
939 name = "com_github_kevinburke_go_bindata",
940 importpath = "github.com/kevinburke/go-bindata",
941 sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
942 version = "v3.16.0+incompatible",
943 )
944 go_repository(
945 name = "com_github_lib_pq",
946 importpath = "github.com/lib/pq",
947 sum = "h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=",
948 version = "v1.2.0",
949 )
950 go_repository(
951 name = "com_github_lopezator_sqlboiler_crdb",
952 importpath = "github.com/lopezator/sqlboiler-crdb",
953 sum = "h1:20v0EGG1kKmwcnFFirot/D1f0jQENqUn1LCzQetOw2E=",
954 version = "v0.0.0-20190904145422-465f6643a423",
955 )
956 go_repository(
957 name = "com_github_mitchellh_cli",
958 importpath = "github.com/mitchellh/cli",
959 sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
960 version = "v1.0.0",
961 )
962 go_repository(
963 name = "com_github_posener_complete",
964 importpath = "github.com/posener/complete",
965 sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
966 version = "v1.1.1",
967 )
968 go_repository(
969 name = "com_github_rogpeppe_go_internal",
970 importpath = "github.com/rogpeppe/go-internal",
971 sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=",
972 version = "v1.3.0",
973 )
974 go_repository(
975 name = "com_github_rubenv_sql_migrate",
976 importpath = "github.com/rubenv/sql-migrate",
977 sum = "h1:lwDYefgiwhjuAuVnMVUYknoF+Yg9CBUykYGvYoPCNnQ=",
978 version = "v0.0.0-20191025130928-9355dd04f4b3",
979 )
980 go_repository(
981 name = "com_github_shopspring_decimal",
982 importpath = "github.com/shopspring/decimal",
983 sum = "h1:pntxY8Ary0t43dCZ5dqY4YTJCObLY1kIXl0uzMv+7DE=",
984 version = "v0.0.0-20180709203117-cd690d0c9e24",
985 )
986 go_repository(
987 name = "com_github_volatiletech_inflect",
988 importpath = "github.com/volatiletech/inflect",
989 sum = "h1:gI4/tqP6lCY5k6Sg+4k9qSoBXmPwG+xXgMpK7jivD4M=",
990 version = "v0.0.0-20170731032912-e7201282ae8d",
991 )
992 go_repository(
993 name = "com_github_volatiletech_null",
994 importpath = "github.com/volatiletech/null",
995 sum = "h1:7wP8m5d/gZ6kW/9GnrLtMCRre2dlEnaQ9Km5OXlK4zg=",
996 version = "v8.0.0+incompatible",
997 )
998 go_repository(
999 name = "com_github_volatiletech_sqlboiler",
1000 importpath = "github.com/volatiletech/sqlboiler",
1001 sum = "h1:EI9MwhgyXiqKbvZaomzL8scDs/k+21QAyo9z7GXBZQU=",
1002 version = "v3.6.1+incompatible",
1003 )
1004 go_repository(
1005 name = "com_github_ziutek_mymysql",
1006 importpath = "github.com/ziutek/mymysql",
1007 sum = "h1:GB0qdRGsTwQSBVYuVShFBKaXSnSnYYC2d9knnE1LHFs=",
1008 version = "v1.5.4",
1009 )
1010 go_repository(
1011 name = "in_gopkg_errgo_v2",
1012 importpath = "gopkg.in/errgo.v2",
1013 sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=",
1014 version = "v2.1.0",
1015 )
1016 go_repository(
1017 name = "in_gopkg_gorp_v1",
1018 importpath = "gopkg.in/gorp.v1",
1019 sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
1020 version = "v1.7.2",
1021 )
1022 go_repository(
1023 name = "in_gopkg_inf_v0",
1024 importpath = "gopkg.in/inf.v0",
1025 sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
1026 version = "v0.9.1",
1027 )
1028 go_repository(
1029 name = "org_golang_x_xerrors",
1030 importpath = "golang.org/x/xerrors",
1031 sum = "h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc=",
1032 version = "v0.0.0-20190717185122-a985d3407aa7",
1033 )
1034 go_repository(
1035 name = "com_github_mattn_go_sqlite3",
1036 importpath = "github.com/mattn/go-sqlite3",
1037 sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
1038 version = "v1.12.0",
1039 )
1040 go_repository(
1041 name = "com_github_cockroachdb_datadriven",
1042 importpath = "github.com/cockroachdb/datadriven",
1043 sum = "h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=",
1044 version = "v0.0.0-20190809214429-80d97fb3cbaa",
1045 )
1046 go_repository(
1047 name = "com_github_creack_pty",
1048 importpath = "github.com/creack/pty",
1049 sum = "h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=",
1050 version = "v1.1.7",
1051 )
1052 go_repository(
1053 name = "com_github_docker_spdystream",
1054 importpath = "github.com/docker/spdystream",
1055 sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
1056 version = "v0.0.0-20160310174837-449fdfce4d96",
1057 )
1058 go_repository(
1059 name = "com_github_elazarl_goproxy",
1060 importpath = "github.com/elazarl/goproxy",
1061 sum = "h1:p1yVGRW3nmb85p1Sh1ZJSDm4A4iKLS5QNbvUHMgGu/M=",
1062 version = "v0.0.0-20170405201442-c4fc26588b6e",
1063 )
1064 go_repository(
1065 name = "com_github_emicklei_go_restful",
1066 importpath = "github.com/emicklei/go-restful",
1067 sum = "h1:H2pdYOb3KQ1/YsqVWoWNLQO+fusocsw354rqGTZtAgw=",
1068 version = "v0.0.0-20170410110728-ff4f55a20633",
1069 )
1070 go_repository(
1071 name = "com_github_evanphx_json_patch",
1072 importpath = "github.com/evanphx/json-patch",
1073 sum = "h1:fUDGZCv/7iAN7u0puUVhvKCcsR6vRfwrJatElLBEf0I=",
1074 version = "v4.2.0+incompatible",
1075 )
1076 go_repository(
1077 name = "com_github_go_logr_logr",
1078 importpath = "github.com/go-logr/logr",
1079 sum = "h1:M1Tv3VzNlEHg6uyACnRdtrploV2P7wZqH8BoQMtz0cg=",
1080 version = "v0.1.0",
1081 )
1082 go_repository(
1083 name = "com_github_go_openapi_jsonpointer",
1084 importpath = "github.com/go-openapi/jsonpointer",
1085 sum = "h1:wSt/4CYxs70xbATrGXhokKF1i0tZjENLOo1ioIO13zk=",
1086 version = "v0.0.0-20160704185906-46af16f9f7b1",
1087 )
1088 go_repository(
1089 name = "com_github_go_openapi_jsonreference",
1090 importpath = "github.com/go-openapi/jsonreference",
1091 sum = "h1:tF+augKRWlWx0J0B7ZyyKSiTyV6E1zZe+7b3qQlcEf8=",
1092 version = "v0.0.0-20160704190145-13c6e3589ad9",
1093 )
1094 go_repository(
1095 name = "com_github_go_openapi_spec",
1096 importpath = "github.com/go-openapi/spec",
1097 sum = "h1:C1JKChikHGpXwT5UQDFaryIpDtyyGL/CR6C2kB7F1oc=",
1098 version = "v0.0.0-20160808142527-6aced65f8501",
1099 )
1100 go_repository(
1101 name = "com_github_go_openapi_swag",
1102 importpath = "github.com/go-openapi/swag",
1103 sum = "h1:zP3nY8Tk2E6RTkqGYrarZXuzh+ffyLDljLxCy1iJw80=",
1104 version = "v0.0.0-20160704191624-1d0bd113de87",
1105 )
1106 go_repository(
1107 name = "com_github_googleapis_gnostic",
1108 importpath = "github.com/googleapis/gnostic",
1109 sum = "h1:7XGaL1e6bYS1yIonGp9761ExpPPV1ui0SAC59Yube9k=",
1110 version = "v0.0.0-20170729233727-0c5108395e2d",
1111 )
1112 go_repository(
1113 name = "com_github_hashicorp_golang_lru",
1114 importpath = "github.com/hashicorp/golang-lru",
1115 sum = "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=",
1116 version = "v0.5.1",
1117 )
1118 go_repository(
1119 name = "com_github_hpcloud_tail",
1120 importpath = "github.com/hpcloud/tail",
1121 sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
1122 version = "v1.0.0",
1123 )
1124 go_repository(
1125 name = "com_github_imdario_mergo",
1126 importpath = "github.com/imdario/mergo",
1127 sum = "h1:CGgOkSJeqMRmt0D9XLWExdT4m4F1vd3FV3VPt+0VxkQ=",
1128 version = "v0.3.8",
1129 )
1130 go_repository(
1131 name = "com_github_mailru_easyjson",
1132 importpath = "github.com/mailru/easyjson",
1133 sum = "h1:TpvdAwDAt1K4ANVOfcihouRdvP+MgAfDWwBuct4l6ZY=",
1134 version = "v0.0.0-20160728113105-d5b7844b561a",
1135 )
1136 go_repository(
1137 name = "com_github_munnerz_goautoneg",
1138 importpath = "github.com/munnerz/goautoneg",
1139 sum = "h1:7PxY7LVfSZm7PEeBTyK1rj1gABdCO2mbri6GKO1cMDs=",
1140 version = "v0.0.0-20120707110453-a547fc61f48d",
1141 )
1142 go_repository(
1143 name = "com_github_mxk_go_flowrate",
1144 importpath = "github.com/mxk/go-flowrate",
1145 sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
1146 version = "v0.0.0-20140419014527-cca7078d478f",
1147 )
1148 go_repository(
1149 name = "com_github_nytimes_gziphandler",
1150 importpath = "github.com/NYTimes/gziphandler",
1151 sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
1152 version = "v0.0.0-20170623195520-56545f4a5d46",
1153 )
1154 go_repository(
1155 name = "com_github_onsi_ginkgo",
1156 importpath = "github.com/onsi/ginkgo",
1157 sum = "h1:q/mM8GF/n0shIN8SaAZ0V+jnLPzen6WIVZdiwrRlMlo=",
1158 version = "v1.10.1",
1159 )
1160 go_repository(
1161 name = "com_github_onsi_gomega",
1162 importpath = "github.com/onsi/gomega",
1163 sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=",
1164 version = "v1.7.0",
1165 )
1166 go_repository(
1167 name = "com_github_puerkitobio_purell",
1168 importpath = "github.com/PuerkitoBio/purell",
1169 sum = "h1:0GoNN3taZV6QI81IXgCbxMyEaJDXMSIjArYBCYzVVvs=",
1170 version = "v1.0.0",
1171 )
1172 go_repository(
1173 name = "com_github_puerkitobio_urlesc",
1174 importpath = "github.com/PuerkitoBio/urlesc",
1175 sum = "h1:JCHLVE3B+kJde7bIEo5N4J+ZbLhp0J1Fs+ulyRws4gE=",
1176 version = "v0.0.0-20160726150825-5bd2802263f2",
1177 )
1178 go_repository(
1179 name = "in_gopkg_fsnotify_v1",
1180 importpath = "gopkg.in/fsnotify.v1",
1181 sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
1182 version = "v1.4.7",
1183 )
1184 go_repository(
1185 name = "in_gopkg_tomb_v1",
1186 importpath = "gopkg.in/tomb.v1",
1187 sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
1188 version = "v1.0.0-20141024135613-dd632973f1e7",
1189 )
1190 go_repository(
1191 name = "io_k8s_apimachinery",
1192 importpath = "k8s.io/apimachinery",
1193 sum = "h1:zUjS3szTxoUjTDYNvdFkYt2uMEXLcthcbp+7uZvWhYM=",
1194 version = "v0.17.1",
1195 )
1196 go_repository(
1197 name = "io_k8s_client_go",
1198 importpath = "k8s.io/client-go",
1199 sum = "h1:LBbX2+lOwY9flffWlJM7f1Ct8V2SRNiMRDFeiwnJo9o=",
1200 version = "v11.0.0+incompatible",
1201 )
1202 go_repository(
1203 name = "io_k8s_gengo",
1204 importpath = "k8s.io/gengo",
1205 sum = "h1:4s3/R4+OYYYUKptXPhZKjQ04WJ6EhQQVFdjOFvCazDk=",
1206 version = "v0.0.0-20190128074634-0689ccc1d7d6",
1207 )
1208 go_repository(
1209 name = "io_k8s_klog",
1210 importpath = "k8s.io/klog",
1211 sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
1212 version = "v1.0.0",
1213 )
1214 go_repository(
1215 name = "io_k8s_kube_openapi",
1216 importpath = "k8s.io/kube-openapi",
1217 sum = "h1:UcxjrRMyNx/i/y8G7kPvLyy7rfbeuf1PYyBf973pgyU=",
1218 version = "v0.0.0-20191107075043-30be4d16710a",
1219 )
1220 go_repository(
1221 name = "io_k8s_sigs_structured_merge_diff",
1222 importpath = "sigs.k8s.io/structured-merge-diff",
1223 sum = "h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ=",
1224 version = "v0.0.0-20190525122527-15d366b2352e",
1225 )
1226 go_repository(
1227 name = "io_k8s_utils",
1228 importpath = "k8s.io/utils",
1229 sum = "h1:p0Ai3qVtkbCG/Af26dBmU0E1W58NID3hSSh7cMyylpM=",
1230 version = "v0.0.0-20191114200735-6ca3b61696b6",
1231 )
1232 go_repository(
1233 name = "io_k8s_api",
1234 importpath = "k8s.io/api",
1235 sum = "h1:i46MidoDOE9tvQ0TTEYggf3ka/pziP1+tHI/GFVeJao=",
1236 version = "v0.17.1",
1237 )
1238 go_repository(
1239 name = "com_github_cenkalti_backoff_v4",
1240 importpath = "github.com/cenkalti/backoff/v4",
1241 sum = "h1:6VeaLF9aI+MAUQ95106HwWzYZgJJpZ4stumjj6RFYAU=",
1242 version = "v4.0.0",
1243 )
1244 go_repository(
1245 name = "org_golang_x_exp",
1246 importpath = "golang.org/x/exp",
1247 sum = "h1:c2HOrn5iMezYjSlGPncknSEr/8x5LELb/ilJbXi9DEA=",
1248 version = "v0.0.0-20190121172915-509febef88a4",
1249 )