forked from crypto-org-chain/cronos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gomod2nix.toml
4380 lines (3839 loc) · 157 KB
/
gomod2nix.toml
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
["cloud.google.com/go"]
sumVersion = "v0.99.0"
["cloud.google.com/go".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "5563382a8560ea851e6d54962ea71165b2807b24"
sha256 = "1h5w5rnfaifg6frgyh7pz6604zhdacy0jmha0i0vvmb8n2vadx2n"
["cloud.google.com/go/bigquery"]
sumVersion = "v1.8.0"
relPath = "bigquery"
["cloud.google.com/go/bigquery".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "0aa265f094062dbc111a6906d279fbb88a6cc761"
sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j"
["cloud.google.com/go/bigtable"]
sumVersion = "v1.2.0"
relPath = "bigtable"
["cloud.google.com/go/bigtable".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "4e7fb24f2973a4a8d59ff13c95859759b6506f95"
sha256 = "1nzy6y4cwb8vrbfbmwijk73i242p6ip58a1s140p57wh8qq000v1"
["cloud.google.com/go/datastore"]
sumVersion = "v1.1.0"
relPath = "datastore"
["cloud.google.com/go/datastore".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "d96ccb2ba7586bb79a416471882d347754a78ce5"
sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd"
["cloud.google.com/go/firestore"]
sumVersion = "v1.6.1"
relPath = "firestore"
["cloud.google.com/go/firestore".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "fd062bed4252b6281f65721a22e56d601a879b20"
sha256 = "0bgkcivkq1gsz1017mlxlxy9dv39jxmb9pf5djrp3wq0pf7z65l7"
["cloud.google.com/go/pubsub"]
sumVersion = "v1.3.1"
relPath = "pubsub"
["cloud.google.com/go/pubsub".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "f4685751540ab300d8e99946847a75f7d0837e45"
sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf"
["cloud.google.com/go/storage"]
sumVersion = "v1.10.0"
relPath = "storage"
["cloud.google.com/go/storage".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "3f2988d48e253a8e290b8c0e821284eead1131a0"
sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf"
["collectd.org"]
sumVersion = "v0.3.0"
["collectd.org".fetch]
type = "git"
url = "https://github.com/collectd/go-collectd"
rev = "2ce144541b8903101fb8f1483cc0497a68798122"
sha256 = "0rr9rnc777jk27a7yxhdb7vgkj493158a8k6q44x51s30dkp78x3"
["dmitri.shuralyov.com/gpu/mtl"]
sumVersion = "v0.0.0-20190408044501-666a987793e9"
["dmitri.shuralyov.com/gpu/mtl".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/gpu/mtl"
rev = "666a987793e9432fbb48592aa2f3bf3463685dfa"
sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z"
["filippo.io/edwards25519"]
sumVersion = "v1.0.0-beta.2"
["filippo.io/edwards25519".fetch]
type = "git"
url = "https://github.com/FiloSottile/edwards25519"
rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5"
sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5"
["github.com/99designs/keyring"]
sumVersion = "v1.1.6-fixes"
vendorPath = "github.com/crypto-org-chain/keyring"
["github.com/99designs/keyring".fetch]
type = "git"
url = "https://github.com/crypto-org-chain/keyring"
rev = "4fc1291852fc269b98e8466bfa8f0ce9b8e665ad"
sha256 = "1c55z0hhvk8w1mfwc587yd88hiyi6bnpnbd3p9dckj9sx8pw4rvi"
["github.com/Azure/azure-pipeline-go"]
sumVersion = "v0.2.2"
["github.com/Azure/azure-pipeline-go".fetch]
type = "git"
url = "https://github.com/Azure/azure-pipeline-go"
rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4"
sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6"
["github.com/Azure/azure-storage-blob-go"]
sumVersion = "v0.7.0"
["github.com/Azure/azure-storage-blob-go".fetch]
type = "git"
url = "https://github.com/Azure/azure-storage-blob-go"
rev = "3efca72bd11c050222deab57e25ea90df03b9692"
sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv"
["github.com/Azure/go-ansiterm"]
sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1"
["github.com/Azure/go-ansiterm".fetch]
type = "git"
url = "https://github.com/Azure/go-ansiterm"
rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9"
sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c"
["github.com/Azure/go-autorest/autorest"]
sumVersion = "v0.9.0"
relPath = "autorest"
["github.com/Azure/go-autorest/autorest".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9"
sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq"
["github.com/Azure/go-autorest/autorest/adal"]
sumVersion = "v0.8.0"
relPath = "autorest/adal"
["github.com/Azure/go-autorest/autorest/adal".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "740293c019d8314ce3378d456b4327fa646297e6"
sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4"
["github.com/Azure/go-autorest/autorest/date"]
sumVersion = "v0.2.0"
relPath = "autorest/date"
["github.com/Azure/go-autorest/autorest/date".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "5bd9621f41a06b08038be5c0522971a35316d5ef"
sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y"
["github.com/Azure/go-autorest/autorest/mocks"]
sumVersion = "v0.3.0"
relPath = "autorest/mocks"
["github.com/Azure/go-autorest/autorest/mocks".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "5bd9621f41a06b08038be5c0522971a35316d5ef"
sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y"
["github.com/Azure/go-autorest/logger"]
sumVersion = "v0.1.0"
relPath = "logger"
["github.com/Azure/go-autorest/logger".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24"
sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz"
["github.com/Azure/go-autorest/tracing"]
sumVersion = "v0.5.0"
relPath = "tracing"
["github.com/Azure/go-autorest/tracing".fetch]
type = "git"
url = "https://github.com/Azure/go-autorest"
rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1"
sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp"
["github.com/BurntSushi/toml"]
sumVersion = "v0.3.1"
["github.com/BurntSushi/toml".fetch]
type = "git"
url = "https://github.com/BurntSushi/toml"
rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005"
sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"
["github.com/BurntSushi/xgb"]
sumVersion = "v0.0.0-20160522181843-27f122750802"
["github.com/BurntSushi/xgb".fetch]
type = "git"
url = "https://github.com/BurntSushi/xgb"
rev = "27f122750802c950b2c869a5b63dafcf590ced95"
sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj"
["github.com/ChainSafe/go-schnorrkel"]
sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d"
["github.com/ChainSafe/go-schnorrkel".fetch]
type = "git"
url = "https://github.com/ChainSafe/go-schnorrkel"
rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594"
sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b"
["github.com/DATA-DOG/go-sqlmock"]
sumVersion = "v1.3.3"
["github.com/DATA-DOG/go-sqlmock".fetch]
type = "git"
url = "https://github.com/DATA-DOG/go-sqlmock"
rev = "3f9954f6f6697845b082ca57995849ddf614f450"
sha256 = "1xrly2vmy1mgj9dbkmivhh8gvq6v9f9xy2yp2dw54i1895zzs928"
["github.com/DataDog/datadog-go"]
sumVersion = "v3.2.0+incompatible"
["github.com/DataDog/datadog-go".fetch]
type = "git"
url = "https://github.com/DataDog/datadog-go"
rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2"
sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x"
["github.com/DataDog/zstd"]
sumVersion = "v1.4.8"
["github.com/DataDog/zstd".fetch]
type = "git"
url = "https://github.com/DataDog/zstd"
rev = "12a1eb7c63c644316b0eded9fc939def05ce4b5a"
sha256 = "0rb0d09zas3698vx6r61nsgppgs9y1f7wkik9p28jjpgqzmfdjqh"
["github.com/Knetic/govaluate"]
sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible"
["github.com/Knetic/govaluate".fetch]
type = "git"
url = "https://github.com/Knetic/govaluate"
rev = "9aa49832a739dcd78a5542ff189fb82c3e423116"
sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5"
["github.com/Microsoft/go-winio"]
sumVersion = "v0.5.0"
["github.com/Microsoft/go-winio".fetch]
type = "git"
url = "https://github.com/Microsoft/go-winio"
rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5"
sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5"
["github.com/Nvveen/Gotty"]
sumVersion = "v0.0.0-20120604004816-cd527374f1e5"
["github.com/Nvveen/Gotty".fetch]
type = "git"
url = "https://github.com/Nvveen/Gotty"
rev = "cd527374f1e5bff4938207604a14f2e38a9cf512"
sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q"
["github.com/OneOfOne/xxhash"]
sumVersion = "v1.2.2"
["github.com/OneOfOne/xxhash".fetch]
type = "git"
url = "https://github.com/OneOfOne/xxhash"
rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a"
sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6"
["github.com/Shopify/sarama"]
sumVersion = "v1.19.0"
["github.com/Shopify/sarama".fetch]
type = "git"
url = "https://github.com/Shopify/sarama"
rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722"
sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z"
["github.com/Shopify/toxiproxy"]
sumVersion = "v2.1.4+incompatible"
["github.com/Shopify/toxiproxy".fetch]
type = "git"
url = "https://github.com/Shopify/toxiproxy"
rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3"
sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig"
["github.com/StackExchange/wmi"]
sumVersion = "v1.2.1"
["github.com/StackExchange/wmi".fetch]
type = "git"
url = "https://github.com/StackExchange/wmi"
rev = "441642c1665945335b93778e496324884ce569e7"
sha256 = "0ijhmr8sl768vkxslvw7fprav6srw4ivp32rzg3ydj8nc1wh86nl"
["github.com/VictoriaMetrics/fastcache"]
sumVersion = "v1.6.0"
["github.com/VictoriaMetrics/fastcache".fetch]
type = "git"
url = "https://github.com/VictoriaMetrics/fastcache"
rev = "5ffb40c1da4c7e2b8483e73629e66f4f1f94bff2"
sha256 = "1ivx700ijnkyjbgw4rq4446d4dnb4sg7sh569rsvnm5cm0fkvyhz"
["github.com/VividCortex/gohistogram"]
sumVersion = "v1.0.0"
["github.com/VividCortex/gohistogram".fetch]
type = "git"
url = "https://github.com/VividCortex/gohistogram"
rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6"
sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf"
["github.com/Workiva/go-datastructures"]
sumVersion = "v1.0.52"
["github.com/Workiva/go-datastructures".fetch]
type = "git"
url = "https://github.com/Workiva/go-datastructures"
rev = "0819bcaf26091e7c33585441f8961854c2400faa"
sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk"
["github.com/Zilliqa/gozilliqa-sdk"]
sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6"
["github.com/Zilliqa/gozilliqa-sdk".fetch]
type = "git"
url = "https://github.com/Zilliqa/gozilliqa-sdk"
rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b"
sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1"
["github.com/adlio/schema"]
sumVersion = "v1.1.13"
["github.com/adlio/schema".fetch]
type = "git"
url = "https://github.com/adlio/schema"
rev = "158666f4977057e9c8000a43995556d43f18fc8e"
sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf"
["github.com/aead/siphash"]
sumVersion = "v1.0.1"
["github.com/aead/siphash".fetch]
type = "git"
url = "https://github.com/aead/siphash"
rev = "83563a290f60225eb120d724600b9690c3fb536f"
sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc"
["github.com/afex/hystrix-go"]
sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5"
["github.com/afex/hystrix-go".fetch]
type = "git"
url = "https://github.com/afex/hystrix-go"
rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a"
sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn"
["github.com/ajstarks/svgo"]
sumVersion = "v0.0.0-20180226025133-644b8db467af"
["github.com/ajstarks/svgo".fetch]
type = "git"
url = "https://github.com/ajstarks/svgo"
rev = "644b8db467afccf19a0692a3e31a1868e4287ab8"
sha256 = "1m56v06gpdzfmw0hgjri487gdlc5w40s3pz1l7lp8hbw2l6lbjhk"
["github.com/alecthomas/template"]
sumVersion = "v0.0.0-20190718012654-fb15b899a751"
["github.com/alecthomas/template".fetch]
type = "git"
url = "https://github.com/alecthomas/template"
rev = "fb15b899a75114aa79cc930e33c46b577cc664b1"
sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26"
["github.com/alecthomas/units"]
sumVersion = "v0.0.0-20190924025748-f65c72e2690d"
["github.com/alecthomas/units".fetch]
type = "git"
url = "https://github.com/alecthomas/units"
rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b"
sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc"
["github.com/allegro/bigcache"]
sumVersion = "v1.2.1"
["github.com/allegro/bigcache".fetch]
type = "git"
url = "https://github.com/allegro/bigcache"
rev = "0605c28b510103c549fb020d5fb50e1ad4093de8"
sha256 = "1h4lir4xfdyfbn6g8yv8g1if63wdx5k0az70rirnvriv303jlg7w"
["github.com/andreyvit/diff"]
sumVersion = "v0.0.0-20170406064948-c7f18ee00883"
["github.com/andreyvit/diff".fetch]
type = "git"
url = "https://github.com/andreyvit/diff"
rev = "c7f18ee00883bfd3b00e0a2bf7607827e0148ad4"
sha256 = "1s4qjkxig5yqahpzfl4xqh4kzi9mymdpkzq6kj3f4dr5dl3hlynr"
["github.com/antihax/optional"]
sumVersion = "v1.0.0"
["github.com/antihax/optional".fetch]
type = "git"
url = "https://github.com/antihax/optional"
rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21"
sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0"
["github.com/apache/arrow/go/arrow"]
sumVersion = "v0.0.0-20191024131854-af6fa24be0db"
relPath = "go/arrow"
["github.com/apache/arrow/go/arrow".fetch]
type = "git"
url = "https://github.com/apache/arrow"
rev = "af6fa24be0dbbc021e0844c63d1c0b89fb23a95c"
sha256 = "1gy68sg7jz3m07hmq8s1n8qs2yvgyb33qxw0zhivj9zyflxha0rd"
["github.com/apache/thrift"]
sumVersion = "v0.13.0"
["github.com/apache/thrift".fetch]
type = "git"
url = "https://github.com/apache/thrift"
rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f"
sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y"
["github.com/aristanetworks/goarista"]
sumVersion = "v0.0.0-20170210015632-ea17b1a17847"
["github.com/aristanetworks/goarista".fetch]
type = "git"
url = "https://github.com/aristanetworks/goarista"
rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0"
sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp"
["github.com/armon/circbuf"]
sumVersion = "v0.0.0-20150827004946-bbbad097214e"
["github.com/armon/circbuf".fetch]
type = "git"
url = "https://github.com/armon/circbuf"
rev = "bbbad097214e2918d8543d5201d12bfd7bca254d"
sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3"
["github.com/armon/consul-api"]
sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6"
["github.com/armon/consul-api".fetch]
type = "git"
url = "https://github.com/armon/consul-api"
rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd"
sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9"
["github.com/armon/go-metrics"]
sumVersion = "v0.3.10"
["github.com/armon/go-metrics".fetch]
type = "git"
url = "https://github.com/armon/go-metrics"
rev = "d1e5690ba72f7651735eb0a618d5523a6bdccf58"
sha256 = "07ycr1qswxx2r30r1dr27ggnjwxllcab17193sy2hfyps2ka31s2"
["github.com/armon/go-radix"]
sumVersion = "v1.0.0"
["github.com/armon/go-radix".fetch]
type = "git"
url = "https://github.com/armon/go-radix"
rev = "1a2de0c21c94309923825da3df33a4381872c795"
sha256 = "1m1k0jz9gjfrk4m7hjm7p03qmviamfgxwm2ghakqxw3hdds8v503"
["github.com/aryann/difflib"]
sumVersion = "v0.0.0-20170710044230-e206f873d14a"
["github.com/aryann/difflib".fetch]
type = "git"
url = "https://github.com/aryann/difflib"
rev = "e206f873d14a916d3d26c40ab667bca123f365a3"
sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm"
["github.com/aws/aws-lambda-go"]
sumVersion = "v1.13.3"
["github.com/aws/aws-lambda-go".fetch]
type = "git"
url = "https://github.com/aws/aws-lambda-go"
rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd"
sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9"
["github.com/aws/aws-sdk-go"]
sumVersion = "v1.27.0"
["github.com/aws/aws-sdk-go".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go"
rev = "a1e6946e8014a793d989e64ef5566315010ce898"
sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx"
["github.com/aws/aws-sdk-go-v2"]
sumVersion = "v1.2.0"
["github.com/aws/aws-sdk-go-v2".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/config"]
sumVersion = "v1.1.1"
relPath = "config"
["github.com/aws/aws-sdk-go-v2/config".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/credentials"]
sumVersion = "v1.1.1"
relPath = "credentials"
["github.com/aws/aws-sdk-go-v2/credentials".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/feature/ec2/imds"]
sumVersion = "v1.0.2"
relPath = "feature/ec2/imds"
["github.com/aws/aws-sdk-go-v2/feature/ec2/imds".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url"]
sumVersion = "v1.0.2"
relPath = "service/internal/presigned-url"
["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/service/route53"]
sumVersion = "v1.1.1"
relPath = "service/route53"
["github.com/aws/aws-sdk-go-v2/service/route53".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/service/sso"]
sumVersion = "v1.1.1"
relPath = "service/sso"
["github.com/aws/aws-sdk-go-v2/service/sso".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/aws-sdk-go-v2/service/sts"]
sumVersion = "v1.1.1"
relPath = "service/sts"
["github.com/aws/aws-sdk-go-v2/service/sts".fetch]
type = "git"
url = "https://github.com/aws/aws-sdk-go-v2"
rev = "be1c89938486820ef47f075e7db95d4ad7411ccd"
sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2"
["github.com/aws/smithy-go"]
sumVersion = "v1.1.0"
["github.com/aws/smithy-go".fetch]
type = "git"
url = "https://github.com/aws/smithy-go"
rev = "e9104d8f89001998c6ab305ddbb64383e9f17680"
sha256 = "153ky3d91bskmsipj4v4h2011qxpjbjkbwrr8n3x2z21fhixrwda"
["github.com/beorn7/perks"]
sumVersion = "v1.0.1"
["github.com/beorn7/perks".fetch]
type = "git"
url = "https://github.com/beorn7/perks"
rev = "37c8de3658fcb183f997c4e13e8337516ab753e6"
sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7"
["github.com/bgentry/speakeasy"]
sumVersion = "v0.1.0"
["github.com/bgentry/speakeasy".fetch]
type = "git"
url = "https://github.com/bgentry/speakeasy"
rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd"
sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s"
["github.com/bits-and-blooms/bitset"]
sumVersion = "v1.2.0"
["github.com/bits-and-blooms/bitset".fetch]
type = "git"
url = "https://github.com/bits-and-blooms/bitset"
rev = "59de210119f50cedaa42d175dc88b6335fcf63f6"
sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3"
["github.com/bketelsen/crypt"]
sumVersion = "v0.0.4"
["github.com/bketelsen/crypt".fetch]
type = "git"
url = "https://github.com/bketelsen/crypt"
rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7"
sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v"
["github.com/bmizerany/pat"]
sumVersion = "v0.0.0-20170815010413-6226ea591a40"
["github.com/bmizerany/pat".fetch]
type = "git"
url = "https://github.com/bmizerany/pat"
rev = "6226ea591a40176dd3ff9cd8eff81ed6ca721a00"
sha256 = "0qjkm7169y6pybwh0s02fjjk251isa2b367xqfzrwvl6cy4yzfxp"
["github.com/boltdb/bolt"]
sumVersion = "v1.3.1"
["github.com/boltdb/bolt".fetch]
type = "git"
url = "https://github.com/boltdb/bolt"
rev = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"
sha256 = "0z7j06lijfi4y30ggf2znak2zf2srv2m6c68ar712wd2ys44qb3r"
["github.com/btcsuite/btcd"]
sumVersion = "v0.22.0-beta"
["github.com/btcsuite/btcd".fetch]
type = "git"
url = "https://github.com/btcsuite/btcd"
rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc"
sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla"
["github.com/btcsuite/btclog"]
sumVersion = "v0.0.0-20170628155309-84c8d2346e9f"
["github.com/btcsuite/btclog".fetch]
type = "git"
url = "https://github.com/btcsuite/btclog"
rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a"
sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk"
["github.com/btcsuite/btcutil"]
sumVersion = "v1.0.3-0.20201208143702-a53e38424cce"
["github.com/btcsuite/btcutil".fetch]
type = "git"
url = "https://github.com/btcsuite/btcutil"
rev = "a53e38424cce1c9de2062b69364efd35fd428d15"
sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4"
["github.com/btcsuite/go-socks"]
sumVersion = "v0.0.0-20170105172521-4720035b7bfd"
["github.com/btcsuite/go-socks".fetch]
type = "git"
url = "https://github.com/btcsuite/go-socks"
rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f"
sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b"
["github.com/btcsuite/goleveldb"]
sumVersion = "v1.0.0"
["github.com/btcsuite/goleveldb".fetch]
type = "git"
url = "https://github.com/btcsuite/goleveldb"
rev = "3fd0373267b6461dbefe91cef614278064d05465"
sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z"
["github.com/btcsuite/snappy-go"]
sumVersion = "v1.0.0"
["github.com/btcsuite/snappy-go".fetch]
type = "git"
url = "https://github.com/btcsuite/snappy-go"
rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0"
sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk"
["github.com/btcsuite/websocket"]
sumVersion = "v0.0.0-20150119174127-31079b680792"
["github.com/btcsuite/websocket".fetch]
type = "git"
url = "https://github.com/btcsuite/websocket"
rev = "31079b6807923eb23992c421b114992b95131b55"
sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa"
["github.com/btcsuite/winsvc"]
sumVersion = "v1.0.0"
["github.com/btcsuite/winsvc".fetch]
type = "git"
url = "https://github.com/btcsuite/winsvc"
rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722"
sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z"
["github.com/c-bata/go-prompt"]
sumVersion = "v0.2.2"
["github.com/c-bata/go-prompt".fetch]
type = "git"
url = "https://github.com/c-bata/go-prompt"
rev = "c52492ff1b386e5c0ba5271b5eaad165fab09eca"
sha256 = "14k8anchf0rcpxfbb2acrajdqrfspscbkn47m4py1zh5rkk6b9p9"
["github.com/casbin/casbin/v2"]
sumVersion = "v2.1.2"
["github.com/casbin/casbin/v2".fetch]
type = "git"
url = "https://github.com/casbin/casbin"
rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18"
sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899"
["github.com/cenkalti/backoff"]
sumVersion = "v2.2.1+incompatible"
["github.com/cenkalti/backoff".fetch]
type = "git"
url = "https://github.com/cenkalti/backoff"
rev = "5267b6dd4d2666b980a911bf235efa276222cbe2"
sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8"
["github.com/cenkalti/backoff/v4"]
sumVersion = "v4.1.1"
["github.com/cenkalti/backoff/v4".fetch]
type = "git"
url = "https://github.com/cenkalti/backoff"
rev = "a78d3804c2c84f0a3178648138442c9b07665bda"
sha256 = "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z"
["github.com/census-instrumentation/opencensus-proto"]
sumVersion = "v0.3.0"
["github.com/census-instrumentation/opencensus-proto".fetch]
type = "git"
url = "https://github.com/census-instrumentation/opencensus-proto"
rev = "4aa53e15cbf1a47bc9087e6cfdca214c1eea4e89"
sha256 = "1ngp6jb345xahsijjpwwlcy2giymyzsy7kdhkrvgjafqssk6aw6f"
["github.com/cespare/cp"]
sumVersion = "v0.1.0"
["github.com/cespare/cp".fetch]
type = "git"
url = "https://github.com/cespare/cp"
rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c"
sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9"
["github.com/cespare/xxhash"]
sumVersion = "v1.1.0"
["github.com/cespare/xxhash".fetch]
type = "git"
url = "https://github.com/cespare/xxhash"
rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6"
sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x"
["github.com/cespare/xxhash/v2"]
sumVersion = "v2.1.2"
["github.com/cespare/xxhash/v2".fetch]
type = "git"
url = "https://github.com/cespare/xxhash"
rev = "e7a6b52374f7e2abfb8abb27249d53a1997b09a7"
sha256 = "1f3wyr9msnnz94szrkmnfps9wm40s5sp9i4ak0kl92zcrkmpy29a"
["github.com/checkpoint-restore/go-criu/v5"]
sumVersion = "v5.0.0"
["github.com/checkpoint-restore/go-criu/v5".fetch]
type = "git"
url = "https://github.com/checkpoint-restore/go-criu"
rev = "885cc36edb02fc5afeed0759885b473c16d249d8"
sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8"
["github.com/chzyer/logex"]
sumVersion = "v1.1.10"
["github.com/chzyer/logex".fetch]
type = "git"
url = "https://github.com/chzyer/logex"
rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf"
sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4"
["github.com/chzyer/readline"]
sumVersion = "v0.0.0-20180603132655-2972be24d48e"
["github.com/chzyer/readline".fetch]
type = "git"
url = "https://github.com/chzyer/readline"
rev = "2972be24d48e78746da79ba8e24e8b488c9880de"
sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r"
["github.com/chzyer/test"]
sumVersion = "v0.0.0-20180213035817-a1ea475d72b1"
["github.com/chzyer/test".fetch]
type = "git"
url = "https://github.com/chzyer/test"
rev = "a1ea475d72b168a29f44221e0ad031a842642302"
sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k"
["github.com/cilium/ebpf"]
sumVersion = "v0.6.2"
["github.com/cilium/ebpf".fetch]
type = "git"
url = "https://github.com/cilium/ebpf"
rev = "ca492085341e0e917f48ec30704d5054c5d42ca8"
sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8"
["github.com/circonus-labs/circonus-gometrics"]
sumVersion = "v2.3.1+incompatible"
["github.com/circonus-labs/circonus-gometrics".fetch]
type = "git"
url = "https://github.com/circonus-labs/circonus-gometrics"
rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f"
sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs"
["github.com/circonus-labs/circonusllhist"]
sumVersion = "v0.1.3"
["github.com/circonus-labs/circonusllhist".fetch]
type = "git"
url = "https://github.com/circonus-labs/circonusllhist"
rev = "87d4d00b35adeefe4911ece727838749e0fab113"
sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i"
["github.com/clbanning/x2j"]
sumVersion = "v0.0.0-20191024224557-825249438eec"
["github.com/clbanning/x2j".fetch]
type = "git"
url = "https://github.com/clbanning/x2j"
rev = "825249438eec392bc87b980fb635b336e496a888"
sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy"
["github.com/cloudflare/cloudflare-go"]
sumVersion = "v0.14.0"
["github.com/cloudflare/cloudflare-go".fetch]
type = "git"
url = "https://github.com/cloudflare/cloudflare-go"
rev = "1426b776f85bc6c5c9390247d48b6ea0bcffa13f"
sha256 = "0x3jh3ihvwbjwjk2bld9gfijp2sd318cjjxn1z35fnnxwwbwbzhx"
["github.com/cncf/udpa/go"]
sumVersion = "v0.0.0-20210930031921-04548b0d99d4"
relPath = "go"
["github.com/cncf/udpa/go".fetch]
type = "git"
url = "https://github.com/cncf/udpa"
rev = "04548b0d99d4e70b29310ebccc8e01f2deeed43a"
sha256 = "16z9iqs7g6c084fh6y9v3skdbxnpyqw3d1y19v42llyl9hzx361v"
["github.com/cncf/xds/go"]
sumVersion = "v0.0.0-20211130200136-a8f946100490"
relPath = "go"
["github.com/cncf/xds/go".fetch]
type = "git"
url = "https://github.com/cncf/xds"
rev = "a8f946100490e3c4aef5c069e41b58d1a8705836"
sha256 = "1r1qhzv8nccjdaipf6klvsf262n7dqjzzww23pzzk9nyw9nsz55i"
["github.com/cockroachdb/datadriven"]
sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa"
["github.com/cockroachdb/datadriven".fetch]
type = "git"
url = "https://github.com/cockroachdb/datadriven"
rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef"
sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp"
["github.com/codahale/hdrhistogram"]
sumVersion = "v0.0.0-20161010025455-3a0bb77429bd"
["github.com/codahale/hdrhistogram".fetch]
type = "git"
url = "https://github.com/codahale/hdrhistogram"
rev = "3a0bb77429bd3a61596f5e8a3172445844342120"
sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57"
["github.com/coinbase/rosetta-sdk-go"]
sumVersion = "v0.7.0"
["github.com/coinbase/rosetta-sdk-go".fetch]
type = "git"
url = "https://github.com/coinbase/rosetta-sdk-go"
rev = "2dd320b300f63a36fb7e8bef5f4c26ffd65b92fc"
sha256 = "0ndrqrvq2mczfx9v9dj2jy6nn8ryjn4clfi1zrh2hf1j4h67c89m"
["github.com/confio/ics23/go"]
sumVersion = "v0.7.0"
relPath = "go"
["github.com/confio/ics23/go".fetch]
type = "git"
url = "https://github.com/confio/ics23"
rev = "87a967f735daf436878e57942838cb54c3142660"
sha256 = "0npvmlsvjjd9s4ra4h3s9i3ib2gswjvh8jl0d6c94dahrmdp6hip"
["github.com/consensys/bavard"]
sumVersion = "v0.1.8-0.20210406032232-f3452dc9b572"
["github.com/consensys/bavard".fetch]
type = "git"
url = "https://github.com/consensys/bavard"
rev = "f3452dc9b5723cb45e221513c9b6085f397932d9"
sha256 = "19sp1x5rkshqc2avq7zzrj49mdnnqwbkj2psm82f244gcr0a08d5"
["github.com/consensys/gnark-crypto"]
sumVersion = "v0.4.1-0.20210426202927-39ac3d4b3f1f"
["github.com/consensys/gnark-crypto".fetch]
type = "git"
url = "https://github.com/consensys/gnark-crypto"
rev = "39ac3d4b3f1fc30b95a4098257eaac0ad2093a34"
sha256 = "1y564cvr8lh33andnbpivpkz472z72g4f2gf24b701s2bclx0k6w"
["github.com/containerd/console"]
sumVersion = "v1.0.2"
["github.com/containerd/console".fetch]
type = "git"
url = "https://github.com/containerd/console"
rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769"
sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438"
["github.com/containerd/continuity"]
sumVersion = "v0.0.0-20190827140505-75bee3e2ccb6"
["github.com/containerd/continuity".fetch]
type = "git"
url = "https://github.com/containerd/continuity"
rev = "75bee3e2ccb6402e3a986ab8bd3b17003fc0fdec"
sha256 = "0p5wgpzyyg4fgh6pcg17drxksmycj7zk9mzwnlg099rqqlfp7q4l"
["github.com/coreos/bbolt"]
sumVersion = "v1.3.2"
["github.com/coreos/bbolt".fetch]
type = "git"
url = "https://github.com/coreos/bbolt"
rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461"
sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2"
["github.com/coreos/etcd"]
sumVersion = "v3.3.13+incompatible"
["github.com/coreos/etcd".fetch]
type = "git"
url = "https://github.com/coreos/etcd"
rev = "98d308426819d892e149fe45f6fd542464cb1f9d"
sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy"
["github.com/coreos/go-etcd"]
sumVersion = "v2.0.0+incompatible"
["github.com/coreos/go-etcd".fetch]
type = "git"
url = "https://github.com/coreos/go-etcd"
rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12"
sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj"
["github.com/coreos/go-semver"]
sumVersion = "v0.3.0"
["github.com/coreos/go-semver".fetch]
type = "git"
url = "https://github.com/coreos/go-semver"
rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b"
sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9"
["github.com/coreos/go-systemd"]
sumVersion = "v0.0.0-20190321100706-95778dfbb74e"
["github.com/coreos/go-systemd".fetch]
type = "git"
url = "https://github.com/coreos/go-systemd"
rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076"
sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf"
["github.com/coreos/go-systemd/v22"]
sumVersion = "v22.3.2"
["github.com/coreos/go-systemd/v22".fetch]
type = "git"
url = "https://github.com/coreos/go-systemd"
rev = "777e73a89cef78631ccaa97f53a9bae67e166186"
sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq"
["github.com/coreos/pkg"]
sumVersion = "v0.0.0-20180928190104-399ea9e2e55f"
["github.com/coreos/pkg".fetch]
type = "git"
url = "https://github.com/coreos/pkg"
rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0"
sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y"
["github.com/cosmos/btcutil"]
sumVersion = "v1.0.4"
["github.com/cosmos/btcutil".fetch]
type = "git"
url = "https://github.com/cosmos/btcutil"
rev = "a68c44d216624107f23b6c8e66704ff4ecee879a"
sha256 = "10x22k92ra1sdddj2pksprfhsm683sldflcnjm8nfz4rjjhjwkay"
["github.com/cosmos/cosmos-sdk"]
sumVersion = "v0.45.2-0.20220218085826-7f949c0aa1d6"
["github.com/cosmos/cosmos-sdk".fetch]
type = "git"
url = "https://github.com/cosmos/cosmos-sdk"
rev = "7f949c0aa1d6350ef3a32c730cc4493bfb64f63e"
sha256 = "12qk6y17hzw4dbi2f3n1yq6fdx37mpz69i5n65xrc2yjxwrh5p6g"
["github.com/cosmos/go-bip39"]
sumVersion = "v1.0.0"
["github.com/cosmos/go-bip39".fetch]
type = "git"
url = "https://github.com/cosmos/go-bip39"
rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f"
sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2"
["github.com/cosmos/iavl"]
sumVersion = "v0.17.3"
["github.com/cosmos/iavl".fetch]
type = "git"
url = "https://github.com/cosmos/iavl"
rev = "d99448032e95a6ce05d342737cd745a20ef0b6ce"
sha256 = "115964xzwlr8j0l8f5x0v31f5hnxhd0rh5cvgy560l0dd77i735k"
["github.com/cosmos/ibc-go/v2"]
sumVersion = "v2.2.0-hooks2"
vendorPath = "github.com/crypto-org-chain/ibc-go/v2"
["github.com/cosmos/ibc-go/v2".fetch]
type = "git"
url = "https://github.com/crypto-org-chain/ibc-go"
rev = "a4a2d403ce9f6df63efa196c2b0bfdf659205058"
sha256 = "059aqdj683pmz2k2yc12rw1l15vdpbfiky6falbpn3zx8mgap45p"
["github.com/cosmos/ledger-cosmos-go"]
sumVersion = "v0.11.1"
["github.com/cosmos/ledger-cosmos-go".fetch]
type = "git"
url = "https://github.com/cosmos/ledger-cosmos-go"
rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10"
sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a"
["github.com/cosmos/ledger-go"]
sumVersion = "v0.9.2"
["github.com/cosmos/ledger-go".fetch]
type = "git"
url = "https://github.com/cosmos/ledger-go"
rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b"
sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni"
["github.com/cpuguy83/go-md2man"]
sumVersion = "v1.0.10"
["github.com/cpuguy83/go-md2man".fetch]
type = "git"
url = "https://github.com/cpuguy83/go-md2man"
rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19"
sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i"
["github.com/cpuguy83/go-md2man/v2"]
sumVersion = "v2.0.1"
["github.com/cpuguy83/go-md2man/v2".fetch]
type = "git"
url = "https://github.com/cpuguy83/go-md2man"
rev = "b1ec32e02fe539480dc03e3bf381c20066e7c6cc"
sha256 = "051ljpzf1f5nh631lvn53ziclkzmx5lza8545mkk6wxdfnfdcx8f"