forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS.bzl
2993 lines (2992 loc) · 116 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")
def go_deps():
go_repository(
name = "co_honnef_go_tools",
build_file_proto_mode = "disable_global",
importpath = "honnef.co/go/tools",
sum = "h1:RFEMAhc9/Ej5KcaFZooS1PGYAhVl+CUxVj2gyKYGxKQ=",
version = "v0.0.0-20190530104931-1f0868a609b7",
)
go_repository(
name = "com_github_abourget_teamcity",
build_file_proto_mode = "disable_global",
importpath = "github.com/abourget/teamcity",
replace = "github.com/cockroachdb/teamcity",
sum = "h1:UAqRo5xPCyTtZznAJ9iPVpDUFxGI0a6QWtQ8E+zwJRg=",
version = "v0.0.0-20180905144921-8ca25c33eb11",
)
go_repository(
name = "com_github_ajg_form",
build_file_proto_mode = "disable_global",
importpath = "github.com/ajg/form",
sum = "h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=",
version = "v1.5.1",
)
go_repository(
name = "com_github_alecthomas_template",
build_file_proto_mode = "disable_global",
importpath = "github.com/alecthomas/template",
sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=",
version = "v0.0.0-20190718012654-fb15b899a751",
)
go_repository(
name = "com_github_alecthomas_units",
build_file_proto_mode = "disable_global",
importpath = "github.com/alecthomas/units",
sum = "h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=",
version = "v0.0.0-20190717042225-c3de453c63f4",
)
go_repository(
name = "com_github_alexbrainman_sspi",
build_file_proto_mode = "disable_global",
importpath = "github.com/alexbrainman/sspi",
sum = "h1:P5U+E4x5OkVEKQDklVPmzs71WM56RTTRqV4OrDC//Y4=",
version = "v0.0.0-20180613141037-e580b900e9f5",
)
go_repository(
name = "com_github_andreasbriese_bbloom",
build_file_proto_mode = "disable_global",
importpath = "github.com/AndreasBriese/bbloom",
sum = "h1:HD8gA2tkByhMAwYaFAX9w2l7vxvBQ5NMoxDrkhqhtn4=",
version = "v0.0.0-20190306092124-e2d15f34fcf9",
)
go_repository(
name = "com_github_andy_kimball_arenaskl",
build_file_proto_mode = "disable_global",
importpath = "github.com/andy-kimball/arenaskl",
sum = "h1:vCvyXiLsgAs7qgclk56iBTJQ+gdfiVuzfe5T6sVBL+w=",
version = "v0.0.0-20200617143215-f701008588b9",
)
go_repository(
name = "com_github_andybalholm_cascadia",
build_file_proto_mode = "disable_global",
importpath = "github.com/andybalholm/cascadia",
sum = "h1:vuRCkM5Ozh/BfmsaTm26kbjm0mIOM3yS5Ek/F5h18aE=",
version = "v1.2.0",
)
go_repository(
name = "com_github_antihax_optional",
build_file_proto_mode = "disable_global",
importpath = "github.com/antihax/optional",
sum = "h1:uZuxRZCz65cG1o6K/xUqImNcYKtmk9ylqaH0itMSvzA=",
version = "v0.0.0-20180407024304-ca021399b1a6",
)
go_repository(
name = "com_github_aokoli_goutils",
build_file_proto_mode = "disable_global",
importpath = "github.com/aokoli/goutils",
sum = "h1:7fpzNGoJ3VA8qcrm++XEE1QUe0mIwNeLa02Nwq7RDkg=",
version = "v1.0.1",
)
go_repository(
name = "com_github_apache_arrow_go_arrow",
build_file_proto_mode = "disable_global",
importpath = "github.com/apache/arrow/go/arrow",
sum = "h1:kLPoYgtEyqP5M5o1H+oAe5ZjOrL4LLo7jwF9W4hnNq8=",
version = "v0.0.0-20200610220642-670890229854",
)
go_repository(
name = "com_github_apache_thrift",
build_file_proto_mode = "disable_global",
importpath = "github.com/apache/thrift",
sum = "h1:v7Gpsj71uh9fOCX0v9mS7thFJdguCgV11wTv0wMe4pE=",
version = "v0.0.0-20181211084444-2b7365c54f82",
)
go_repository(
name = "com_github_armon_circbuf",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/circbuf",
sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
version = "v0.0.0-20150827004946-bbbad097214e",
)
go_repository(
name = "com_github_armon_consul_api",
build_file_proto_mode = "disable_global",
importpath = "github.com/armon/consul-api",
sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
version = "v0.0.0-20180202201655-eb2c6b5be1b6",
)
go_repository(
name = "com_github_aws_aws_sdk_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/aws/aws-sdk-go",
sum = "h1:2/sOfb9oPHTRZ0lxinoaTPDcYwNa1H/SpKP4nVRBwmg=",
version = "v1.33.8",
)
go_repository(
name = "com_github_axiomhq_hyperloglog",
build_file_proto_mode = "disable_global",
importpath = "github.com/axiomhq/hyperloglog",
sum = "h1:190ugM9MsyFauTkR/UqcHG/mn5nmFe6SvHJqEHIrtrA=",
version = "v0.0.0-20181223111420-4b99d0c2c99e",
)
go_repository(
name = "com_github_aymerick_raymond",
build_file_proto_mode = "disable_global",
importpath = "github.com/aymerick/raymond",
sum = "h1:Ppm0npCCsmuR9oQaBtRuZcmILVE74aXE+AmrJj8L2ns=",
version = "v2.0.3-0.20180322193309-b565731e1464+incompatible",
)
go_repository(
name = "com_github_azure_azure_pipeline_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-pipeline-go",
sum = "h1:KmVRa8oFMaargVesEuuEoiLCQ4zCCwQ8QX/xg++KS20=",
version = "v0.1.8",
)
go_repository(
name = "com_github_azure_azure_sdk_for_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-sdk-for-go",
sum = "h1:yzJKzcKTX0WwDdZC8kAqxiGVZz66uqpajhgphstEUN0=",
version = "v33.4.0+incompatible",
)
go_repository(
name = "com_github_azure_azure_storage_blob_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/azure-storage-blob-go",
sum = "h1:/xcR+zx0sJ4viF6JHLbEObtCw8edFtY6cCEqZqV+vA0=",
version = "v0.0.0-20190104215108-45d0c5e3638e",
)
go_repository(
name = "com_github_azure_go_ansiterm",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-ansiterm",
sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
version = "v0.0.0-20170929234023-d6e3b3328b78",
)
go_repository(
name = "com_github_azure_go_autorest_autorest",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest",
sum = "h1:NuSF3gXetiHyUbVdneJMEVyPUYAe5wh+aN08JYAf1tI=",
version = "v0.10.2",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_adal",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/adal",
sum = "h1:O1X4oexUxnZCaEUGsvMnr8ZGj8HI37tNezwY4npRqA0=",
version = "v0.8.2",
)
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",
sum = "h1:iM6UAvjR97ZIeR93qTcwpKNMpV+/FTWjwEbuPD495Tk=",
version = "v0.4.2",
)
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",
sum = "h1:LXl088ZQlP0SBppGFsRZonW6hSvwgL5gRByMbvUbx8U=",
version = "v0.3.1",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_date",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/date",
sum = "h1:yW+Zlqf26583pE43KhfnhFcdmSWlm5Ew6bxipnr/tbM=",
version = "v0.2.0",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_mocks",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/mocks",
sum = "h1:qJumjCaCudz+OcqE9/XtEPfvtOjOmKaui4EOpFI6zZc=",
version = "v0.3.0",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_to",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/to",
sum = "h1:zebkZaadz7+wIQYgC7GXaz3Wb28yKYfVkkBKwc38VF8=",
version = "v0.3.0",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_validation",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/autorest/validation",
sum = "h1:15vMO4y76dehZSq7pAaOLQxC6dZYsSrj2GQpflyM/L4=",
version = "v0.2.0",
)
go_repository(
name = "com_github_azure_go_autorest_logger",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/logger",
sum = "h1:ruG4BSDXONFRrZZJ2GUXDiUyVpayPmb1GnWeHDdaNKY=",
version = "v0.1.0",
)
go_repository(
name = "com_github_azure_go_autorest_tracing",
build_file_proto_mode = "disable_global",
importpath = "github.com/Azure/go-autorest/tracing",
sum = "h1:TRn4WjSnkcSy5AEG3pnbtFSwNtwzjr4VYyQflFE619k=",
version = "v0.5.0",
)
go_repository(
name = "com_github_bazelbuild_bazel_gazelle",
build_file_proto_mode = "disable_global",
importpath = "github.com/bazelbuild/bazel-gazelle",
sum = "h1:buszGdD9d/Z691sxFDgOdcEUWli0ZT2tBXUxfbLMrb4=",
version = "v0.21.1",
)
go_repository(
name = "com_github_bazelbuild_buildtools",
build_file_proto_mode = "disable_global",
importpath = "github.com/bazelbuild/buildtools",
sum = "h1:OfyUN/Msd8yqJww6deQ9vayJWw+Jrbe6Qp9giv51QQI=",
version = "v0.0.0-20190731111112-f720930ceb60",
)
go_repository(
name = "com_github_bazelbuild_rules_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/bazelbuild/rules_go",
sum = "h1:wzbawlkLtl2ze9w/312NHZ84c7kpUCtlkD8HgFY27sw=",
version = "v0.0.0-20190719190356-6dae44dc5cab",
)
go_repository(
name = "com_github_benesch_cgosymbolizer",
build_file_proto_mode = "disable_global",
importpath = "github.com/benesch/cgosymbolizer",
sum = "h1:Llg88pHOiUbcFOFhr009G8fOBQL6gaVDnxUUeWZuLog=",
version = "v0.0.0-20180702220239-70e1ee2b39d3",
)
go_repository(
name = "com_github_beorn7_perks",
build_file_proto_mode = "disable_global",
importpath = "github.com/beorn7/perks",
sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
version = "v1.0.1",
)
go_repository(
name = "com_github_bgentry_speakeasy",
build_file_proto_mode = "disable_global",
importpath = "github.com/bgentry/speakeasy",
sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
version = "v0.1.0",
)
go_repository(
name = "com_github_biogo_store",
build_file_proto_mode = "disable_global",
importpath = "github.com/biogo/store",
sum = "h1:tYoz1OeRpx3dJZlh9T4dQt4kAndcmpl+VNdzbSgFC/0=",
version = "v0.0.0-20160505134755-913427a1d5e8",
)
go_repository(
name = "com_github_bmatcuk_doublestar",
build_file_proto_mode = "disable_global",
importpath = "github.com/bmatcuk/doublestar",
sum = "h1:oC24CykoSAB8zd7XgruHo33E0cHJf/WhQA/7BeXj+x0=",
version = "v1.2.2",
)
go_repository(
name = "com_github_broady_gogeohash",
build_file_proto_mode = "disable_global",
importpath = "github.com/broady/gogeohash",
sum = "h1:iEdmkrNMLXbM7ecffOAtZJQOQUTE4iMonxrb5opUgE4=",
version = "v0.0.0-20120525094510-7b2c40d64042",
)
go_repository(
name = "com_github_burntsushi_toml",
build_file_proto_mode = "disable_global",
importpath = "github.com/BurntSushi/toml",
sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
version = "v0.3.1",
)
go_repository(
name = "com_github_burntsushi_xgb",
build_file_proto_mode = "disable_global",
importpath = "github.com/BurntSushi/xgb",
sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=",
version = "v0.0.0-20160522181843-27f122750802",
)
go_repository(
name = "com_github_cenkalti_backoff",
build_file_proto_mode = "disable_global",
importpath = "github.com/cenkalti/backoff",
sum = "h1:tKJnvO2kl0zmb/jA5UKAt4VoEVw1qxKWjE/Bpp46npY=",
version = "v2.1.1+incompatible",
)
go_repository(
name = "com_github_cenkalti_backoff_v3",
build_file_proto_mode = "disable_global",
importpath = "github.com/cenkalti/backoff/v3",
sum = "h1:ske+9nBpD9qZsTBoF41nW5L+AIuFBKMeze18XQ3eG1c=",
version = "v3.0.0",
)
go_repository(
name = "com_github_census_instrumentation_opencensus_proto",
build_file_proto_mode = "disable_global",
importpath = "github.com/census-instrumentation/opencensus-proto",
sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
version = "v0.2.1",
)
go_repository(
name = "com_github_certifi_gocertifi",
build_file_proto_mode = "disable_global",
importpath = "github.com/certifi/gocertifi",
sum = "h1:JLaf/iINcLyjwbtTsCJjc6rtlASgHeIJPrB6QmwURnA=",
version = "v0.0.0-20200211180108-c7c1fbc02894",
)
go_repository(
name = "com_github_client9_misspell",
build_file_proto_mode = "disable_global",
importpath = "github.com/client9/misspell",
sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
version = "v0.3.4",
)
go_repository(
name = "com_github_cloudykit_fastprinter",
build_file_proto_mode = "disable_global",
importpath = "github.com/CloudyKit/fastprinter",
sum = "h1:3SgJcK9l5uPdBC/X17wanyJAMxM33+4ZhEIV96MIH8U=",
version = "v0.0.0-20170127035650-74b38d55f37a",
)
go_repository(
name = "com_github_cloudykit_jet",
build_file_proto_mode = "disable_global",
importpath = "github.com/CloudyKit/jet",
sum = "h1:rZgFj+Gtf3NMi/U5FvCvhzaxzW/TaPYgUYx3bAPz9DE=",
version = "v2.1.3-0.20180809161101-62edd43e4f88+incompatible",
)
go_repository(
name = "com_github_cncf_udpa_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/cncf/udpa/go",
sum = "h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=",
version = "v0.0.0-20191209042840-269d4d468f6f",
)
go_repository(
name = "com_github_cockroachdb_apd",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/apd",
sum = "h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=",
version = "v1.1.0",
)
go_repository(
name = "com_github_cockroachdb_apd_v2",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/apd/v2",
sum = "h1:weh8u7Cneje73dDh+2tEVLUvyBc89iwepWCD8b8034E=",
version = "v2.0.2",
)
go_repository(
name = "com_github_cockroachdb_circuitbreaker",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/circuitbreaker",
sum = "h1:u3uQ4oAKM5g2eODBAsDdDSrTs7zRWXtvu+nvSDA9098=",
version = "v2.2.2-0.20190114160014-a614b14ccf63+incompatible",
)
go_repository(
name = "com_github_cockroachdb_cmux",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/cmux",
sum = "h1:dzj1/xcivGjNPwwifh/dWTczkwcuqsXXFHY1X/TZMtw=",
version = "v0.0.0-20170110192607-30d10be49292",
)
go_repository(
name = "com_github_cockroachdb_cockroach_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/cockroach-go",
sum = "h1:eqJbq0A8ev6101p/zV72eOM+Z3WZkgb66S7PVJQR9wI=",
version = "v0.0.0-20200504194139-73ffeee90b62",
)
go_repository(
name = "com_github_cockroachdb_crlfmt",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/crlfmt",
sum = "h1:O4yb+RtkmDaXFlHSBpZodXaghfTd3Prdea0nk0eZCT4=",
version = "v0.0.0-20200116191136-a78e1c207bc0",
)
go_repository(
name = "com_github_cockroachdb_datadriven",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/datadriven",
sum = "h1:p4AOBShzCogHTl1n5Ff16j5a24tvk1lc7fzRqduSpKM=",
version = "v1.0.1-0.20201022032720-3e27adf87325",
)
go_repository(
name = "com_github_cockroachdb_errors",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/errors",
sum = "h1:ptyO1BLW+sBxwBTSKJfS6kGzYCVKhI7MyBhoXAnPIKM=",
version = "v1.7.5",
)
go_repository(
name = "com_github_cockroachdb_go_test_teamcity",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/go-test-teamcity",
sum = "h1:YqzBA7tf8Gv8Oz0BbBsPenqkyjiohS7EUIwi7p1QJCU=",
version = "v0.0.0-20191211140407-cff980ad0a55",
)
go_repository(
name = "com_github_cockroachdb_gostdlib",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/gostdlib",
sum = "h1:TzSEPYgkKDNei3gbLc0rrHu4iHyBp7/+NxPOFmcXGaw=",
version = "v1.13.0",
)
go_repository(
name = "com_github_cockroachdb_logtags",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/logtags",
sum = "h1:o/kfcElHqOiXqcou5a3rIlMc7oJbMQkeLk0VQJ7zgqY=",
version = "v0.0.0-20190617123548-eb05cc24525f",
)
go_repository(
name = "com_github_cockroachdb_pebble",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/pebble",
sum = "h1:IWH+NluanHz5Emxz8yjJPmoS8fidJM7l0VkY0a10nFs=",
version = "v0.0.0-20201102015632-51fc020cf9c0",
)
go_repository(
name = "com_github_cockroachdb_redact",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/redact",
sum = "h1:8QG/764wK+vmEYoOlfobpe12EQcS81ukx/a4hdVMxNw=",
version = "v1.0.8",
)
go_repository(
name = "com_github_cockroachdb_returncheck",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/returncheck",
sum = "h1:KFOt5I9nEKZgCnOSmy8r4Oykh8BYQO8bFOTgHDS8YZA=",
version = "v0.0.0-20200612231554-92cdbca611dd",
)
go_repository(
name = "com_github_cockroachdb_sentry_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/sentry-go",
sum = "h1:IKgmqgMQlVJIZj19CdocBeSfSaiCbEBZGKODaixqtHM=",
version = "v0.6.1-cockroachdb.2",
)
go_repository(
name = "com_github_cockroachdb_stress",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/stress",
sum = "h1:7bnDlMxIJCg3o3vIILG2COsbNZpiYHgI4UkCYmeAWnQ=",
version = "v0.0.0-20170808184505-29b5d31b4c3a",
)
go_repository(
name = "com_github_cockroachdb_ttycolor",
build_file_proto_mode = "disable_global",
importpath = "github.com/cockroachdb/ttycolor",
sum = "h1:TNsiMS1Ij2aleP/05UNSPzsOu9eJm9mfUGLm7Ylt7Dg=",
version = "v0.0.0-20180709150743-a1d5aaeb377d",
)
go_repository(
name = "com_github_codahale_hdrhistogram",
build_file_proto_mode = "disable_global",
importpath = "github.com/codahale/hdrhistogram",
sum = "h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w=",
version = "v0.0.0-20161010025455-3a0bb77429bd",
)
go_repository(
name = "com_github_codefor_geohash",
build_file_proto_mode = "disable_global",
importpath = "github.com/Codefor/geohash",
sum = "h1:iG9B49Q218F/XxXNRM7k/vWf7MKmLIS8AcJV9cGN4nA=",
version = "v0.0.0-20140723084247-1b41c28e3a9d",
)
go_repository(
name = "com_github_codegangsta_inject",
build_file_proto_mode = "disable_global",
importpath = "github.com/codegangsta/inject",
sum = "h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q=",
version = "v0.0.0-20150114235600-33e0aa1cb7c0",
)
go_repository(
name = "com_github_containerd_continuity",
build_file_proto_mode = "disable_global",
importpath = "github.com/containerd/continuity",
sum = "h1:NmTXa/uVnDyp0TY5MKi197+3HWcnYWfnHGyaFthlnGw=",
version = "v0.0.0-20190827140505-75bee3e2ccb6",
)
go_repository(
name = "com_github_coreos_etcd",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/etcd",
sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=",
version = "v3.3.10+incompatible",
)
go_repository(
name = "com_github_coreos_go_etcd",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/go-etcd",
sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=",
version = "v2.0.0+incompatible",
)
go_repository(
name = "com_github_coreos_go_oidc",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/go-oidc",
sum = "h1:mh48q/BqXqgjVHpy2ZY7WnWAbenxRjsz9N1i1YxjHAk=",
version = "v2.2.1+incompatible",
)
go_repository(
name = "com_github_coreos_go_semver",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/go-semver",
sum = "h1:3Jm3tLmsgAYcjC+4Up7hJrFBPr+n7rAqYeSw/SZazuY=",
version = "v0.2.0",
)
go_repository(
name = "com_github_coreos_go_systemd",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/go-systemd",
sum = "h1:JOrtw2xFKzlg+cbHpyrpLDmnN1HqhBfnX7WDiW7eG2c=",
version = "v0.0.0-20190719114852-fd7a80b32e1f",
)
go_repository(
name = "com_github_coreos_pkg",
build_file_proto_mode = "disable_global",
importpath = "github.com/coreos/pkg",
sum = "h1:CAKfRE2YtTUIjjh1bkBtyYFaUT/WmOqsJjgtihT0vMI=",
version = "v0.0.0-20160727233714-3ac0863d7acf",
)
go_repository(
name = "com_github_cpuguy83_go_md2man",
build_file_proto_mode = "disable_global",
importpath = "github.com/cpuguy83/go-md2man",
sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
version = "v1.0.10",
)
go_repository(
name = "com_github_creack_pty",
build_file_proto_mode = "disable_global",
importpath = "github.com/creack/pty",
sum = "h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=",
version = "v1.1.9",
)
go_repository(
name = "com_github_data_dog_go_sqlmock",
build_file_proto_mode = "disable_global",
importpath = "github.com/DATA-DOG/go-sqlmock",
sum = "h1:2L2f5t3kKnCLxnClDD/PrDfExFFa1wjESgxHG/B1ibo=",
version = "v1.3.2",
)
go_repository(
name = "com_github_datadog_zstd",
build_file_proto_mode = "disable_global",
importpath = "github.com/DataDog/zstd",
sum = "h1:+IawcoXhCBylN7ccwdwf8LOH2jKq7NavGpEPanrlTzE=",
version = "v1.4.4",
)
go_repository(
name = "com_github_dave_dst",
build_file_proto_mode = "disable_global",
importpath = "github.com/dave/dst",
sum = "h1:5wtsjxee7nUDlKEz4i6ewJVn1193vfv2UpEXKqzmaUI=",
version = "v0.24.0",
)
go_repository(
name = "com_github_dave_gopackages",
build_file_proto_mode = "disable_global",
importpath = "github.com/dave/gopackages",
sum = "h1:l99YKCdrK4Lvb/zTupt0GMPfNbncAGf8Cv/t1sYLOg0=",
version = "v0.0.0-20170318123100-46e7023ec56e",
)
go_repository(
name = "com_github_dave_jennifer",
build_file_proto_mode = "disable_global",
importpath = "github.com/dave/jennifer",
sum = "h1:S15ZkFMRoJ36mGAQgWL1tnr0NQJh9rZ8qatseX/VbBc=",
version = "v1.2.0",
)
go_repository(
name = "com_github_dave_kerr",
build_file_proto_mode = "disable_global",
importpath = "github.com/dave/kerr",
sum = "h1:xURkGi4RydhyaYR6PzcyHTueQudxY4LgxN1oYEPJHa0=",
version = "v0.0.0-20170318121727-bc25dd6abe8e",
)
go_repository(
name = "com_github_dave_rebecca",
build_file_proto_mode = "disable_global",
importpath = "github.com/dave/rebecca",
sum = "h1:jxVfdOxRirbXL28vXMvUvJ1in3djwkVKXCq339qhBL0=",
version = "v0.9.1",
)
go_repository(
name = "com_github_davecgh_go_spew",
build_file_proto_mode = "disable_global",
importpath = "github.com/davecgh/go-spew",
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
version = "v1.1.1",
)
go_repository(
name = "com_github_dgraph_io_badger",
build_file_proto_mode = "disable_global",
importpath = "github.com/dgraph-io/badger",
sum = "h1:DshxFxZWXUcO0xX476VJC07Xsr6ZCBVRHKZ93Oh7Evo=",
version = "v1.6.0",
)
go_repository(
name = "com_github_dgrijalva_jwt_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/dgrijalva/jwt-go",
sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
version = "v3.2.0+incompatible",
)
go_repository(
name = "com_github_dgryski_go_farm",
build_file_proto_mode = "disable_global",
importpath = "github.com/dgryski/go-farm",
sum = "h1:tdlZCpZ/P9DhczCTSixgIKmwPv6+wP5DGjqLYw5SUiA=",
version = "v0.0.0-20190423205320-6a90982ecee2",
)
go_repository(
name = "com_github_dgryski_go_metro",
build_file_proto_mode = "disable_global",
importpath = "github.com/dgryski/go-metro",
sum = "h1:8WFBn63wegobsYAX0YjD+8suexZDga5CctH4CCTx2+8=",
version = "v0.0.0-20180109044635-280f6062b5bc",
)
go_repository(
name = "com_github_dimchansky_utfbom",
build_file_proto_mode = "disable_global",
importpath = "github.com/dimchansky/utfbom",
sum = "h1:FcM3g+nofKgUteL8dm/UpdRXNC9KmADgTpLKsu0TRo4=",
version = "v1.1.0",
)
go_repository(
name = "com_github_docker_distribution",
build_file_proto_mode = "disable_global",
importpath = "github.com/docker/distribution",
sum = "h1:neUDAlf3wX6Ml4HdqTrbcOHXtfRN0TFIwt6YFL7N9RU=",
version = "v2.7.0+incompatible",
)
go_repository(
name = "com_github_docker_docker",
build_file_proto_mode = "disable_global",
importpath = "github.com/docker/docker",
sum = "h1:V6pqHzGtZNa2JZXY97Nq+E1IIVwlA90Ql+wDCHPu6Ts=",
version = "v17.12.0-ce-rc1.0.20190115172544-0dc531243dd3+incompatible",
)
go_repository(
name = "com_github_docker_go_connections",
build_file_proto_mode = "disable_global",
importpath = "github.com/docker/go-connections",
sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=",
version = "v0.4.0",
)
go_repository(
name = "com_github_docker_go_units",
build_file_proto_mode = "disable_global",
importpath = "github.com/docker/go-units",
sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
version = "v0.4.0",
)
go_repository(
name = "com_github_dustin_go_humanize",
build_file_proto_mode = "disable_global",
importpath = "github.com/dustin/go-humanize",
sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
version = "v1.0.0",
)
go_repository(
name = "com_github_eapache_go_resiliency",
build_file_proto_mode = "disable_global",
importpath = "github.com/eapache/go-resiliency",
sum = "h1:v7g92e/KSN71Rq7vSThKaWIq68fL4YHvWyiUKorFR1Q=",
version = "v1.2.0",
)
go_repository(
name = "com_github_eapache_go_xerial_snappy",
build_file_proto_mode = "disable_global",
importpath = "github.com/eapache/go-xerial-snappy",
sum = "h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw=",
version = "v0.0.0-20180814174437-776d5712da21",
)
go_repository(
name = "com_github_eapache_queue",
build_file_proto_mode = "disable_global",
importpath = "github.com/eapache/queue",
sum = "h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=",
version = "v1.1.0",
)
go_repository(
name = "com_github_edsrzf_mmap_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/edsrzf/mmap-go",
sum = "h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw=",
version = "v1.0.0",
)
go_repository(
name = "com_github_eknkc_amber",
build_file_proto_mode = "disable_global",
importpath = "github.com/eknkc/amber",
sum = "h1:clC1lXBpe2kTj2VHdaIu9ajZQe4kcEY9j0NsnDDBZ3o=",
version = "v0.0.0-20171010120322-cdade1c07385",
)
go_repository(
name = "com_github_elastic_gosigar",
build_file_proto_mode = "disable_global",
importpath = "github.com/elastic/gosigar",
sum = "h1:bPIzW1Qkut7n9uwvPAXbnLDVEd45TV5ZwxYZAVX/zEQ=",
version = "v0.10.0",
)
go_repository(
name = "com_github_elazarl_go_bindata_assetfs",
build_file_proto_mode = "disable_global",
importpath = "github.com/elazarl/go-bindata-assetfs",
sum = "h1:G/bYguwHIzWq9ZoyUQqrjTmJbbYn3j3CKKpKinvZLFk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_envoyproxy_go_control_plane",
build_file_proto_mode = "disable_global",
importpath = "github.com/envoyproxy/go-control-plane",
sum = "h1:rEvIZUSZ3fx39WIi3JkQqQBitGwpELBIYWeBVh6wn+E=",
version = "v0.9.4",
)
go_repository(
name = "com_github_envoyproxy_protoc_gen_validate",
build_file_proto_mode = "disable_global",
importpath = "github.com/envoyproxy/protoc-gen-validate",
sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
version = "v0.1.0",
)
go_repository(
name = "com_github_etcd_io_bbolt",
build_file_proto_mode = "disable_global",
importpath = "github.com/etcd-io/bbolt",
sum = "h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM=",
version = "v1.3.3",
)
go_repository(
name = "com_github_facebookgo_clock",
build_file_proto_mode = "disable_global",
importpath = "github.com/facebookgo/clock",
sum = "h1:yDWHCSQ40h88yih2JAcL6Ls/kVkSE8GFACTGVnMPruw=",
version = "v0.0.0-20150410010913-600d898af40a",
)
go_repository(
name = "com_github_fanixk_geohash",
build_file_proto_mode = "disable_global",
importpath = "github.com/fanixk/geohash",
sum = "h1:Fyfh/dsHFrC6nkX7H7+nFdTd1wROlX/FxEIWVpKYf1U=",
version = "v0.0.0-20150324002647-c1f9b5fa157a",
)
go_repository(
name = "com_github_fasthttp_contrib_websocket",
build_file_proto_mode = "disable_global",
importpath = "github.com/fasthttp-contrib/websocket",
sum = "h1:DddqAaWDpywytcG8w/qoQ5sAN8X12d3Z3koB0C3Rxsc=",
version = "v0.0.0-20160511215533-1f3b11f56072",
)
go_repository(
name = "com_github_fatih_color",
build_file_proto_mode = "disable_global",
importpath = "github.com/fatih/color",
sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
version = "v1.7.0",
)
go_repository(
name = "com_github_fatih_structs",
build_file_proto_mode = "disable_global",
importpath = "github.com/fatih/structs",
sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=",
version = "v1.1.0",
)
go_repository(
name = "com_github_flosch_pongo2",
build_file_proto_mode = "disable_global",
importpath = "github.com/flosch/pongo2",
sum = "h1:GY1+t5Dr9OKADM64SYnQjw/w99HMYvQ0A8/JoUkxVmc=",
version = "v0.0.0-20190707114632-bbf5a6c351f4",
)
go_repository(
name = "com_github_frankban_quicktest",
build_file_proto_mode = "disable_global",
importpath = "github.com/frankban/quicktest",
sum = "h1:kV0lw0TH1j1hozahVmcpFCsbV5hcS4ZalH+U7UoeTow=",
version = "v1.7.3",
)
go_repository(
name = "com_github_fsnotify_fsnotify",
build_file_proto_mode = "disable_global",
importpath = "github.com/fsnotify/fsnotify",
sum = "h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=",
version = "v1.4.9",
)
go_repository(
name = "com_github_gavv_httpexpect",
build_file_proto_mode = "disable_global",
importpath = "github.com/gavv/httpexpect",
sum = "h1:1X9kcRshkSKEjNJJxX9Y9mQ5BRfbxU5kORdjhlA1yX8=",
version = "v2.0.0+incompatible",
)
go_repository(
name = "com_github_getsentry_raven_go",
build_file_proto_mode = "disable_global",
importpath = "github.com/getsentry/raven-go",
sum = "h1:no+xWJRb5ZI7eE8TWgIq1jLulQiIoLG0IfYxv5JYMGs=",
version = "v0.2.0",
)
go_repository(
name = "com_github_ghemawat_stream",
build_file_proto_mode = "disable_global",
importpath = "github.com/ghemawat/stream",
sum = "h1:r5GgOLGbza2wVHRzK7aAj6lWZjfbAwiu/RDCVOKjRyM=",
version = "v0.0.0-20171120220530-696b145b53b9",
)
go_repository(
name = "com_github_ghodss_yaml",
build_file_proto_mode = "disable_global",
importpath = "github.com/ghodss/yaml",
sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_gin_contrib_sse",
build_file_proto_mode = "disable_global",
importpath = "github.com/gin-contrib/sse",
sum = "h1:t8FVkw33L+wilf2QiWkw0UV77qRpcH/JHPKGpKa2E8g=",
version = "v0.0.0-20190301062529-5545eab6dad3",
)
go_repository(
name = "com_github_gin_gonic_gin",
build_file_proto_mode = "disable_global",
importpath = "github.com/gin-gonic/gin",
sum = "h1:3tMoCCfM7ppqsR0ptz/wi1impNpT7/9wQtMZ8lr1mCQ=",
version = "v1.4.0",
)
go_repository(
name = "com_github_go_check_check",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-check/check",
sum = "h1:0gkP6mzaMqkmpcJYCFOLkIBwI7xFExG03bbkOkCvUPI=",
version = "v0.0.0-20180628173108-788fd7840127",
)
go_repository(
name = "com_github_go_errors_errors",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-errors/errors",
sum = "h1:LUHzmkK3GUKUrL/1gfBUxAHzcev3apQlezX/+O7ma6w=",
version = "v1.0.1",
)
go_repository(
name = "com_github_go_gl_glfw_v3_3_glfw",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-gl/glfw/v3.3/glfw",
sum = "h1:WtGNWLvXpe6ZudgnXrq0barxBImvnnJoMEhXAzcbM0I=",
version = "v0.0.0-20200222043503-6f7a984d4dc4",
)
go_repository(
name = "com_github_go_kit_kit",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-kit/kit",
sum = "h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=",
version = "v0.9.0",
)
go_repository(
name = "com_github_go_logfmt_logfmt",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-logfmt/logfmt",
sum = "h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=",
version = "v0.4.0",
)
go_repository(
name = "com_github_go_martini_martini",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-martini/martini",
sum = "h1:xveKWz2iaueeTaUgdetzel+U7exyigDYBryyVfV/rZk=",
version = "v0.0.0-20170121215854-22fa46961aab",
)
go_repository(
name = "com_github_go_ole_go_ole",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-ole/go-ole",
sum = "h1:QNWhweRd9D5Py2rRVboZ2L4SEoW/dyraWJCc8bgS8kE=",
version = "v1.2.2",
)
go_repository(
name = "com_github_go_sql_driver_mysql",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-sql-driver/mysql",
sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
version = "v1.5.0",
)
go_repository(
name = "com_github_go_stack_stack",
build_file_proto_mode = "disable_global",
importpath = "github.com/go-stack/stack",
sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
version = "v1.8.0",
)
go_repository(
name = "com_github_gobwas_httphead",
build_file_proto_mode = "disable_global",
importpath = "github.com/gobwas/httphead",
sum = "h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0=",
version = "v0.0.0-20180130184737-2c6c146eadee",
)
go_repository(
name = "com_github_gobwas_pool",
build_file_proto_mode = "disable_global",
importpath = "github.com/gobwas/pool",
sum = "h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8=",
version = "v0.2.0",
)
go_repository(
name = "com_github_gobwas_ws",
build_file_proto_mode = "disable_global",
importpath = "github.com/gobwas/ws",
sum = "h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo=",
version = "v1.0.2",
)
go_repository(
name = "com_github_gofrs_uuid",
build_file_proto_mode = "disable_global",
importpath = "github.com/gofrs/uuid",
sum = "h1:8K4tyRfvU1CYPgJsveYFQMhpFd/wXNM7iK6rR7UHz84=",
version = "v3.3.0+incompatible",
)
go_repository(
name = "com_github_gogo_googleapis",
build_file_proto_mode = "disable_global",
importpath = "github.com/gogo/googleapis",
sum = "h1:dR8+Q0uO5S2ZBcs2IH6VBKYwSxPo2vYCYq0ot0mu7xA=",
version = "v0.0.0-20180223154316-0cd9801be74a",
)
go_repository(
name = "com_github_gogo_protobuf",
build_file_proto_mode = "disable_global",
importpath = "github.com/gogo/protobuf",
replace = "github.com/cockroachdb/gogoproto",
sum = "h1:UoEUWRRZjeOfGenewnmzRCA0kWWRtZogNdidaXjZ/+c=",
version = "v1.2.1-0.20190102194534-ca10b809dba0",
)
go_repository(
name = "com_github_gogo_status",
build_file_proto_mode = "disable_global",
importpath = "github.com/gogo/status",
sum = "h1:+eIkrewn5q6b30y+g/BJINVVdi2xH7je5MPJ3ZPK3JA=",
version = "v1.1.0",
)
go_repository(
name = "com_github_golang_commonmark_html",
build_file_proto_mode = "disable_global",
importpath = "github.com/golang-commonmark/html",
sum = "h1:FeNEDxIy7XouGTJKiJ9Ze5vUbcAIW/FRhQbtKBNmEz8=",
version = "v0.0.0-20180910111043-7d7c804e1d46",
)
go_repository(
name = "com_github_golang_commonmark_linkify",
build_file_proto_mode = "disable_global",
importpath = "github.com/golang-commonmark/linkify",
sum = "h1:TkuRzcq232K5ytXtQ+BPicsjYWZgt/lS6gJ5HqcUifQ=",
version = "v0.0.0-20180910111149-f05efb453a0e",
)
go_repository(
name = "com_github_golang_commonmark_markdown",
build_file_proto_mode = "disable_global",
importpath = "github.com/golang-commonmark/markdown",
sum = "h1:YaQaotRjMcVth1VzHUEQlD2oeyQAglA7CXdxp9QLvKM=",
version = "v0.0.0-20180910011815-a8f139058164",
)
go_repository(
name = "com_github_golang_commonmark_mdurl",
build_file_proto_mode = "disable_global",
importpath = "github.com/golang-commonmark/mdurl",
sum = "h1:XkgfhPs5AotQfcu3EfDEjyAUx91KdtjrxHXYGnZJhoU=",
version = "v0.0.0-20180910110917-8d018c6567d6",
)
go_repository(