forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS.bzl
9323 lines (9321 loc) · 461 KB
/
DEPS.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
load("@bazel_gazelle//:deps.bzl", "go_repository")
# PRO-TIP: You can inject temorary changes to any of these dependencies by
# by pointing to an alternate remote to clone from. Delete the `sha256`,
# `strip_prefix`, and ` + `urls` parameters, and add `vcs = "git"` as well as a
# custom `remote` and `commit`. For example:
# go_repository(
# name = "com_github_cockroachdb_sentry_go",
# build_file_proto_mode = "disable_global",
# importpath = "github.com/cockroachdb/sentry-go",
# vcs = "git",
# remote = "https://github.com/rickystewart/sentry-go", # Custom fork.
# commit = "6c8e10aca9672de108063d4953399bd331b54037", # Custom commit.
# )
# The `remote` can be EITHER a URL, or an absolute local path to a clone, such
# as `/Users/ricky/go/src/github.com/cockroachdb/sentry-go`. Bazel will clone
# from the remote and check out the commit you specify.
def go_deps():
# NOTE: We ensure that we pin to these specific dependencies by calling
# this function FIRST, before calls to pull in dependencies for
# third-party libraries (e.g. rules_go, gazelle, etc.)
go_repository(
name = "co_honnef_go_tools",
build_file_proto_mode = "disable_global",
importpath = "honnef.co/go/tools",
sha256 = "b327a6e9565db3b835f2b224b9023f5dd9fb236e94285f002f0ac740ad2ac43b",
strip_prefix = "honnef.co/go/tools@v0.2.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/honnef.co/go/tools/co_honnef_go_tools-v0.2.1.zip",
],
)
go_repository(
name = "com_github_abbot_go_http_auth",
build_file_proto_mode = "disable_global",
importpath = "github.com/abbot/go-http-auth",
sha256 = "c0e46a64d55a47d790205df3b6d52f3ef5e354da5ce5088f376c977000610198",
strip_prefix = "github.com/abbot/go-http-auth@v0.4.1-0.20181019201920-860ed7f246ff",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/abbot/go-http-auth/com_github_abbot_go_http_auth-v0.4.1-0.20181019201920-860ed7f246ff.zip",
],
)
go_repository(
name = "com_github_abourget_teamcity",
build_file_proto_mode = "disable_global",
importpath = "github.com/abourget/teamcity",
sha256 = "9df6b028c9fb5bff7bdad844bda504356945fd6d3cd583c50f68d8b8e85060f6",
strip_prefix = "github.com/cockroachdb/teamcity@v0.0.0-20180905144921-8ca25c33eb11",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/teamcity/com_github_cockroachdb_teamcity-v0.0.0-20180905144921-8ca25c33eb11.zip",
],
)
go_repository(
name = "com_github_afex_hystrix_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/afex/hystrix-go",
sha256 = "c0e0ea63b57e95784eeeb18ab8988ac2c3d3a17dc729d557c963f391f372301c",
strip_prefix = "github.com/afex/hystrix-go@v0.0.0-20180502004556-fa1af6a1f4f5",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/afex/hystrix-go/com_github_afex_hystrix_go-v0.0.0-20180502004556-fa1af6a1f4f5.zip",
],
)
go_repository(
name = "com_github_agnivade_levenshtein",
build_file_proto_mode = "disable_global",
importpath = "github.com/agnivade/levenshtein",
sha256 = "cb0e7f070ba2b6a10e1c600d71f06508404801ff45046853001b83be6ebedac3",
strip_prefix = "github.com/agnivade/levenshtein@v1.0.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/agnivade/levenshtein/com_github_agnivade_levenshtein-v1.0.1.zip",
],
)
go_repository(
name = "com_github_ajg_form",
build_file_proto_mode = "disable_global",
importpath = "github.com/ajg/form",
sha256 = "b063b07639670ce9b6a0065b4dc35ef9e4cebc0c601be27f5494a3e6a87eb78b",
strip_prefix = "github.com/ajg/form@v1.5.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/ajg/form/com_github_ajg_form-v1.5.1.zip",
],
)
go_repository(
name = "com_github_ajstarks_svgo",
build_file_proto_mode = "disable_global",
importpath = "github.com/ajstarks/svgo",
sha256 = "cdf6900823539ab02e7f6e0edcdb4c12b3dcec97068a350e564ff622132ae7fc",
strip_prefix = "github.com/ajstarks/svgo@v0.0.0-20180226025133-644b8db467af",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/ajstarks/svgo/com_github_ajstarks_svgo-v0.0.0-20180226025133-644b8db467af.zip",
],
)
go_repository(
name = "com_github_akavel_rsrc",
build_file_proto_mode = "disable_global",
importpath = "github.com/akavel/rsrc",
sha256 = "13954a09edc3a680d633c5ea7b4be902df3a70ca1720b349faadca44dc0c7ecc",
strip_prefix = "github.com/akavel/rsrc@v0.8.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/akavel/rsrc/com_github_akavel_rsrc-v0.8.0.zip",
],
)
go_repository(
name = "com_github_alecthomas_template",
build_file_proto_mode = "disable_global",
importpath = "github.com/alecthomas/template",
sha256 = "25e3be7192932d130d0af31ce5bcddae887647ba4afcfb32009c3b9b79dbbdb3",
strip_prefix = "github.com/alecthomas/template@v0.0.0-20190718012654-fb15b899a751",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/alecthomas/template/com_github_alecthomas_template-v0.0.0-20190718012654-fb15b899a751.zip",
],
)
go_repository(
name = "com_github_alecthomas_units",
build_file_proto_mode = "disable_global",
importpath = "github.com/alecthomas/units",
sha256 = "461b05eb19b6023664d6502cb4fbf093a99a9ee2a36c43b4da5ca1287c495ff7",
strip_prefix = "github.com/alecthomas/units@v0.0.0-20210208195552-ff826a37aa15",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/alecthomas/units/com_github_alecthomas_units-v0.0.0-20210208195552-ff826a37aa15.zip",
],
)
go_repository(
name = "com_github_alessio_shellescape",
build_file_proto_mode = "disable_global",
importpath = "github.com/alessio/shellescape",
sha256 = "e28d444e73b803a15cf83e6179149d34c6c132baa60cb8137e5f0aea50a543bf",
strip_prefix = "github.com/alessio/shellescape@v1.4.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/alessio/shellescape/com_github_alessio_shellescape-v1.4.1.zip",
],
)
go_repository(
name = "com_github_alexbrainman_sspi",
build_file_proto_mode = "disable_global",
importpath = "github.com/alexbrainman/sspi",
sha256 = "596bc141f8557e6eaad5950b835dfa61f8894bf6fdad00555725526fffb9eada",
strip_prefix = "github.com/alexbrainman/sspi@v0.0.0-20180613141037-e580b900e9f5",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/alexbrainman/sspi/com_github_alexbrainman_sspi-v0.0.0-20180613141037-e580b900e9f5.zip",
],
)
go_repository(
name = "com_github_alexflint_go_filemutex",
build_file_proto_mode = "disable_global",
importpath = "github.com/alexflint/go-filemutex",
sha256 = "f3517f75266ac4651b0b421dd970a68d5645c929062f2d67b9e1e4685562b690",
strip_prefix = "github.com/alexflint/go-filemutex@v0.0.0-20171022225611-72bdc8eae2ae",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/alexflint/go-filemutex/com_github_alexflint_go_filemutex-v0.0.0-20171022225611-72bdc8eae2ae.zip",
],
)
go_repository(
name = "com_github_andreasbriese_bbloom",
build_file_proto_mode = "disable_global",
importpath = "github.com/AndreasBriese/bbloom",
sha256 = "8b8c016e041592d4ca8cbd2a8c68e0dd0ba1b7a8f96fab7422c8e373b1835a2d",
strip_prefix = "github.com/AndreasBriese/bbloom@v0.0.0-20190825152654-46b345b51c96",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/AndreasBriese/bbloom/com_github_andreasbriese_bbloom-v0.0.0-20190825152654-46b345b51c96.zip",
],
)
go_repository(
name = "com_github_andreyvit_diff",
build_file_proto_mode = "disable_global",
importpath = "github.com/andreyvit/diff",
sha256 = "d39614ff930006640ec15865bca0bb6bf8e1ed145bccf30bab08b88c1d90f670",
strip_prefix = "github.com/andreyvit/diff@v0.0.0-20170406064948-c7f18ee00883",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/andreyvit/diff/com_github_andreyvit_diff-v0.0.0-20170406064948-c7f18ee00883.zip",
],
)
go_repository(
name = "com_github_andy_kimball_arenaskl",
build_file_proto_mode = "disable_global",
importpath = "github.com/andy-kimball/arenaskl",
sha256 = "a3d6ee002f3d47e1a0188c7ee908e2ee424b1124753fba88080000faac8480b0",
strip_prefix = "github.com/andy-kimball/arenaskl@v0.0.0-20200617143215-f701008588b9",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/andy-kimball/arenaskl/com_github_andy_kimball_arenaskl-v0.0.0-20200617143215-f701008588b9.zip",
],
)
go_repository(
name = "com_github_andybalholm_brotli",
build_file_proto_mode = "disable_global",
importpath = "github.com/andybalholm/brotli",
sha256 = "60d5aa0132b481cde660dbf77de8d139f2baf2ce1a6e25c980f31020efcf42b2",
strip_prefix = "github.com/andybalholm/brotli@v1.0.2",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/andybalholm/brotli/com_github_andybalholm_brotli-v1.0.2.zip",
],
)
go_repository(
name = "com_github_andybalholm_cascadia",
build_file_proto_mode = "disable_global",
importpath = "github.com/andybalholm/cascadia",
sha256 = "8cc5679e5070e2076369e2f7a24341cf0ccb139f49cccf153f72902f24876d81",
strip_prefix = "github.com/andybalholm/cascadia@v1.2.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/andybalholm/cascadia/com_github_andybalholm_cascadia-v1.2.0.zip",
],
)
go_repository(
name = "com_github_andygrunwald_go_jira",
build_file_proto_mode = "disable_global",
importpath = "github.com/andygrunwald/go-jira",
sha256 = "89fc3ece1f9d367e211845ef4f33bed49273af58fdf65c561eb67903d3b72979",
strip_prefix = "github.com/andygrunwald/go-jira@v1.14.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/andygrunwald/go-jira/com_github_andygrunwald_go_jira-v1.14.0.zip",
],
)
go_repository(
name = "com_github_antihax_optional",
build_file_proto_mode = "disable_global",
importpath = "github.com/antihax/optional",
sha256 = "15ab4d41bdbb72ee0ac63db616cdefc7671c79e13d0f73b58355a6a88219c97f",
strip_prefix = "github.com/antihax/optional@v1.0.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/antihax/optional/com_github_antihax_optional-v1.0.0.zip",
],
)
go_repository(
name = "com_github_aokoli_goutils",
build_file_proto_mode = "disable_global",
importpath = "github.com/aokoli/goutils",
sha256 = "96ee68caaf3f4e673e27c97659b4ea10a4fd81dbf24fabd2dc01e187a772355c",
strip_prefix = "github.com/aokoli/goutils@v1.0.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aokoli/goutils/com_github_aokoli_goutils-v1.0.1.zip",
],
)
go_repository(
name = "com_github_apache_arrow_go_arrow",
build_file_proto_mode = "disable_global",
importpath = "github.com/apache/arrow/go/arrow",
sha256 = "5018a8784061fd3a5e52069fb321ebe2d96181d4a6f2d594cb60ff3787998580",
strip_prefix = "github.com/apache/arrow/go/arrow@v0.0.0-20200923215132-ac86123a3f01",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/apache/arrow/go/arrow/com_github_apache_arrow_go_arrow-v0.0.0-20200923215132-ac86123a3f01.zip",
],
)
go_repository(
name = "com_github_apache_thrift",
build_file_proto_mode = "disable_global",
importpath = "github.com/apache/thrift",
sha256 = "f9e5418fda5dff9f5e1a892a127472fc621d417b3ee1351e53141509233fb1d5",
strip_prefix = "github.com/apache/thrift@v0.15.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/apache/thrift/com_github_apache_thrift-v0.15.0.zip",
],
)
go_repository(
name = "com_github_armon_circbuf",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/circbuf",
sha256 = "3819cde26cd4b25c4043dc9384da7b0c1c29fd06e6e3a38604f4a6933fc017ed",
strip_prefix = "github.com/armon/circbuf@v0.0.0-20150827004946-bbbad097214e",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/armon/circbuf/com_github_armon_circbuf-v0.0.0-20150827004946-bbbad097214e.zip",
],
)
go_repository(
name = "com_github_armon_consul_api",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/consul-api",
sha256 = "091b79667f16ae245785956c490fe05ee26970a89f8ecdbe858ae3510d725088",
strip_prefix = "github.com/armon/consul-api@v0.0.0-20180202201655-eb2c6b5be1b6",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/armon/consul-api/com_github_armon_consul_api-v0.0.0-20180202201655-eb2c6b5be1b6.zip",
],
)
go_repository(
name = "com_github_armon_go_metrics",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/go-metrics",
sha256 = "dba0cd2b5d068409eb4acbb1cf14544252068339fcf49e7dc7f3a778bb843d53",
strip_prefix = "github.com/armon/go-metrics@v0.3.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/armon/go-metrics/com_github_armon_go_metrics-v0.3.3.zip",
],
)
go_repository(
name = "com_github_armon_go_radix",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/go-radix",
sha256 = "df93c816505baf12c3efe61328dc6f8fa42438f68f80b0b3725cae957d021c90",
strip_prefix = "github.com/armon/go-radix@v1.0.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/armon/go-radix/com_github_armon_go_radix-v1.0.0.zip",
],
)
go_repository(
name = "com_github_armon_go_socks5",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/go-socks5",
sha256 = "f473e6dce826a0552639833cf72cfaa8bc7141daa7b537622d7f78eacfd9dfb3",
strip_prefix = "github.com/armon/go-socks5@v0.0.0-20160902184237-e75332964ef5",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/armon/go-socks5/com_github_armon_go_socks5-v0.0.0-20160902184237-e75332964ef5.zip",
],
)
go_repository(
name = "com_github_aryann_difflib",
build_file_proto_mode = "disable_global",
importpath = "github.com/aryann/difflib",
sha256 = "973aae50e3d85569e1f0f6cbca78bf9b5896ce53d0534422a7db46f947b50764",
strip_prefix = "github.com/aryann/difflib@v0.0.0-20170710044230-e206f873d14a",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aryann/difflib/com_github_aryann_difflib-v0.0.0-20170710044230-e206f873d14a.zip",
],
)
go_repository(
name = "com_github_asaskevich_govalidator",
build_file_proto_mode = "disable_global",
importpath = "github.com/asaskevich/govalidator",
sha256 = "9b846e311015bbb7854cf001d5717d6fd91a580ac6315977ae7395256e18d729",
strip_prefix = "github.com/asaskevich/govalidator@v0.0.0-20200907205600-7a23bdc65eef",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/asaskevich/govalidator/com_github_asaskevich_govalidator-v0.0.0-20200907205600-7a23bdc65eef.zip",
],
)
go_repository(
name = "com_github_aws_aws_lambda_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-lambda-go",
sha256 = "8cfc5400798abd2840f456c75265f8fba4ae488e32ca2af9a5c8073fb219ea82",
strip_prefix = "github.com/aws/aws-lambda-go@v1.13.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-lambda-go/com_github_aws_aws_lambda_go-v1.13.3.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go",
sha256 = "c0c481d28af88f621fb3fdeacc1e5d32f69a1bb83d0ee959f95ce89e4e2d0494",
strip_prefix = "github.com/aws/aws-sdk-go@v1.40.37",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go/com_github_aws_aws_sdk_go-v1.40.37.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2",
sha256 = "546b4f58c58aedf988945dc4709cf3af67a639ed94e0cf4df58389e9f9b345d8",
strip_prefix = "github.com/aws/aws-sdk-go-v2@v1.9.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/com_github_aws_aws_sdk_go_v2-v1.9.1.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_config",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/config",
sha256 = "7a9129c2cf9cdd5f2e74cae969c23a4212f040f08a73b03880c2d34faad0f887",
strip_prefix = "github.com/aws/aws-sdk-go-v2/config@v1.8.2",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/config/com_github_aws_aws_sdk_go_v2_config-v1.8.2.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_credentials",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/credentials",
sha256 = "b8d47052b7527e524589fcaf2e25e7cd8bbb4ebc176262704555d8fa9270a695",
strip_prefix = "github.com/aws/aws-sdk-go-v2/credentials@v1.4.2",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/credentials/com_github_aws_aws_sdk_go_v2_credentials-v1.4.2.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_feature_ec2_imds",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/feature/ec2/imds",
sha256 = "74cd015671e1446d67633aca7eab28f28a77d0cb103d96f167eef40beeeda3e1",
strip_prefix = "github.com/aws/aws-sdk-go-v2/feature/ec2/imds@v1.5.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/feature/ec2/imds/com_github_aws_aws_sdk_go_v2_feature_ec2_imds-v1.5.1.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_internal_ini",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/internal/ini",
sha256 = "e5ae7a3f32399258561cab83199c1ec9d30d32e771ce7a877c64c208a6cea27f",
strip_prefix = "github.com/aws/aws-sdk-go-v2/internal/ini@v1.2.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/internal/ini/com_github_aws_aws_sdk_go_v2_internal_ini-v1.2.3.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_service_ec2",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/service/ec2",
sha256 = "384c3420c234109162eb46a07ea406323a0d4368828d1263012aa843816bd198",
strip_prefix = "github.com/aws/aws-sdk-go-v2/service/ec2@v1.18.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/service/ec2/com_github_aws_aws_sdk_go_v2_service_ec2-v1.18.0.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_service_iam",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/service/iam",
sha256 = "4181fee25ea8b9b9375fea74bc2e6abc2e7116e2db528c12986c14d2ecc675b0",
strip_prefix = "github.com/aws/aws-sdk-go-v2/service/iam@v1.10.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/service/iam/com_github_aws_aws_sdk_go_v2_service_iam-v1.10.0.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_service_internal_presigned_url",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/service/internal/presigned-url",
sha256 = "1705ae1c40d49cbed56d416850c84eeca9338dfbb014bc7b8021658153e1f6f6",
strip_prefix = "github.com/aws/aws-sdk-go-v2/service/internal/presigned-url@v1.3.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/com_github_aws_aws_sdk_go_v2_service_internal_presigned_url-v1.3.1.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_service_sso",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/service/sso",
sha256 = "0f9fbe0b009919a72907e198a72ad72fd406ad9272395b4f2bf50ae9d6478b2d",
strip_prefix = "github.com/aws/aws-sdk-go-v2/service/sso@v1.4.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/service/sso/com_github_aws_aws_sdk_go_v2_service_sso-v1.4.1.zip",
],
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2_service_sts",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go-v2/service/sts",
sha256 = "046ae61b43524dd22bf8ce8d2bbf51e337cf91889db47b83121b88658c58a0fd",
strip_prefix = "github.com/aws/aws-sdk-go-v2/service/sts@v1.7.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/aws-sdk-go-v2/service/sts/com_github_aws_aws_sdk_go_v2_service_sts-v1.7.1.zip",
],
)
go_repository(
name = "com_github_aws_smithy_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/smithy-go",
sha256 = "32b0e7b2c239ee27904c46ac4910725ad45737c118601c161ab7d2a9948197b5",
strip_prefix = "github.com/aws/smithy-go@v1.8.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aws/smithy-go/com_github_aws_smithy_go-v1.8.0.zip",
],
)
go_repository(
name = "com_github_axiomhq_hyperloglog",
build_file_proto_mode = "disable_global",
importpath = "github.com/axiomhq/hyperloglog",
sha256 = "812834322ee2ca50dc36f91f9ac3f2cde4631af2f9c330b1271c78b46024a540",
strip_prefix = "github.com/axiomhq/hyperloglog@v0.0.0-20181223111420-4b99d0c2c99e",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/axiomhq/hyperloglog/com_github_axiomhq_hyperloglog-v0.0.0-20181223111420-4b99d0c2c99e.zip",
],
)
go_repository(
name = "com_github_aymerick_raymond",
build_file_proto_mode = "disable_global",
importpath = "github.com/aymerick/raymond",
sha256 = "0a759716a73b587a436b3b4a95416a58bb1ffa1decf2cd7a92f1eeb2f9c654c1",
strip_prefix = "github.com/aymerick/raymond@v2.0.3-0.20180322193309-b565731e1464+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/aymerick/raymond/com_github_aymerick_raymond-v2.0.3-0.20180322193309-b565731e1464+incompatible.zip",
],
)
go_repository(
name = "com_github_azure_azure_pipeline_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-pipeline-go",
sha256 = "5881763a04c7705d2f348bfe18ec56266499265487d99fe448ded9874f4f3672",
strip_prefix = "github.com/Azure/azure-pipeline-go@v0.2.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-pipeline-go/com_github_azure_azure_pipeline_go-v0.2.3.zip",
],
)
go_repository(
name = "com_github_azure_azure_sdk_for_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-sdk-for-go",
sha256 = "7232ccaf96ab411dce27e8c61f4ec0e20835f60e192ffc7b56b7c3a308e29978",
strip_prefix = "github.com/Azure/azure-sdk-for-go@v57.1.0+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-sdk-for-go/com_github_azure_azure_sdk_for_go-v57.1.0+incompatible.zip",
],
)
go_repository(
name = "com_github_azure_azure_storage_blob_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-storage-blob-go",
sha256 = "b327f049492efbfbf81173148cd96b9009dcbc1a5bfce48c2d186c77bd296397",
strip_prefix = "github.com/Azure/azure-storage-blob-go@v0.14.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/azure-storage-blob-go/com_github_azure_azure_storage_blob_go-v0.14.0.zip",
],
)
go_repository(
name = "com_github_azure_go_ansiterm",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-ansiterm",
sha256 = "b7a14d18891abef8b8a2e622f62a3cebeac32f9f1223dc9d62a6f8769861aaf2",
strip_prefix = "github.com/Azure/go-ansiterm@v0.0.0-20170929234023-d6e3b3328b78",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-ansiterm/com_github_azure_go_ansiterm-v0.0.0-20170929234023-d6e3b3328b78.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest",
sha256 = "89ac786da5b108e594bb1fbbf8f39a822fc1d994be1ff7cc6e860e8b45f3d80c",
strip_prefix = "github.com/Azure/go-autorest@v14.2.0+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/com_github_azure_go_autorest-v14.2.0+incompatible.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest",
sha256 = "b5a184bbbec884260a5f4edf39bfd8fe5dc11c70199bcb4a69cb8f3e86b65d87",
strip_prefix = "github.com/Azure/go-autorest/autorest@v0.11.20",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/com_github_azure_go_autorest_autorest-v0.11.20.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_adal",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/adal",
sha256 = "791f1d559e2c4d99f4d29465fd71f5589e368e2087701b78970ad8dcc7be6299",
strip_prefix = "github.com/Azure/go-autorest/autorest/adal@v0.9.15",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/adal/com_github_azure_go_autorest_autorest_adal-v0.9.15.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_azure_auth",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/azure/auth",
sha256 = "7b50ba475d5a8dfcdd37fb5b53ece9e6d6150257d55c279347653ee143518c6f",
strip_prefix = "github.com/Azure/go-autorest/autorest/azure/auth@v0.5.8",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/azure/auth/com_github_azure_go_autorest_autorest_azure_auth-v0.5.8.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_azure_cli",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/azure/cli",
sha256 = "53e5162b6d72f1ab39119713cf3862a287e9fc61439d06d30378daf3e7bf1b7d",
strip_prefix = "github.com/Azure/go-autorest/autorest/azure/cli@v0.4.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/azure/cli/com_github_azure_go_autorest_autorest_azure_cli-v0.4.3.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_date",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/date",
sha256 = "7b59c0421eaf8549f20d17aab7e3e4621e1798de1119dac65a04c110d110d64d",
strip_prefix = "github.com/Azure/go-autorest/autorest/date@v0.3.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/date/com_github_azure_go_autorest_autorest_date-v0.3.0.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_mocks",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/mocks",
sha256 = "ccf8e9538ec800b2b9f4f2abed30e1bafe1e26487a9d0239af286de60c9ec0b0",
strip_prefix = "github.com/Azure/go-autorest/autorest/mocks@v0.4.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/mocks/com_github_azure_go_autorest_autorest_mocks-v0.4.1.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_to",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/to",
sha256 = "d5b92f83195b4cdc690d1f015a52678ba1300485049ef27489b112a1dc056e93",
strip_prefix = "github.com/Azure/go-autorest/autorest/to@v0.4.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/to/com_github_azure_go_autorest_autorest_to-v0.4.0.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_autorest_validation",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/validation",
sha256 = "70c6a2f246af440cb891028ffe32546fe31de53ffab5f2f93f6c1652efd549c3",
strip_prefix = "github.com/Azure/go-autorest/autorest/validation@v0.3.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/autorest/validation/com_github_azure_go_autorest_autorest_validation-v0.3.1.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_logger",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/logger",
sha256 = "90c84e126b503027f69d232f4ce5758ae01d08ea729c71539ebff851f2477b49",
strip_prefix = "github.com/Azure/go-autorest/logger@v0.2.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/logger/com_github_azure_go_autorest_logger-v0.2.1.zip",
],
)
go_repository(
name = "com_github_azure_go_autorest_tracing",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/tracing",
sha256 = "b7296ba64ecae67c83ae1c89da47c6f65c2ff0807027e301daccab32673914b3",
strip_prefix = "github.com/Azure/go-autorest/tracing@v0.6.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/Azure/go-autorest/tracing/com_github_azure_go_autorest_tracing-v0.6.0.zip",
],
)
go_repository(
name = "com_github_bazelbuild_remote_apis",
build_file_proto_mode = "disable_global",
importpath = "github.com/bazelbuild/remote-apis",
sha256 = "b0e976769bbe7c63773b50b407c952c0d1525b6d26b3585e16e09cb1cd195e75",
strip_prefix = "github.com/bazelbuild/remote-apis@v0.0.0-20200708200203-1252343900d9",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bazelbuild/remote-apis/com_github_bazelbuild_remote_apis-v0.0.0-20200708200203-1252343900d9.zip",
],
)
go_repository(
name = "com_github_bazelbuild_rules_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/bazelbuild/rules_go",
sha256 = "0f69d51e54c1012f62434b68e6d49e2e1c1371a493926da58063e8461aa2b9ff",
strip_prefix = "github.com/bazelbuild/rules_go@v0.26.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bazelbuild/rules_go/com_github_bazelbuild_rules_go-v0.26.0.zip",
],
)
go_repository(
name = "com_github_benbjohnson_clock",
build_file_proto_mode = "disable_global",
importpath = "github.com/benbjohnson/clock",
sha256 = "d04e441d7f577f7861db72305478105dc75fd7030307a0fa325e328500283445",
strip_prefix = "github.com/benbjohnson/clock@v1.1.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/benbjohnson/clock/com_github_benbjohnson_clock-v1.1.0.zip",
],
)
go_repository(
name = "com_github_benbjohnson_immutable",
build_file_proto_mode = "disable_global",
importpath = "github.com/benbjohnson/immutable",
sha256 = "0647fb6491c6606945e04f2c83b4163b9cf3584550f387695c32f262efa198b7",
strip_prefix = "github.com/benbjohnson/immutable@v0.2.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/benbjohnson/immutable/com_github_benbjohnson_immutable-v0.2.1.zip",
],
)
go_repository(
name = "com_github_benbjohnson_tmpl",
build_file_proto_mode = "disable_global",
importpath = "github.com/benbjohnson/tmpl",
sha256 = "7341fd268e36500455f8f0efab16db29525f2483c0fc8dca1e81f9c42a10b633",
strip_prefix = "github.com/benbjohnson/tmpl@v1.0.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/benbjohnson/tmpl/com_github_benbjohnson_tmpl-v1.0.0.zip",
],
)
go_repository(
name = "com_github_beorn7_perks",
build_file_proto_mode = "disable_global",
importpath = "github.com/beorn7/perks",
sha256 = "25bd9e2d94aca770e6dbc1f53725f84f6af4432f631d35dd2c46f96ef0512f1a",
strip_prefix = "github.com/beorn7/perks@v1.0.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/beorn7/perks/com_github_beorn7_perks-v1.0.1.zip",
],
)
go_repository(
name = "com_github_bgentry_go_netrc",
build_file_proto_mode = "disable_global",
importpath = "github.com/bgentry/go-netrc",
sha256 = "59fbb1e8e307ccd7052f77186990d744284b186e8b1c5ebdfb12405ae8d7f935",
strip_prefix = "github.com/bgentry/go-netrc@v0.0.0-20140422174119-9fd32a8b3d3d",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bgentry/go-netrc/com_github_bgentry_go_netrc-v0.0.0-20140422174119-9fd32a8b3d3d.zip",
],
)
go_repository(
name = "com_github_bgentry_speakeasy",
build_file_proto_mode = "disable_global",
importpath = "github.com/bgentry/speakeasy",
sha256 = "d4bfd48b9bf68c87f92c94478ac910bcdab272e15eb909d58f1fb939233f75f0",
strip_prefix = "github.com/bgentry/speakeasy@v0.1.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bgentry/speakeasy/com_github_bgentry_speakeasy-v0.1.0.zip",
],
)
go_repository(
name = "com_github_biogo_store",
build_file_proto_mode = "disable_global",
importpath = "github.com/biogo/store",
sha256 = "26551f8829c5ada84a68ef240732375be6747252aba423cf5c88bc03002c3600",
strip_prefix = "github.com/biogo/store@v0.0.0-20160505134755-913427a1d5e8",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/biogo/store/com_github_biogo_store-v0.0.0-20160505134755-913427a1d5e8.zip",
],
)
go_repository(
name = "com_github_bitly_go_hostpool",
build_file_proto_mode = "disable_global",
importpath = "github.com/bitly/go-hostpool",
sha256 = "9a55584d7fa2c1639d0ea11cd5b437786c2eadc2401d825e699ad6445fc8e476",
strip_prefix = "github.com/bitly/go-hostpool@v0.0.0-20171023180738-a3a6125de932",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bitly/go-hostpool/com_github_bitly_go_hostpool-v0.0.0-20171023180738-a3a6125de932.zip",
],
)
go_repository(
name = "com_github_bitly_go_simplejson",
build_file_proto_mode = "disable_global",
importpath = "github.com/bitly/go-simplejson",
sha256 = "53930281dc7fba8947c1b1f07c82952a38dcaefae23bd3c8e71d70a6daa6cb40",
strip_prefix = "github.com/bitly/go-simplejson@v0.5.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bitly/go-simplejson/com_github_bitly_go_simplejson-v0.5.0.zip",
],
)
go_repository(
name = "com_github_bketelsen_crypt",
build_file_proto_mode = "disable_global",
importpath = "github.com/bketelsen/crypt",
sha256 = "ab24f8c0386cc7fce86f4e6680c32214e1e597980bd80127ac84e71ace6763da",
strip_prefix = "github.com/bketelsen/crypt@v0.0.4",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bketelsen/crypt/com_github_bketelsen_crypt-v0.0.4.zip",
],
)
go_repository(
name = "com_github_blang_semver",
build_file_proto_mode = "disable_global",
importpath = "github.com/blang/semver",
sha256 = "8d032399cf835b93f7cf641b5477a31a002059eed7888a775f97bd3e9677ad3c",
strip_prefix = "github.com/blang/semver@v3.5.1+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/blang/semver/com_github_blang_semver-v3.5.1+incompatible.zip",
],
)
go_repository(
name = "com_github_bmizerany_assert",
build_file_proto_mode = "disable_global",
importpath = "github.com/bmizerany/assert",
sha256 = "2532a167df77ade7e8012f07c0e3db4d4c15abdb7ffa7b05e1d961408da9a539",
strip_prefix = "github.com/bmizerany/assert@v0.0.0-20160611221934-b7ed37b82869",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bmizerany/assert/com_github_bmizerany_assert-v0.0.0-20160611221934-b7ed37b82869.zip",
],
)
go_repository(
name = "com_github_bmizerany_pat",
build_file_proto_mode = "disable_global",
importpath = "github.com/bmizerany/pat",
sha256 = "ed04bed4d193e25371ebc6524984da4af9ece5c107fcc82d5aa4914b726706d2",
strip_prefix = "github.com/bmizerany/pat@v0.0.0-20170815010413-6226ea591a40",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bmizerany/pat/com_github_bmizerany_pat-v0.0.0-20170815010413-6226ea591a40.zip",
],
)
go_repository(
name = "com_github_bmizerany_perks",
build_file_proto_mode = "disable_global",
importpath = "github.com/bmizerany/perks",
sha256 = "b78e7083e73b6c2d63a30d073515b2a03dbe3115171601009211208ee0c6046e",
strip_prefix = "github.com/bmizerany/perks@v0.0.0-20141205001514-d9a9656a3a4b",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bmizerany/perks/com_github_bmizerany_perks-v0.0.0-20141205001514-d9a9656a3a4b.zip",
],
)
go_repository(
name = "com_github_boltdb_bolt",
build_file_proto_mode = "disable_global",
importpath = "github.com/boltdb/bolt",
sha256 = "ecaf17b0dbe7c85a017704c72667b2526b492b1a753ce7302a27dd2fb2e6ee79",
strip_prefix = "github.com/boltdb/bolt@v1.3.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/boltdb/bolt/com_github_boltdb_bolt-v1.3.1.zip",
],
)
go_repository(
name = "com_github_bonitoo_io_go_sql_bigquery",
build_file_proto_mode = "disable_global",
importpath = "github.com/bonitoo-io/go-sql-bigquery",
sha256 = "44b0e33b6573e46aa1c15837a8d9433a1e07ca232be3ea89879cad11bdfea617",
strip_prefix = "github.com/bonitoo-io/go-sql-bigquery@v0.3.4-1.4.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bonitoo-io/go-sql-bigquery/com_github_bonitoo_io_go_sql_bigquery-v0.3.4-1.4.0.zip",
],
)
go_repository(
name = "com_github_broady_gogeohash",
build_file_proto_mode = "disable_global",
importpath = "github.com/broady/gogeohash",
sha256 = "e68cf873bace15902feaee2b42a139428e816e120a213901b4792f9006e38984",
strip_prefix = "github.com/broady/gogeohash@v0.0.0-20120525094510-7b2c40d64042",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/broady/gogeohash/com_github_broady_gogeohash-v0.0.0-20120525094510-7b2c40d64042.zip",
],
)
go_repository(
name = "com_github_bshuster_repo_logrus_logstash_hook",
build_file_proto_mode = "disable_global",
importpath = "github.com/bshuster-repo/logrus-logstash-hook",
sha256 = "743aace72067cc91c91cc4137566372220db5e5c487e2fd8fb04b6e23fe29d07",
strip_prefix = "github.com/bshuster-repo/logrus-logstash-hook@v0.4.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bshuster-repo/logrus-logstash-hook/com_github_bshuster_repo_logrus_logstash_hook-v0.4.1.zip",
],
)
go_repository(
name = "com_github_bsm_sarama_cluster",
build_file_proto_mode = "disable_global",
importpath = "github.com/bsm/sarama-cluster",
sha256 = "5926505c631af623184a1c95453f33f340724c207d5bdffcd5619f2121853a57",
strip_prefix = "github.com/bsm/sarama-cluster@v2.1.13+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bsm/sarama-cluster/com_github_bsm_sarama_cluster-v2.1.13+incompatible.zip",
],
)
go_repository(
name = "com_github_buchgr_bazel_remote",
build_file_proto_mode = "disable_global",
importpath = "github.com/buchgr/bazel-remote",
patch_args = ["-p1"],
patches = [
"@cockroach//build/patches:com_github_buchgr_bazel_remote.patch",
],
sha256 = "7ab70784fddbc59e956501b2bc15a30c36baedb34df0d26009607d80c9e129e2",
strip_prefix = "github.com/buchgr/bazel-remote@v1.3.3",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/buchgr/bazel-remote/com_github_buchgr_bazel_remote-v1.3.3.zip",
],
)
go_repository(
name = "com_github_bufbuild_buf",
build_file_proto_mode = "disable_global",
importpath = "github.com/bufbuild/buf",
sha256 = "a0bf6cfe3b90c931022d2700b62f1b272d7e2ab62096c3df24551e3f5a575a52",
strip_prefix = "github.com/bufbuild/buf@v0.56.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bufbuild/buf/com_github_bufbuild_buf-v0.56.0.zip",
],
)
go_repository(
name = "com_github_buger_jsonparser",
build_file_proto_mode = "disable_global",
importpath = "github.com/buger/jsonparser",
sha256 = "336c5facdeef6466131bf24c06f3ae1a40d038a7e6fdc3fcf3ab308ff50300c1",
strip_prefix = "github.com/buger/jsonparser@v0.0.0-20200322175846-f7e751efca13",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/buger/jsonparser/com_github_buger_jsonparser-v0.0.0-20200322175846-f7e751efca13.zip",
],
)
go_repository(
name = "com_github_bugsnag_bugsnag_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/bugsnag/bugsnag-go",
sha256 = "e3b275ae2552bd1fa60f9cf728232ee4bde66afa0da772c20cb0a105818cf1bf",
strip_prefix = "github.com/bugsnag/bugsnag-go@v0.0.0-20141110184014-b1d153021fcd",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bugsnag/bugsnag-go/com_github_bugsnag_bugsnag_go-v0.0.0-20141110184014-b1d153021fcd.zip",
],
)
go_repository(
name = "com_github_bugsnag_osext",
build_file_proto_mode = "disable_global",
importpath = "github.com/bugsnag/osext",
sha256 = "b29adb2508906ea508ba91f404ba33e709d43e037cec96d550335b8e756108bf",
strip_prefix = "github.com/bugsnag/osext@v0.0.0-20130617224835-0dd3f918b21b",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bugsnag/osext/com_github_bugsnag_osext-v0.0.0-20130617224835-0dd3f918b21b.zip",
],
)
go_repository(
name = "com_github_bugsnag_panicwrap",
build_file_proto_mode = "disable_global",
importpath = "github.com/bugsnag/panicwrap",
sha256 = "c88454a2204604baecd45fa06bab717034e501b406c15470dba4bc8902356401",
strip_prefix = "github.com/bugsnag/panicwrap@v0.0.0-20151223152923-e2c28503fcd0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/bugsnag/panicwrap/com_github_bugsnag_panicwrap-v0.0.0-20151223152923-e2c28503fcd0.zip",
],
)
go_repository(
name = "com_github_burntsushi_toml",
build_file_proto_mode = "disable_global",
importpath = "github.com/BurntSushi/toml",
sha256 = "3f2cf2328cdfac39db5ae69c84201f961b50d15792f77de0abe87089836a932c",
strip_prefix = "github.com/BurntSushi/toml@v0.4.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/BurntSushi/toml/com_github_burntsushi_toml-v0.4.1.zip",
],
)
go_repository(
name = "com_github_burntsushi_xgb",
build_file_proto_mode = "disable_global",
importpath = "github.com/BurntSushi/xgb",
sha256 = "f52962c7fbeca81ea8a777d1f8b1f1d25803dc437fbb490f253344232884328e",
strip_prefix = "github.com/BurntSushi/xgb@v0.0.0-20160522181843-27f122750802",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/BurntSushi/xgb/com_github_burntsushi_xgb-v0.0.0-20160522181843-27f122750802.zip",
],
)
go_repository(
name = "com_github_burntsushi_xgbutil",
build_file_proto_mode = "disable_global",
importpath = "github.com/BurntSushi/xgbutil",
sha256 = "680bb03650f0f43760cab53ec7b3b159ea489f04f379bbba25b5a8d77a2de2e0",
strip_prefix = "github.com/BurntSushi/xgbutil@v0.0.0-20160919175755-f7c97cef3b4e",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/BurntSushi/xgbutil/com_github_burntsushi_xgbutil-v0.0.0-20160919175755-f7c97cef3b4e.zip",
],
)
go_repository(
name = "com_github_c_bata_go_prompt",
build_file_proto_mode = "disable_global",
importpath = "github.com/c-bata/go-prompt",
sha256 = "ffe765d86d90afdf8519def13cb027c94a1fbafea7a18e9625210786663436c4",
strip_prefix = "github.com/c-bata/go-prompt@v0.2.2",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/c-bata/go-prompt/com_github_c_bata_go_prompt-v0.2.2.zip",
],
)
go_repository(
name = "com_github_cactus_go_statsd_client_statsd",
build_file_proto_mode = "disable_global",
importpath = "github.com/cactus/go-statsd-client/statsd",
sha256 = "7823c66e8c56c950643954712edbc9974669a10fe0041b67c9bd81dabd0538c0",
strip_prefix = "github.com/cactus/go-statsd-client/statsd@v0.0.0-20191106001114-12b4e2b38748",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cactus/go-statsd-client/statsd/com_github_cactus_go_statsd_client_statsd-v0.0.0-20191106001114-12b4e2b38748.zip",
],
)
go_repository(
name = "com_github_casbin_casbin_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/casbin/casbin/v2",
sha256 = "753df5c3fa5de68592e95fd55427f264dc7590a0bf781a77eb56ae721d6d3351",
strip_prefix = "github.com/casbin/casbin/v2@v2.1.2",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/casbin/casbin/v2/com_github_casbin_casbin_v2-v2.1.2.zip",
],
)
go_repository(
name = "com_github_cenkalti_backoff",
build_file_proto_mode = "disable_global",
importpath = "github.com/cenkalti/backoff",
sha256 = "f8196815a1b4d25e5b8158029d5264801fc8aa5ff128ccf30752fd169693d43b",
strip_prefix = "github.com/cenkalti/backoff@v2.2.1+incompatible",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cenkalti/backoff/com_github_cenkalti_backoff-v2.2.1+incompatible.zip",
],
)
go_repository(
name = "com_github_cenkalti_backoff_v3",
build_file_proto_mode = "disable_global",
importpath = "github.com/cenkalti/backoff/v3",
sha256 = "c69bf77e7b43cb3935d763c24af3810d9869a664bbcd26ffad9d3dc1bf602006",
strip_prefix = "github.com/cenkalti/backoff/v3@v3.0.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cenkalti/backoff/v3/com_github_cenkalti_backoff_v3-v3.0.0.zip",
],
)
go_repository(
name = "com_github_cenkalti_backoff_v4",
build_file_proto_mode = "disable_global",
importpath = "github.com/cenkalti/backoff/v4",
sha256 = "de69f5db190ee0f2c441e50e4bf607853ab99512a183a5713803888ced502dde",
strip_prefix = "github.com/cenkalti/backoff/v4@v4.1.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cenkalti/backoff/v4/com_github_cenkalti_backoff_v4-v4.1.1.zip",
],
)
go_repository(
name = "com_github_census_instrumentation_opencensus_proto",
build_file_proto_mode = "disable_global",
importpath = "github.com/census-instrumentation/opencensus-proto",
sha256 = "b3c09f3e635d47b4138695a547d1f2c7138f382cbe5a8b5865b66a8e08233461",
strip_prefix = "github.com/census-instrumentation/opencensus-proto@v0.2.1",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/census-instrumentation/opencensus-proto/com_github_census_instrumentation_opencensus_proto-v0.2.1.zip",
],
)
go_repository(
name = "com_github_certifi_gocertifi",
build_file_proto_mode = "disable_global",
importpath = "github.com/certifi/gocertifi",