blob: 2eb84990bd11ad5cdb55c1cea67bbfd47652dc41 [file] [log] [blame]
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001load("@bazel_gazelle//:deps.bzl", "go_repository")
2
3def go_repositories():
4 go_repository(
5 name = "org_golang_x_net",
6 commit = "d3edc9973b7eb1fb302b0ff2c62357091cea9a30",
7 importpath = "golang.org/x/net",
8 )
9
10 go_repository(
11 name = "io_k8s_kubernetes",
12 importpath = "k8s.io/kubernetes",
Serge Bazanskic3f36e92020-11-03 19:34:42 +010013 patch_args = ["-p1"],
14 patches = ["//third_party/go/kubernetes:build.patch"],
15 sum = "h1:V6ohBHSxTkrPRyfVp8tbdEsgi9nfVN49xlUVkQseass=",
16 version = "v1.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +020017 )
18
19 go_repository(
20 name = "io_k8s_repo_infra",
21 commit = "df02ded38f9506e5bbcbf21702034b4fef815f2f",
22 importpath = "k8s.io/repo-infra",
23 )
24
25 go_repository(
26 name = "com_github_bitnami_kubecfg",
27 importpath = "github.com/bitnami/kubecfg",
28 vcs = "git",
Serge Bazanski301435f2020-11-03 21:13:44 +010029 commit = "5070ed28ed12016b0ca75dcfd257f567f581c095",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +020030 remote = "https://github.com/q3k/kubecfg",
Serge Bazanski301435f2020-11-03 21:13:44 +010031 build_extra_args = ["-exclude=vendor"],
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +020032 )
33
34 go_repository(
35 name = "com_github_projectcalico_calicoctl",
36 importpath = "github.com/projectcalico/calicoctl",
37 # This fork implements explicit Bazel rules
38 remote = "https://github.com/q3k/calicoctl",
39 vcs = "git",
40 commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
41 build_file_generation = "off",
42 )
43
44 go_repository(
45 name = "com_github_shirou_gopsutil",
46 commit = "2cbc9195c892b304060269ef280375236d2fcac9",
47 importpath = "github.com/shirou/gopsutil",
48 )
49
50 go_repository(
51 name = "com_github_cloudflare_cfssl",
52 commit = "768cd563887febaad559b511aaa5964823ccb4ab",
53 importpath = "github.com/cloudflare/cfssl",
54 )
55
56 go_repository(
57 name = "com_github_mattn_go_sqlite3",
58 commit = "5994cc52dfa89a4ee21ac891b06fbc1ea02c52d3",
59 importpath = "github.com/mattn/go-sqlite3",
60 )
61
62 go_repository(
63 name = "com_github_sebastiaanklippert_go_wkhtmltopdf",
64 commit = "72a7793efd38728796273861bb27d590cc33d9d4",
65 importpath = "github.com/sebastiaanklippert/go-wkhtmltopdf",
66 )
67
68 go_repository(
69 name = "com_github_ziutek_telnet",
70 commit = "c3b780dc415b28894076b4ec975ea3ea69e3980f",
71 importpath = "github.com/ziutek/telnet",
72 )
73
74 go_repository(
75 name = "com_github_digitalocean_go_netbox",
76 commit = "29433ec527e78486ea0a5758817ab672d977f90e",
77 importpath = "github.com/digitalocean/go-netbox",
78 )
79
80 go_repository(
81 name = "com_github_cenkalti_backoff",
82 commit = "4b4cebaf850ec58f1bb1fec5bdebdf8501c2bc3f",
83 importpath = "github.com/cenkalti/backoff",
84 )
85
86 go_repository(
Serge Bazanskicd5533e2021-08-11 16:48:04 +000087 name = "ml_vbom_util_sortorder",
88 commit = "26fad50c6b32a3064c09ed089865c16f2f3615f6",
89 importpath = "vbom.ml/util/sortorder",
90 remote = "https://github.com/fvbommel/sortorder",
91 vcs = "git",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +020092 )
93
94 go_repository(
95 name = "com_github_go_openapi_strfmt",
96 importpath = "github.com/go-openapi/strfmt",
97 tag = "v0.19.0",
98 )
99
100 go_repository(
101 name = "com_github_go_openapi_swag",
102 importpath = "github.com/go-openapi/swag",
103 tag = "v0.19.5",
104 )
105
106 go_repository(
107 name = "com_github_go_openapi_errors",
108 importpath = "github.com/go-openapi/errors",
109 tag = "v0.19.2",
110 )
111
112 go_repository(
113 name = "com_github_go_openapi_runtime",
114 importpath = "github.com/go-openapi/runtime",
115 tag = "v0.19.0",
116 )
117
118 go_repository(
119 name = "com_github_go_openapi_validate",
120 importpath = "github.com/go-openapi/validate",
121 tag = "v0.19.2",
122 )
123
124 go_repository(
125 name = "com_github_mitchellh_mapstructure",
126 importpath = "github.com/mitchellh/mapstructure",
127 tag = "v1.1.2",
128 )
129
130 go_repository(
131 name = "org_mongodb_go_mongo_driver",
132 commit = "9ec4480161a76f5267d56fc836b7f6d357fd9209",
133 importpath = "go.mongodb.org/mongo-driver",
134 )
135
136 go_repository(
137 name = "in_gopkg_yaml_v2",
138 importpath = "gopkg.in/yaml.v2",
139 tag = "v2.2.4",
140 )
141
142 go_repository(
143 name = "com_github_asaskevich_govalidator",
144 commit = "f61b66f89f4a",
145 importpath = "github.com/asaskevich/govalidator",
146 )
147
148 go_repository(
149 name = "com_github_go_openapi_spec",
150 importpath = "github.com/go-openapi/spec",
151 tag = "v0.19.2",
152 )
153
154 go_repository(
155 name = "com_github_mailru_easyjson",
156 commit = "b2ccc519800e",
157 importpath = "github.com/mailru/easyjson",
158 )
159
160 go_repository(
161 name = "com_github_go_openapi_analysis",
162 importpath = "github.com/go-openapi/analysis",
163 tag = "v0.19.2",
164 )
165
166 go_repository(
167 name = "com_github_go_openapi_jsonpointer",
168 importpath = "github.com/go-openapi/jsonpointer",
169 tag = "v0.19.3",
170 )
171
172 go_repository(
173 name = "com_github_go_openapi_loads",
174 importpath = "github.com/go-openapi/loads",
175 tag = "v0.19.2",
176 )
177
178 go_repository(
179 name = "com_github_go_openapi_jsonreference",
180 importpath = "github.com/go-openapi/jsonreference",
181 tag = "v0.19.2",
182 )
183
184 go_repository(
185 name = "com_github_puerkitobio_purell",
186 importpath = "github.com/PuerkitoBio/purell",
187 tag = "v1.1.1",
188 )
189
190 go_repository(
191 name = "com_github_puerkitobio_urlesc",
192 commit = "de5bf2ad4578",
193 importpath = "github.com/PuerkitoBio/urlesc",
194 )
195
196 go_repository(
197 name = "com_github_abbot_go_http_auth",
198 commit = "860ed7f246ff5abfdbd5c7ce618fd37b49fd3d86",
199 importpath = "github.com/abbot/go-http-auth",
200 )
201
202 go_repository(
203 name = "com_github_urfave_cli",
204 importpath = "github.com/urfave/cli",
205 tag = "v1.20.0",
206 )
207
208 go_repository(
209 name = "org_golang_x_crypto",
210 commit = "60c769a6c586",
211 importpath = "golang.org/x/crypto",
212 )
213
214 go_repository(
215 name = "org_golang_x_oauth2",
216 commit = "0f29369cfe45",
217 importpath = "golang.org/x/oauth2",
218 )
219
220 go_repository(
221 name = "com_github_djherbis_atime",
222 commit = "2d569978378562c466df74eda2d82900f435c5f4",
223 importpath = "github.com/djherbis/atime",
224 )
225
226 go_repository(
227 name = "com_google_cloud_go",
228 importpath = "cloud.google.com/go",
229 tag = "v0.38.0",
230 )
231
232 go_repository(
233 name = "com_github_stackexchange_wmi",
234 commit = "cbe66965904dbe8a6cd589e2298e5d8b986bd7dd",
235 importpath = "github.com/stackexchange/wmi",
236 )
237
238 go_repository(
239 name = "com_github_go_ole_go_ole",
240 commit = "938323a72016e9cf84fa5fba7635089efb0ad87f",
241 importpath = "github.com/go-ole/go-ole",
242 )
243
244 go_repository(
245 name = "com_github_dustin_go_humanize",
246 importpath = "github.com/dustin/go-humanize",
247 tag = "v1.0.0",
248 )
249
250 go_repository(
251 name = "io_k8s_client_go",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200252 build_extra_args = [
253 "-known_import=github.com/Azure/go-autorest",
254 "-known_import=github.com/googleapis/gnostic",
255 ],
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100256 importpath = "k8s.io/client-go",
257 sum = "h1:ctqR1nQ52NUs6LpI0w+a5U+xjYwflFwA13OJKcicMxg=",
258 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200259 )
260
261 go_repository(
262 name = "io_k8s_apimachinery",
263 build_file_proto_mode = "disable",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200264 importpath = "k8s.io/apimachinery",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200265 patch_args = ["-p1"],
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100266 patches = ["//third_party/go/k8s-apimachinery:fix-kubernetes-bug-87675.patch"],
267 sum = "h1:bpIQXlKjB4cB/oNpnNnV+BybGPR7iP5oYpsOTEJ4hgc=",
268 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200269 )
270
271 go_repository(
272 name = "io_k8s_klog",
273 importpath = "k8s.io/klog",
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100274 sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
275 version = "v1.0.0",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200276 )
277
278 go_repository(
279 name = "io_k8s_utils",
280 commit = "e782cd3c129f",
281 importpath = "k8s.io/utils",
282 )
283
284 go_repository(
285 name = "com_github_googleapis_gnostic",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200286 build_file_generation = "on",
287 build_file_proto_mode = "disable",
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100288 importpath = "github.com/googleapis/gnostic",
289 sum = "h1:2qsuRm+bzgwSIKikigPASa2GhW8H2Dn4Qq7UxD8K/48=",
290 version = "v0.5.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200291 )
292
293 go_repository(
294 name = "io_k8s_api",
295 build_file_proto_mode = "disable",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200296 importpath = "k8s.io/api",
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100297 sum = "h1:GN6ntFnv44Vptj/b+OnMW7FmzkpDoIDLZRvKX3XH9aU=",
298 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200299 )
300
301 go_repository(
302 name = "org_golang_x_time",
303 commit = "9d24e82272b4",
304 importpath = "golang.org/x/time",
305 )
306
307 go_repository(
308 name = "com_github_google_gofuzz",
309 importpath = "github.com/google/gofuzz",
310 tag = "v1.0.0",
311 )
312
313 go_repository(
314 name = "io_k8s_sigs_yaml",
315 importpath = "sigs.k8s.io/yaml",
316 tag = "v1.1.0",
317 )
318
319 go_repository(
320 name = "com_github_modern_go_reflect2",
321 importpath = "github.com/modern-go/reflect2",
322 tag = "v1.0.1",
323 )
324
325 go_repository(
326 name = "com_github_davecgh_go_spew",
327 importpath = "github.com/davecgh/go-spew",
328 tag = "v1.1.1",
329 )
330
331 go_repository(
332 name = "com_github_json_iterator_go",
333 importpath = "github.com/json-iterator/go",
334 tag = "v1.1.8",
335 )
336
337 go_repository(
338 name = "com_github_modern_go_concurrent",
339 commit = "bacd9c7ef1dd",
340 importpath = "github.com/modern-go/concurrent",
341 )
342
343 go_repository(
344 name = "in_gopkg_inf_v0",
345 importpath = "gopkg.in/inf.v0",
346 tag = "v0.9.1",
347 )
348
349 go_repository(
350 name = "com_github_cloudflare_cfrpki",
351 commit = "adece784464315db69299ba75e9287c60cd95c69",
352 importpath = "github.com/cloudflare/cfrpki",
353 )
354
355 go_repository(
356 name = "com_github_prometheus_client_golang",
357 importpath = "github.com/prometheus/client_golang",
358 tag = "v1.0.0",
359 )
360
361 go_repository(
362 name = "com_github_rs_cors",
363 commit = "db0fe48135e83b5812a5a31be0eea66984b1b521",
364 importpath = "github.com/rs/cors",
365 )
366
367 go_repository(
368 name = "com_github_cloudflare_gortr",
369 commit = "95270606e8853d9b93f5be46d656d08ec0a4ef09",
370 importpath = "github.com/cloudflare/gortr",
371 )
372
373 go_repository(
374 name = "com_github_gorilla_mux",
375 importpath = "github.com/gorilla/mux",
376 tag = "v1.6.2",
377 )
378
379 go_repository(
380 name = "com_github_sirupsen_logrus",
381 importpath = "github.com/sirupsen/logrus",
382 tag = "v1.4.2",
383 )
384
385 go_repository(
386 name = "com_github_prometheus_common",
387 importpath = "github.com/prometheus/common",
388 tag = "v0.4.1",
389 )
390
391 go_repository(
392 name = "com_github_beorn7_perks",
393 importpath = "github.com/beorn7/perks",
394 tag = "v1.0.0",
395 )
396
397 go_repository(
398 name = "com_github_prometheus_client_model",
399 commit = "fd36f4220a90",
400 importpath = "github.com/prometheus/client_model",
401 )
402
403 go_repository(
404 name = "com_github_prometheus_procfs",
405 importpath = "github.com/prometheus/procfs",
406 tag = "v0.0.2",
407 )
408
409 go_repository(
410 name = "com_github_matttproud_golang_protobuf_extensions",
411 importpath = "github.com/matttproud/golang_protobuf_extensions",
412 tag = "v1.0.1",
413 )
414
415 go_repository(
416 name = "com_github_jmoiron_sqlx",
417 commit = "38398a30ed8516ffda617a04c822de09df8a3ec5",
418 importpath = "github.com/jmoiron/sqlx",
419 )
420
421 go_repository(
422 name = "com_github_lib_pq",
423 commit = "3427c32cb71afc948325f299f040e53c1dd78979",
424 importpath = "github.com/lib/pq",
425 )
426
427 go_repository(
428 name = "com_github_gchaincl_sqlhooks",
429 commit = "1932c8dd22f2283687586008bf2d58c2c5c014d0",
430 importpath = "github.com/gchaincl/sqlhooks",
431 )
432
433 go_repository(
434 name = "com_github_golang_migrate_migrate_v4",
435 commit = "e93eaeb3fe21ce2ccc1365277a01863e6bc84d9c",
436 importpath = "github.com/golang-migrate/migrate/v4",
437 remote = "https://github.com/golang-migrate/migrate",
438 vcs = "git",
439 )
440
441 go_repository(
442 name = "com_github_hashicorp_go_multierror",
443 commit = "bdca7bb83f603b80ef756bb953fe1dafa9cd00a2",
444 importpath = "github.com/hashicorp/go-multierror",
445 )
446
447 go_repository(
448 name = "com_github_hashicorp_errwrap",
449 commit = "8a6fb523712970c966eefc6b39ed2c5e74880354",
450 importpath = "github.com/hashicorp/errwrap",
451 )
452
453 go_repository(
454 name = "com_github_cockroachdb_cockroach_go",
455 commit = "e0a95dfd547cc9c3ebaaba1a12c2afe4bf621ac5",
456 importpath = "github.com/cockroachdb/cockroach-go",
457 )
458
459 go_repository(
460 name = "com_github_jackc_pgx",
461 commit = "6954c15ad0bd3c9aa6dd1b190732b020379beb28",
462 importpath = "github.com/jackc/pgx",
463 )
464
465 go_repository(
466 name = "com_github_golang_collections_go_datastructures",
467 commit = "59788d5eb2591d3497ffb8fafed2f16fe00e7775",
468 importpath = "github.com/golang-collections/go-datastructures",
469 )
470
471 go_repository(
472 name = "com_github_go_test_deep",
473 commit = "cf67d735e69b4a4d50cdf571a92b0144786080f7",
474 importpath = "github.com/go-test/deep",
475 )
476
477 go_repository(
478 name = "com_github_sethvargo_go_password",
479 commit = "68ac5879751a7105834296859f8c1bf70b064675",
480 importpath = "github.com/sethvargo/go-password",
481 )
482
483 go_repository(
484 name = "in_gopkg_ldap_v3",
485 commit = "9f0d712775a0973b7824a1585a86a4ea1d5263d9",
486 importpath = "gopkg.in/ldap.v3",
487 )
488
489 go_repository(
490 name = "in_gopkg_asn1_ber_v1",
491 commit = "f715ec2f112d1e4195b827ad68cf44017a3ef2b1",
492 importpath = "gopkg.in/asn1-ber.v1",
493 )
494
495 go_repository(
496 name = "com_github_q3k_cursedjsonrpc",
497 commit = "304f0561c9162a2696f3ae7c96f3404324177ab8",
498 importpath = "github.com/q3k/cursedjsonrpc",
499 )
500
501 go_repository(
502 name = "com_github_q3k_cursedjson",
503 commit = "af0e3abb1bcef7197b3b9f91d7d094e6528a2d05",
504 importpath = "github.com/q3k/cursedjson",
505 )
506
507 go_repository(
508 name = "co_honnef_go_tools",
509 commit = "ea95bdfd59fc",
510 importpath = "honnef.co/go/tools",
511 )
512
513 go_repository(
514 name = "com_github_azure_go_ansiterm",
515 commit = "d6e3b3328b78",
516 importpath = "github.com/Azure/go-ansiterm",
517 )
518
519 go_repository(
520 name = "com_github_azure_go_autorest",
521 importpath = "github.com/Azure/go-autorest",
522 tag = "v11.5.0",
523 )
524
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200525 go_repository(
526 name = "com_github_client9_misspell",
527 importpath = "github.com/client9/misspell",
528 tag = "v0.3.4",
529 )
530
531 go_repository(
532 name = "com_github_containerd_continuity",
533 commit = "7f53d412b9eb",
534 importpath = "github.com/containerd/continuity",
535 )
536
537 go_repository(
538 name = "com_github_coreos_clair",
539 commit = "44ae4bc9590a",
540 importpath = "github.com/coreos/clair",
541 )
542
543 go_repository(
544 name = "com_github_dgrijalva_jwt_go",
545 importpath = "github.com/dgrijalva/jwt-go",
546 tag = "v3.2.0",
547 )
548
549 go_repository(
550 name = "com_github_docker_cli",
551 commit = "54c19e67f69c",
552 importpath = "github.com/docker/cli",
Serge Bazanski301435f2020-11-03 21:13:44 +0100553 build_extra_args = ["-exclude=vendor"],
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200554 )
555
556 go_repository(
557 name = "com_github_docker_distribution",
558 importpath = "github.com/docker/distribution",
559 tag = "v2.7.1",
Serge Bazanski301435f2020-11-03 21:13:44 +0100560 build_extra_args = ["-exclude=vendor"],
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200561 )
562
563 go_repository(
564 name = "com_github_docker_docker",
565 commit = "be7ac8be2ae0",
566 importpath = "github.com/docker/docker",
567 )
568
569 go_repository(
570 name = "com_github_docker_docker_ce",
571 commit = "f53bd8bb8e43",
572 importpath = "github.com/docker/docker-ce",
Serge Bazanski301435f2020-11-03 21:13:44 +0100573 build_extra_args = ["-exclude=components/cli/vendor"],
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200574 )
575
576 go_repository(
577 name = "com_github_docker_docker_credential_helpers",
578 importpath = "github.com/docker/docker-credential-helpers",
579 tag = "v0.6.1",
580 )
581
582 go_repository(
583 name = "com_github_docker_go_connections",
584 commit = "97c2040d34df",
585 importpath = "github.com/docker/go-connections",
586 )
587
588 go_repository(
589 name = "com_github_docker_go_metrics",
590 commit = "399ea8c73916",
591 importpath = "github.com/docker/go-metrics",
592 )
593
594 go_repository(
595 name = "com_github_docker_go_units",
596 importpath = "github.com/docker/go-units",
597 tag = "v0.3.3",
598 )
599
600 go_repository(
601 name = "com_github_docker_libtrust",
602 commit = "aabc10ec26b7",
603 importpath = "github.com/docker/libtrust",
604 )
605
606 go_repository(
607 name = "com_github_elazarl_go_bindata_assetfs",
608 commit = "38087fe4dafb",
609 importpath = "github.com/elazarl/go-bindata-assetfs",
610 )
611
612 go_repository(
613 name = "com_github_evanphx_json_patch",
614 importpath = "github.com/evanphx/json-patch",
615 tag = "v4.2.0",
616 )
617
618 go_repository(
619 name = "com_github_fernet_fernet_go",
620 commit = "9eac43b88a5e",
621 importpath = "github.com/fernet/fernet-go",
622 )
623
624 go_repository(
625 name = "com_github_fsnotify_fsnotify",
626 importpath = "github.com/fsnotify/fsnotify",
627 tag = "v1.4.7",
628 )
629
630 go_repository(
631 name = "com_github_genuinetools_pkg",
632 commit = "1c141f661797",
633 importpath = "github.com/genuinetools/pkg",
634 )
635
636 go_repository(
637 name = "com_github_genuinetools_reg",
638 commit = "d959057b30da",
639 importpath = "github.com/genuinetools/reg",
Serge Bazanski301435f2020-11-03 21:13:44 +0100640 build_extra_args = ["-exclude=vendor"],
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200641 )
642
643 go_repository(
644 name = "com_github_ghodss_yaml",
645 importpath = "github.com/ghodss/yaml",
646 tag = "v1.0.0",
647 )
648
649 go_repository(
650 name = "com_github_golang_glog",
651 commit = "23def4e6c14b",
652 importpath = "github.com/golang/glog",
653 )
654
655 go_repository(
656 name = "com_github_golang_mock",
657 importpath = "github.com/golang/mock",
658 tag = "v1.2.0",
659 )
660
661 go_repository(
662 name = "com_github_google_btree",
663 importpath = "github.com/google/btree",
664 tag = "v1.0.0",
665 )
666
667 go_repository(
668 name = "com_github_google_go_cmp",
669 importpath = "github.com/google/go-cmp",
670 tag = "v0.3.0",
671 )
672
673 go_repository(
674 name = "com_github_google_go_jsonnet",
675 importpath = "github.com/google/go-jsonnet",
676 tag = "v0.12.1",
677 )
678
679 go_repository(
680 name = "com_github_gophercloud_gophercloud",
681 importpath = "github.com/gophercloud/gophercloud",
682 tag = "v0.1.0",
683 )
684
685 go_repository(
686 name = "com_github_gorilla_context",
687 importpath = "github.com/gorilla/context",
688 tag = "v1.1.1",
689 )
690
691 go_repository(
692 name = "com_github_gregjones_httpcache",
693 commit = "9cad4c3443a7",
694 importpath = "github.com/gregjones/httpcache",
695 )
696
697 go_repository(
698 name = "com_github_grpc_ecosystem_grpc_gateway",
699 importpath = "github.com/grpc-ecosystem/grpc-gateway",
Serge Bazanski301435f2020-11-03 21:13:44 +0100700 sum = "h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo=",
701 version = "v1.16.0",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200702 )
703
704 go_repository(
705 name = "com_github_hpcloud_tail",
706 importpath = "github.com/hpcloud/tail",
707 tag = "v1.0.0",
708 )
709
710 go_repository(
711 name = "com_github_imdario_mergo",
712 importpath = "github.com/imdario/mergo",
713 tag = "v0.3.5",
714 )
715
716 go_repository(
717 name = "com_github_inconshreveable_mousetrap",
718 importpath = "github.com/inconshreveable/mousetrap",
719 tag = "v1.0.0",
720 )
721
722 go_repository(
723 name = "com_github_kisielk_gotool",
724 importpath = "github.com/kisielk/gotool",
725 tag = "v1.0.0",
726 )
727
728 go_repository(
729 name = "com_github_kr_pretty",
730 importpath = "github.com/kr/pretty",
731 tag = "v0.1.0",
732 )
733
734 go_repository(
735 name = "com_github_kr_pty",
736 importpath = "github.com/kr/pty",
737 tag = "v1.1.5",
738 )
739
740 go_repository(
741 name = "com_github_kr_text",
742 importpath = "github.com/kr/text",
743 tag = "v0.1.0",
744 )
745
746 go_repository(
747 name = "com_github_mattn_go_isatty",
748 importpath = "github.com/mattn/go-isatty",
749 tag = "v0.0.4",
750 )
751
752 go_repository(
753 name = "com_github_microsoft_go_winio",
754 importpath = "github.com/Microsoft/go-winio",
755 tag = "v0.4.11",
756 )
757
758 go_repository(
759 name = "com_github_mitchellh_go_wordwrap",
760 importpath = "github.com/mitchellh/go-wordwrap",
761 tag = "v1.0.0",
762 )
763
764 go_repository(
765 name = "com_github_nvveen_gotty",
766 commit = "cd527374f1e5",
767 importpath = "github.com/Nvveen/Gotty",
768 )
769
770 go_repository(
771 name = "com_github_onsi_ginkgo",
772 importpath = "github.com/onsi/ginkgo",
773 tag = "v1.10.1",
774 )
775
776 go_repository(
777 name = "com_github_onsi_gomega",
778 importpath = "github.com/onsi/gomega",
779 tag = "v1.7.0",
780 )
781
782 go_repository(
783 name = "com_github_opencontainers_go_digest",
784 importpath = "github.com/opencontainers/go-digest",
785 tag = "v1.0.0-rc1",
786 )
787
788 go_repository(
789 name = "com_github_opencontainers_image_spec",
790 importpath = "github.com/opencontainers/image-spec",
791 tag = "v1.0.1",
792 )
793
794 go_repository(
795 name = "com_github_opencontainers_runc",
796 importpath = "github.com/opencontainers/runc",
797 tag = "v0.1.1",
798 )
799
800 go_repository(
801 name = "com_github_openzipkin_zipkin_go",
802 importpath = "github.com/openzipkin/zipkin-go",
803 tag = "v0.1.3",
804 )
805
806 go_repository(
807 name = "com_github_peterbourgon_diskv",
808 importpath = "github.com/peterbourgon/diskv",
809 tag = "v2.0.1",
810 )
811
812 go_repository(
813 name = "com_github_peterhellberg_link",
814 importpath = "github.com/peterhellberg/link",
815 tag = "v1.0.0",
816 )
817
818 go_repository(
819 name = "com_github_pkg_errors",
820 importpath = "github.com/pkg/errors",
821 tag = "v0.8.1",
822 )
823
824 go_repository(
825 name = "com_github_pmezard_go_difflib",
826 importpath = "github.com/pmezard/go-difflib",
827 tag = "v1.0.0",
828 )
829
830 go_repository(
831 name = "com_github_sergi_go_diff",
832 commit = "feef008d51ad",
833 importpath = "github.com/sergi/go-diff",
834 )
835
836 go_repository(
837 name = "com_github_shurcool_httpfs",
838 commit = "809beceb2371",
839 importpath = "github.com/shurcooL/httpfs",
840 )
841
842 go_repository(
843 name = "com_github_spf13_cobra",
844 importpath = "github.com/spf13/cobra",
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100845 sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
846 version = "v1.0.0",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200847 )
848
849 go_repository(
850 name = "com_github_spf13_pflag",
851 importpath = "github.com/spf13/pflag",
852 tag = "v1.0.5",
853 )
854
855 go_repository(
856 name = "com_github_stretchr_objx",
857 importpath = "github.com/stretchr/objx",
858 tag = "v0.2.0",
859 )
860
861 go_repository(
862 name = "com_github_stretchr_testify",
863 importpath = "github.com/stretchr/testify",
864 tag = "v1.3.0",
865 )
866
867 go_repository(
868 name = "in_gopkg_airbrake_gobrake_v2",
869 importpath = "gopkg.in/airbrake/gobrake.v2",
870 tag = "v2.0.9",
871 )
872
873 go_repository(
874 name = "in_gopkg_check_v1",
875 commit = "788fd7840127",
876 importpath = "gopkg.in/check.v1",
877 )
878
879 go_repository(
880 name = "in_gopkg_fsnotify_v1",
881 importpath = "gopkg.in/fsnotify.v1",
882 tag = "v1.4.7",
883 )
884
885 go_repository(
886 name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
887 importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
888 tag = "v2.1.2",
889 )
890
891 go_repository(
892 name = "in_gopkg_tomb_v1",
893 commit = "dd632973f1e7",
894 importpath = "gopkg.in/tomb.v1",
895 )
896
897 go_repository(
898 name = "io_k8s_apiextensions_apiserver",
899 build_file_proto_mode = "disable",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200900 importpath = "k8s.io/apiextensions-apiserver",
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100901 sum = "h1:WZxBypSHW4SdXHbdPTS/Jy7L2la6Niggs8BuU5o+avo=",
902 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200903 )
904
905 go_repository(
906 name = "io_k8s_kube_openapi",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200907 build_extra_args = ["-known_import=github.com/googleapis/gnostic"],
Serge Bazanskic3f36e92020-11-03 19:34:42 +0100908 importpath = "k8s.io/kube-openapi",
909 sum = "h1:mNpvQf4lkIHNOXCoM+Veu/UXwA56Yx1J7hY1Tvcs/oM=",
910 version = "v0.0.0-20200923155610-8b5066479488",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200911 )
912
913 go_repository(
914 name = "io_opencensus_go",
915 importpath = "go.opencensus.io",
916 tag = "v0.21.0",
917 )
918
919 go_repository(
920 name = "io_opencensus_go_contrib_exporter_ocagent",
921 importpath = "contrib.go.opencensus.io/exporter/ocagent",
Serge Bazanski301435f2020-11-03 21:13:44 +0100922 sum = "h1:BEfdCTXfMV30tLZD8c9n64V/tIZX5+9sXiuFLnrr1k8=",
923 version = "v0.7.0",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +0200924 )
925
926 go_repository(
927 name = "org_apache_git_thrift_git",
928 commit = "9b75e4fe745a",
929 importpath = "git.apache.org/thrift.git",
930 )
931
932 go_repository(
933 name = "org_golang_google_api",
934 importpath = "google.golang.org/api",
935 tag = "v0.4.0",
936 )
937
938 go_repository(
939 name = "org_golang_google_appengine",
940 importpath = "google.golang.org/appengine",
941 tag = "v1.5.0",
942 )
943
944 go_repository(
945 name = "org_golang_google_grpc",
946 importpath = "google.golang.org/grpc",
947 tag = "v1.29.1",
948 )
949
950 go_repository(
951 name = "org_golang_x_lint",
952 commit = "d0100b6bd8b3",
953 importpath = "golang.org/x/lint",
954 )
955
956 go_repository(
957 name = "org_golang_x_sync",
958 commit = "112230192c58",
959 importpath = "golang.org/x/sync",
960 )
961
962 go_repository(
963 name = "org_golang_x_sys",
964 commit = "c7b8b68b1456",
965 importpath = "golang.org/x/sys",
966 )
967
968 go_repository(
969 name = "org_golang_x_text",
970 importpath = "golang.org/x/text",
971 tag = "v0.3.2",
972 )
973
974 go_repository(
975 name = "tools_gotest",
976 importpath = "gotest.tools",
977 tag = "v2.2.0",
978 )
979
980 go_repository(
981 name = "com_github_alecthomas_template",
982 commit = "a0175ee3bccc",
983 importpath = "github.com/alecthomas/template",
984 )
985
986 go_repository(
987 name = "com_github_alecthomas_units",
988 commit = "2efee857e7cf",
989 importpath = "github.com/alecthomas/units",
990 )
991
992 go_repository(
993 name = "com_github_armon_consul_api",
994 commit = "eb2c6b5be1b6",
995 importpath = "github.com/armon/consul-api",
996 )
997
998 go_repository(
999 name = "com_github_bgentry_speakeasy",
1000 importpath = "github.com/bgentry/speakeasy",
1001 tag = "v0.1.0",
1002 )
1003
1004 go_repository(
1005 name = "com_github_blang_semver",
1006 importpath = "github.com/blang/semver",
1007 tag = "v3.5.0",
1008 )
1009
1010 go_repository(
1011 name = "com_github_burntsushi_toml",
1012 importpath = "github.com/BurntSushi/toml",
1013 tag = "v0.3.1",
1014 )
1015
1016 go_repository(
1017 name = "com_github_burntsushi_xgb",
1018 commit = "27f122750802",
1019 importpath = "github.com/BurntSushi/xgb",
1020 )
1021
1022 go_repository(
1023 name = "com_github_chai2010_gettext_go",
1024 commit = "c6fed771bfd5",
1025 importpath = "github.com/chai2010/gettext-go",
1026 )
1027
1028 go_repository(
1029 name = "com_github_cockroachdb_datadriven",
1030 commit = "80d97fb3cbaa",
1031 importpath = "github.com/cockroachdb/datadriven",
1032 )
1033
1034 go_repository(
1035 name = "com_github_coreos_etcd",
1036 importpath = "github.com/coreos/etcd",
1037 tag = "v3.3.10",
1038 )
1039
1040 go_repository(
1041 name = "com_github_coreos_go_etcd",
1042 importpath = "github.com/coreos/go-etcd",
1043 tag = "v2.0.0",
1044 )
1045
1046 go_repository(
1047 name = "com_github_coreos_go_oidc",
1048 importpath = "github.com/coreos/go-oidc",
1049 tag = "v2.1.0",
1050 )
1051
1052 go_repository(
1053 name = "com_github_coreos_go_semver",
1054 importpath = "github.com/coreos/go-semver",
1055 tag = "v0.3.0",
1056 )
1057
1058 go_repository(
1059 name = "com_github_coreos_go_systemd",
1060 commit = "95778dfbb74e",
1061 importpath = "github.com/coreos/go-systemd",
1062 )
1063
1064 go_repository(
1065 name = "com_github_coreos_pkg",
1066 commit = "97fdf19511ea",
1067 importpath = "github.com/coreos/pkg",
1068 )
1069
1070 go_repository(
1071 name = "com_github_cpuguy83_go_md2man",
1072 importpath = "github.com/cpuguy83/go-md2man",
1073 tag = "v1.0.10",
1074 )
1075
1076 go_repository(
1077 name = "com_github_creack_pty",
1078 importpath = "github.com/creack/pty",
1079 tag = "v1.1.7",
1080 )
1081
1082 go_repository(
1083 name = "com_github_daviddengcn_go_colortext",
1084 commit = "511bcaf42ccd",
1085 importpath = "github.com/daviddengcn/go-colortext",
1086 )
1087
1088 go_repository(
1089 name = "com_github_docker_spdystream",
1090 commit = "449fdfce4d96",
1091 importpath = "github.com/docker/spdystream",
1092 )
1093
1094 go_repository(
1095 name = "com_github_elazarl_goproxy",
1096 commit = "c4fc26588b6e",
1097 importpath = "github.com/elazarl/goproxy",
1098 )
1099
1100 go_repository(
1101 name = "com_github_emicklei_go_restful",
1102 importpath = "github.com/emicklei/go-restful",
1103 tag = "v2.9.5",
1104 )
1105
1106 go_repository(
1107 name = "com_github_exponent_io_jsonpath",
1108 commit = "d6023ce2651d",
1109 importpath = "github.com/exponent-io/jsonpath",
1110 )
1111
1112 go_repository(
1113 name = "com_github_fatih_camelcase",
1114 importpath = "github.com/fatih/camelcase",
1115 tag = "v1.0.0",
1116 )
1117
1118 go_repository(
1119 name = "com_github_fatih_color",
1120 importpath = "github.com/fatih/color",
1121 tag = "v1.7.0",
1122 )
1123
1124 go_repository(
1125 name = "com_github_globalsign_mgo",
1126 commit = "eeefdecb41b8",
1127 importpath = "github.com/globalsign/mgo",
1128 )
1129
1130 go_repository(
1131 name = "com_github_go_kit_kit",
1132 importpath = "github.com/go-kit/kit",
1133 tag = "v0.8.0",
1134 )
1135
1136 go_repository(
1137 name = "com_github_go_logfmt_logfmt",
1138 importpath = "github.com/go-logfmt/logfmt",
1139 tag = "v0.3.0",
1140 )
1141
1142 go_repository(
1143 name = "com_github_go_logr_logr",
1144 importpath = "github.com/go-logr/logr",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001145 sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=",
1146 version = "v0.2.0",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001147 )
1148
1149 go_repository(
1150 name = "com_github_go_stack_stack",
1151 importpath = "github.com/go-stack/stack",
1152 tag = "v1.8.0",
1153 )
1154
1155 go_repository(
1156 name = "com_github_golang_groupcache",
1157 commit = "02826c3e7903",
1158 importpath = "github.com/golang/groupcache",
1159 )
1160
1161 go_repository(
1162 name = "com_github_golangplus_bytes",
1163 commit = "45c989fe5450",
1164 importpath = "github.com/golangplus/bytes",
1165 )
1166
1167 go_repository(
1168 name = "com_github_golangplus_fmt",
1169 commit = "2a5d6d7d2995",
1170 importpath = "github.com/golangplus/fmt",
1171 )
1172
1173 go_repository(
1174 name = "com_github_golangplus_testing",
1175 commit = "af21d9c3145e",
1176 importpath = "github.com/golangplus/testing",
1177 )
1178
1179 go_repository(
1180 name = "com_github_google_martian",
1181 importpath = "github.com/google/martian",
1182 tag = "v2.1.0",
1183 )
1184
1185 go_repository(
1186 name = "com_github_google_pprof",
1187 commit = "3ea8567a2e57",
1188 importpath = "github.com/google/pprof",
1189 )
1190
1191 go_repository(
1192 name = "com_github_google_uuid",
1193 importpath = "github.com/google/uuid",
1194 tag = "v1.1.1",
1195 )
1196
1197 go_repository(
1198 name = "com_github_googleapis_gax_go_v2",
1199 importpath = "github.com/googleapis/gax-go/v2",
1200 tag = "v2.0.4",
1201 )
1202
1203 go_repository(
1204 name = "com_github_gorilla_websocket",
1205 importpath = "github.com/gorilla/websocket",
1206 tag = "v1.4.0",
1207 )
1208
1209 go_repository(
1210 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1211 commit = "f849b5445de4",
1212 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1213 )
1214
1215 go_repository(
1216 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1217 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1218 tag = "v1.2.0",
1219 )
1220
1221 go_repository(
1222 name = "com_github_hashicorp_golang_lru",
1223 importpath = "github.com/hashicorp/golang-lru",
1224 tag = "v0.5.1",
1225 )
1226
1227 go_repository(
1228 name = "com_github_hashicorp_hcl",
1229 importpath = "github.com/hashicorp/hcl",
1230 tag = "v1.0.0",
1231 )
1232
1233 go_repository(
1234 name = "com_github_jonboulle_clockwork",
1235 importpath = "github.com/jonboulle/clockwork",
1236 tag = "v0.1.0",
1237 )
1238
1239 go_repository(
1240 name = "com_github_jstemmer_go_junit_report",
1241 commit = "af01ea7f8024",
1242 importpath = "github.com/jstemmer/go-junit-report",
1243 )
1244
1245 go_repository(
1246 name = "com_github_julienschmidt_httprouter",
1247 importpath = "github.com/julienschmidt/httprouter",
1248 tag = "v1.2.0",
1249 )
1250
1251 go_repository(
1252 name = "com_github_kisielk_errcheck",
1253 importpath = "github.com/kisielk/errcheck",
1254 tag = "v1.2.0",
1255 )
1256
1257 go_repository(
1258 name = "com_github_konsorten_go_windows_terminal_sequences",
1259 importpath = "github.com/konsorten/go-windows-terminal-sequences",
1260 tag = "v1.0.1",
1261 )
1262
1263 go_repository(
1264 name = "com_github_kr_logfmt",
1265 commit = "b84e30acd515",
1266 importpath = "github.com/kr/logfmt",
1267 )
1268
1269 go_repository(
1270 name = "com_github_liggitt_tabwriter",
1271 commit = "89fcab3d43de",
1272 importpath = "github.com/liggitt/tabwriter",
1273 )
1274
1275 go_repository(
1276 name = "com_github_lithammer_dedent",
1277 importpath = "github.com/lithammer/dedent",
1278 tag = "v1.1.0",
1279 )
1280
1281 go_repository(
1282 name = "com_github_magiconair_properties",
1283 importpath = "github.com/magiconair/properties",
1284 tag = "v1.8.0",
1285 )
1286
1287 go_repository(
1288 name = "com_github_makenowjust_heredoc",
1289 commit = "bb23615498cd",
1290 importpath = "github.com/MakeNowJust/heredoc",
1291 )
1292
1293 go_repository(
1294 name = "com_github_mattn_go_colorable",
1295 importpath = "github.com/mattn/go-colorable",
1296 tag = "v0.0.9",
1297 )
1298
1299 go_repository(
1300 name = "com_github_mattn_go_runewidth",
1301 importpath = "github.com/mattn/go-runewidth",
1302 tag = "v0.0.2",
1303 )
1304
1305 go_repository(
1306 name = "com_github_mitchellh_go_homedir",
1307 importpath = "github.com/mitchellh/go-homedir",
1308 tag = "v1.1.0",
1309 )
1310
1311 go_repository(
1312 name = "com_github_morikuni_aec",
1313 importpath = "github.com/morikuni/aec",
1314 tag = "v1.0.0",
1315 )
1316
1317 go_repository(
1318 name = "com_github_munnerz_goautoneg",
1319 commit = "a7dc8b61c822",
1320 importpath = "github.com/munnerz/goautoneg",
1321 )
1322
1323 go_repository(
1324 name = "com_github_mwitkow_go_conntrack",
1325 commit = "cc309e4a2223",
1326 importpath = "github.com/mwitkow/go-conntrack",
1327 )
1328
1329 go_repository(
1330 name = "com_github_mxk_go_flowrate",
1331 commit = "cca7078d478f",
1332 importpath = "github.com/mxk/go-flowrate",
1333 )
1334
1335 go_repository(
1336 name = "com_github_nytimes_gziphandler",
1337 commit = "56545f4a5d46",
1338 importpath = "github.com/NYTimes/gziphandler",
1339 )
1340
1341 go_repository(
1342 name = "com_github_olekukonko_tablewriter",
1343 commit = "a0225b3f23b5",
1344 importpath = "github.com/olekukonko/tablewriter",
1345 )
1346
1347 go_repository(
1348 name = "com_github_pelletier_go_toml",
1349 importpath = "github.com/pelletier/go-toml",
1350 tag = "v1.2.0",
1351 )
1352
1353 go_repository(
1354 name = "com_github_pquerna_cachecontrol",
1355 commit = "0dec1b30a021",
1356 importpath = "github.com/pquerna/cachecontrol",
1357 )
1358
1359 go_repository(
1360 name = "com_github_remyoudompheng_bigfft",
1361 commit = "52369c62f446",
1362 importpath = "github.com/remyoudompheng/bigfft",
1363 )
1364
1365 go_repository(
1366 name = "com_github_rogpeppe_fastuuid",
1367 commit = "6724a57986af",
1368 importpath = "github.com/rogpeppe/fastuuid",
1369 )
1370
1371 go_repository(
1372 name = "com_github_russross_blackfriday",
1373 importpath = "github.com/russross/blackfriday",
1374 tag = "v1.5.2",
1375 )
1376
1377 go_repository(
1378 name = "com_github_soheilhy_cmux",
1379 importpath = "github.com/soheilhy/cmux",
1380 tag = "v0.1.4",
1381 )
1382
1383 go_repository(
1384 name = "com_github_spf13_afero",
1385 importpath = "github.com/spf13/afero",
1386 tag = "v1.2.2",
1387 )
1388
1389 go_repository(
1390 name = "com_github_spf13_cast",
1391 importpath = "github.com/spf13/cast",
1392 tag = "v1.3.0",
1393 )
1394
1395 go_repository(
1396 name = "com_github_spf13_jwalterweatherman",
1397 importpath = "github.com/spf13/jwalterweatherman",
1398 tag = "v1.0.0",
1399 )
1400
1401 go_repository(
1402 name = "com_github_spf13_viper",
1403 importpath = "github.com/spf13/viper",
1404 tag = "v1.3.2",
1405 )
1406
1407 go_repository(
1408 name = "com_github_tmc_grpc_websocket_proxy",
1409 commit = "89b8d40f7ca8",
1410 importpath = "github.com/tmc/grpc-websocket-proxy",
1411 )
1412
1413 go_repository(
1414 name = "com_github_ugorji_go_codec",
1415 commit = "d75b2dcb6bc8",
1416 importpath = "github.com/ugorji/go/codec",
1417 )
1418
1419 go_repository(
1420 name = "com_github_xiang90_probing",
1421 commit = "43a291ad63a2",
1422 importpath = "github.com/xiang90/probing",
1423 )
1424
1425 go_repository(
1426 name = "com_github_xlab_handysort",
1427 commit = "fb3537ed64a1",
1428 importpath = "github.com/xlab/handysort",
1429 )
1430
1431 go_repository(
1432 name = "com_github_xordataexchange_crypt",
1433 commit = "b2862e3d0a77",
1434 importpath = "github.com/xordataexchange/crypt",
1435 )
1436
1437 go_repository(
1438 name = "in_gopkg_alecthomas_kingpin_v2",
1439 importpath = "gopkg.in/alecthomas/kingpin.v2",
1440 tag = "v2.2.6",
1441 )
1442
1443 go_repository(
1444 name = "in_gopkg_cheggaaa_pb_v1",
1445 importpath = "gopkg.in/cheggaaa/pb.v1",
1446 tag = "v1.0.25",
1447 )
1448
1449 go_repository(
1450 name = "in_gopkg_natefinch_lumberjack_v2",
1451 importpath = "gopkg.in/natefinch/lumberjack.v2",
1452 tag = "v2.0.0",
1453 )
1454
1455 go_repository(
1456 name = "in_gopkg_resty_v1",
1457 importpath = "gopkg.in/resty.v1",
1458 tag = "v1.12.0",
1459 )
1460
1461 go_repository(
1462 name = "in_gopkg_square_go_jose_v2",
1463 importpath = "gopkg.in/square/go-jose.v2",
1464 tag = "v2.2.2",
1465 )
1466
1467 go_repository(
1468 name = "io_etcd_go_bbolt",
1469 importpath = "go.etcd.io/bbolt",
1470 tag = "v1.3.3",
1471 )
1472
1473 go_repository(
1474 name = "io_etcd_go_etcd",
1475 commit = "3cf2f69b5738",
1476 importpath = "go.etcd.io/etcd",
1477 )
1478
1479 go_repository(
1480 name = "io_k8s_apiserver",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001481 importpath = "k8s.io/apiserver",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001482 sum = "h1:H7KUbLD74rh8NOPMLBJPSEG3Djqcv6Zxn5Ud0AL5u/k=",
1483 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001484 )
1485
1486 go_repository(
1487 name = "io_k8s_cli_runtime",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001488 importpath = "k8s.io/cli-runtime",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001489 sum = "h1:vZUTphJIvlh7+867cXiLmyzoCAuQdukbPLIad6eEajQ=",
1490 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001491 )
1492
1493 go_repository(
1494 name = "io_k8s_code_generator",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001495 importpath = "k8s.io/code-generator",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001496 sum = "h1:fTrTpJ8PZog5oo6MmeZtveo89emjQZHiw0ieybz1RSs=",
1497 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001498 )
1499
1500 go_repository(
1501 name = "io_k8s_component_base",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001502 importpath = "k8s.io/component-base",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001503 sum = "h1:c+DzDNAQFlaoyX+yv8YuWi8xmlQvvY5DnJGbaz5U74o=",
1504 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001505 )
1506
1507 go_repository(
1508 name = "io_k8s_gengo",
1509 commit = "26a664648505",
1510 importpath = "k8s.io/gengo",
1511 )
1512
1513 go_repository(
1514 name = "io_k8s_kubectl",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001515 importpath = "k8s.io/kubectl",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001516 sum = "h1:T8IHHpg+uRIfn34wqJ8wHG5bbH+VV5FNPtJ+jKcho1U=",
1517 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001518 )
1519
1520 go_repository(
1521 name = "io_k8s_metrics",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001522 build_file_proto_mode = "disable",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001523 importpath = "k8s.io/metrics",
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001524 sum = "h1:p/goUqtdCslX76mSNowzZkNxiKzNRQW4bUP02U34+QQ=",
1525 version = "v0.19.3",
Sergiusz Bazanski0c3b9a52020-06-21 01:26:22 +02001526 )
1527
1528 go_repository(
1529 name = "io_k8s_sigs_kustomize",
1530 importpath = "sigs.k8s.io/kustomize",
1531 tag = "v2.0.3",
1532 )
1533
1534 go_repository(
1535 name = "io_k8s_sigs_structured_merge_diff",
1536 commit = "b1b620dd3f06",
1537 importpath = "sigs.k8s.io/structured-merge-diff",
1538 )
1539
1540 go_repository(
1541 name = "org_golang_x_exp",
1542 commit = "4b39c73a6495",
1543 importpath = "golang.org/x/exp",
1544 )
1545
1546 go_repository(
1547 name = "org_golang_x_image",
1548 commit = "0694c2d4d067",
1549 importpath = "golang.org/x/image",
1550 )
1551
1552 go_repository(
1553 name = "org_golang_x_mobile",
1554 commit = "d3739f865fa6",
1555 importpath = "golang.org/x/mobile",
1556 )
1557
1558 go_repository(
1559 name = "org_golang_x_xerrors",
1560 commit = "a985d3407aa7",
1561 importpath = "golang.org/x/xerrors",
1562 )
1563
1564 go_repository(
1565 name = "org_gonum_v1_gonum",
1566 commit = "3d26580ed485",
1567 importpath = "gonum.org/v1/gonum",
1568 )
1569
1570 go_repository(
1571 name = "org_gonum_v1_netlib",
1572 commit = "76723241ea4e",
1573 importpath = "gonum.org/v1/netlib",
1574 )
1575
1576 go_repository(
1577 name = "org_modernc_cc",
1578 importpath = "modernc.org/cc",
1579 tag = "v1.0.0",
1580 )
1581
1582 go_repository(
1583 name = "org_modernc_golex",
1584 importpath = "modernc.org/golex",
1585 tag = "v1.0.0",
1586 )
1587
1588 go_repository(
1589 name = "org_modernc_mathutil",
1590 importpath = "modernc.org/mathutil",
1591 tag = "v1.0.0",
1592 )
1593
1594 go_repository(
1595 name = "org_modernc_strutil",
1596 importpath = "modernc.org/strutil",
1597 tag = "v1.0.0",
1598 )
1599
1600 go_repository(
1601 name = "org_modernc_xc",
1602 importpath = "modernc.org/xc",
1603 tag = "v1.0.0",
1604 )
1605
1606 go_repository(
1607 name = "org_uber_go_atomic",
1608 importpath = "go.uber.org/atomic",
1609 tag = "v1.3.2",
1610 )
1611
1612 go_repository(
1613 name = "org_uber_go_multierr",
1614 importpath = "go.uber.org/multierr",
1615 tag = "v1.1.0",
1616 )
1617
1618 go_repository(
1619 name = "org_uber_go_zap",
1620 importpath = "go.uber.org/zap",
1621 tag = "v1.10.0",
1622 )
1623
1624 go_repository(
1625 name = "com_github_dgraph_io_ristretto",
1626 commit = "83508260cb49a2c3261c2774c991870fd18b5a1b",
1627 importpath = "github.com/dgraph-io/ristretto",
1628 )
1629
1630 go_repository(
1631 name = "com_github_cespare_xxhash",
1632 commit = "d7df74196a9e781ede915320c11c378c1b2f3a1f",
1633 importpath = "github.com/cespare/xxhash",
1634 )
1635
1636 go_repository(
1637 name = "com_github_ulule_limiter_v3",
1638 commit = "6911899e37a5788df86f770b3f85c1c3eb0313d5",
1639 importpath = "github.com/ulule/limiter/v3",
1640 remote = "https://github.com/ulule/limiter",
1641 vcs = "git",
1642 )
1643
1644 go_repository(
1645 name = "com_github_go_telegram_bot_api_telegram_bot_api",
1646 commit = "b33efeebc78563cfeddf19563781cffb16aaabdf",
1647 importpath = "github.com/go-telegram-bot-api/telegram-bot-api",
1648 )
1649
1650 go_repository(
1651 name = "com_github_technoweenie_multipartstreamer",
1652 commit = "a90a01d73ae432e2611d178c18367fbaa13e0154",
1653 importpath = "github.com/technoweenie/multipartstreamer",
1654 )
1655
1656 go_repository(
1657 name = "in_gopkg_irc_v3",
1658 commit = "d07dcb9293789fdc99c797d3499a5799bc343b86",
1659 importpath = "gopkg.in/irc.v3",
1660 )
1661
1662 go_repository(
1663 name = "in_gopkg_russross_blackfriday_v2",
1664 commit = "d3b5b032dc8e8927d31a5071b56e14c89f045135",
1665 importpath = "gopkg.in/russross/blackfriday.v2",
1666 )
1667
1668 go_repository(
1669 name = "com_github_shurcool_sanitized_anchor_name",
1670 commit = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615",
1671 importpath = "github.com/shurcooL/sanitized_anchor_name",
1672 )
1673
1674 go_repository(
1675 name = "com_github_go_git_go_billy_v5",
1676 commit = "d7a8afccaed297c30f8dff5724dbe422b491dd0d",
1677 importpath = "github.com/go-git/go-billy/v5",
1678 remote = "https://github.com/go-git/go-billy",
1679 vcs = "git",
1680 )
1681
1682 go_repository(
1683 name = "com_github_go_git_go_git_v5",
1684 commit = "3127ad9a44a2ee935502816065dfe39f494f583d",
1685 importpath = "github.com/go-git/go-git/v5",
1686 remote = "https://github.com/go-git/go-git",
1687 vcs = "git",
1688 build_extra_args = [
1689 "-known_import=github.com/go-git/go-billy/v5",
1690 ],
1691 )
1692
1693 go_repository(
1694 name = "com_github_go_git_gcfg",
1695 commit = "22f18f9a74d34e3b1a7d59cfa33043bc50ebe376",
1696 importpath = "github.com/go-git/gcfg",
1697 )
1698
1699 go_repository(
1700 name = "in_gopkg_warnings_v0",
1701 commit = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b",
1702 importpath = "gopkg.in/warnings.v0",
1703 )
1704
1705 go_repository(
1706 name = "com_github_emirpasic_gods",
1707 commit = "80e934ed68b9084f386ae25f74f839aaecfb54d8",
1708 importpath = "github.com/emirpasic/gods",
1709 )
1710
1711 go_repository(
1712 name = "com_github_jbenet_go_context",
1713 commit = "d14ea06fba99483203c19d92cfcd13ebe73135f4",
1714 importpath = "github.com/jbenet/go-context",
1715 )
1716
1717 go_repository(
1718 name = "com_github_kevinburke_ssh_config",
1719 commit = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e",
1720 importpath = "github.com/kevinburke/ssh_config",
1721 )
1722
1723 go_repository(
1724 name = "com_github_xanzy_ssh_agent",
1725 commit = "6a3e2ff9e7c564f36873c2e36413f634534f1c44",
1726 importpath = "github.com/xanzy/ssh-agent",
1727 )
1728
1729 go_repository(
1730 name = "com_github_gabriel_vasile_mimetype",
1731 commit = "06500030e7d26826f68caa5ca7d98c315c4caa28",
1732 importpath = "github.com/gabriel-vasile/mimetype",
1733 )
1734
1735 go_repository(
1736 name = "com_github_kevinburke_go_bindata",
1737 commit = "a606d617e1d1546a2342de6fc4ed95c78e171d68",
1738 importpath = "github.com/kevinburke/go-bindata",
1739 )
Serge Bazanskib4c3f342020-10-24 17:16:55 +02001740
1741 go_repository(
1742 name = "com_github_yuin_goldmark",
1743 importpath = "github.com/yuin/goldmark",
1744 sum = "h1:ruQGxdhGHe7FWOJPT0mKs5+pD2Xs1Bm/kdGlHO04FmM=",
1745 version = "v1.2.1",
1746 )
1747
1748 go_repository(
1749 name = "com_github_jessevdk_go_flags",
1750 importpath = "github.com/jessevdk/go-flags",
1751 sum = "h1:4IU2WS7AumrZ/40jfhf4QVDMsQwqA7VEHozFRrGARJA=",
1752 version = "v1.4.0",
1753 )
1754
1755 # gostatic at 2.24. Unfortunately upstream doesn't follow semver tagging in `vx.y.z` form,
1756 # thereby prohibiting usage of a gomod version directly in the version attribute of this
1757 # rule.
1758 go_repository(
1759 name = "com_github_piranha_gostatic",
1760 importpath = "github.com/piranha/gostatic",
Serge Bazanski79b506b2020-10-24 17:36:25 +02001761 sum = "h1:GfShSQ+2DojR7GRI5wPByszs93zHXW2zOT0SuHadW6A=",
1762 version = "v0.0.0-20200923134324-eb52cbb4fb83",
Serge Bazanskib4c3f342020-10-24 17:16:55 +02001763 )
Serge Bazanskic3f36e92020-11-03 19:34:42 +01001764 go_repository(
1765 name = "io_k8s_klog_v2",
1766 importpath = "k8s.io/klog/v2",
1767 sum = "h1:7+X0fUguPyrKEC4WjH8iGDg3laWgMo5tMnRTIGTTxGQ=",
1768 version = "v2.4.0",
1769 )
1770 go_repository(
1771 name = "io_k8s_sigs_structured_merge_diff_v4",
1772 importpath = "sigs.k8s.io/structured-merge-diff/v4",
1773 sum = "h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=",
1774 version = "v4.0.1",
1775 )
1776 go_repository(
1777 name = "in_gopkg_yaml_v3",
1778 importpath = "gopkg.in/yaml.v3",
1779 sum = "h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ=",
1780 version = "v3.0.0-20200615113413-eeeca48fe776",
1781 )
1782 go_repository(
1783 name = "com_github_moby_term",
1784 importpath = "github.com/moby/term",
1785 sum = "h1:K6V0Kwa5efKo60sqbTk1FOBbltdyX9Klw2a9+lKhA18=",
1786 version = "v0.0.0-20201101162038-25d840ce174a",
1787 )
Serge Bazanski301435f2020-11-03 21:13:44 +01001788 go_repository(
1789 name = "com_github_census_instrumentation_opencensus_proto",
1790 importpath = "github.com/census-instrumentation/opencensus-proto",
1791 sum = "h1:t/LhUZLVitR1Ow2YOnduCsavhwFUklBMoGVYUCqmCqk=",
1792 version = "v0.3.0",
1793 build_extra_args = ["-exclude=src"],
1794 )
Serge Bazanski87801be2021-03-20 11:58:31 +00001795 go_repository(
1796 name = "com_github_minio_minio_go_v7",
1797 importpath = "github.com/minio/minio-go/v7",
1798 sum = "h1:1oUKe4EOPUEhw2qnPQaPsJ0lmVTYLFu03SiItauXs94=",
1799 version = "v7.0.10",
1800 )
1801 go_repository(
1802 name = "in_gopkg_ini_v1",
1803 importpath = "gopkg.in/ini.v1",
1804 sum = "h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU=",
1805 version = "v1.62.0",
1806 )
1807 go_repository(
1808 name = "com_github_minio_md5_simd",
1809 importpath = "github.com/minio/md5-simd",
1810 sum = "h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=",
1811 version = "v1.1.2",
1812 )
1813 go_repository(
1814 name = "com_github_minio_sha256_simd",
1815 importpath = "github.com/minio/sha256-simd",
1816 sum = "h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g=",
1817 version = "v1.0.0",
1818 )
1819 go_repository(
1820 name = "com_github_klauspost_cpuid_v2",
1821 importpath = "github.com/klauspost/cpuid/v2",
1822 sum = "h1:qnfhwbFriwDIX51QncuNU5mEMf+6KE3t7O8V2KQl3Dg=",
1823 version = "v2.0.5",
1824 )
1825 go_repository(
1826 name = "com_github_rs_xid",
1827 importpath = "github.com/rs/xid",
1828 sum = "h1:mhH9Nq+C1fY2l1XIpgxIiUOfNpRBYH1kKcr+qfKgjRc=",
1829 version = "v1.2.1",
1830 )
Serge Bazanski50e987c2021-07-11 12:32:36 +00001831 go_repository(
1832 name = "com_github_gorilla_sessions",
1833 importpath = "github.com/gorilla/sessions",
1834 sum = "h1:DHd3rPN5lE3Ts3D8rKkQ8x/0kqfeNmBAaiSi+o7FsgI=",
1835 version = "v1.2.1",
1836 )
1837 go_repository(
1838 name = "com_github_boltdb_bolt",
1839 importpath = "github.com/boltdb/bolt",
1840 sum = "h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4=",
1841 version = "v1.3.1",
1842 )
1843 go_repository(
1844 name = "com_github_gorilla_securecookie",
1845 importpath = "github.com/gorilla/securecookie",
1846 sum = "h1:miw7JPhV+b/lAHSXz4qd/nN9jRiAFV5FwjeKyCS8BvQ=",
1847 version = "v1.1.1",
1848 )
Serge Bazanski8ef457f2021-07-11 14:42:38 +00001849 go_repository(
1850 name = "com_github_arran4_golang_ical",
1851 importpath = "github.com/arran4/golang-ical",
1852 sum = "h1:oOgavmDMGCnNtwZwNoXuK3jCcpF3I96Do9/5qPeSCr8=",
1853 version = "v0.0.0-20210601225245-48fd351b08e7",
1854 )
1855