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