-
Notifications
You must be signed in to change notification settings - Fork 6
/
cskk-cargo-sources.json
3986 lines (3986 loc) · 166 KB
/
cskk-cargo-sources.json
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
[
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.8.3.crate",
"sha256": "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f",
"dest": "cargo/vendor/ahash-0.8.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.0.2.crate",
"sha256": "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41",
"dest": "cargo/vendor/aho-corasick-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-tzdata/android-tzdata-0.1.1.crate",
"sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
"dest": "cargo/vendor/android-tzdata-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0\", \"files\": {}}",
"dest": "cargo/vendor/android-tzdata-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate",
"sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
"dest": "cargo/vendor/android_system_properties-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}",
"dest": "cargo/vendor/android_system_properties-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstream/anstream-0.3.2.crate",
"sha256": "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163",
"dest": "cargo/vendor/anstream-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.1.crate",
"sha256": "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd",
"dest": "cargo/vendor/anstyle-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.1.crate",
"sha256": "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333",
"dest": "cargo/vendor/anstyle-parse-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.0.0.crate",
"sha256": "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b",
"dest": "cargo/vendor/anstyle-query-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-1.0.1.crate",
"sha256": "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188",
"dest": "cargo/vendor/anstyle-wincon-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.72.crate",
"sha256": "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854",
"dest": "cargo/vendor/anyhow-1.0.72"
},
{
"type": "inline",
"contents": "{\"package\": \"3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.72",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arc-swap/arc-swap-1.6.0.crate",
"sha256": "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6",
"dest": "cargo/vendor/arc-swap-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6\", \"files\": {}}",
"dest": "cargo/vendor/arc-swap-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.5.2.crate",
"sha256": "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b",
"dest": "cargo/vendor/arrayvec-0.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.1.0.crate",
"sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
"dest": "cargo/vendor/autocfg-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base16ct/base16ct-0.2.0.crate",
"sha256": "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf",
"dest": "cargo/vendor/base16ct-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\", \"files\": {}}",
"dest": "cargo/vendor/base16ct-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.21.2.crate",
"sha256": "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d",
"dest": "cargo/vendor/base64-0.21.2"
},
{
"type": "inline",
"contents": "{\"package\": \"604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.21.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64ct/base64ct-1.6.0.crate",
"sha256": "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b",
"dest": "cargo/vendor/base64ct-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b\", \"files\": {}}",
"dest": "cargo/vendor/base64ct-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
"dest": "cargo/vendor/bitflags-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-2.3.3.crate",
"sha256": "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42",
"dest": "cargo/vendor/bitflags-2.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitmaps/bitmaps-2.1.0.crate",
"sha256": "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2",
"dest": "cargo/vendor/bitmaps-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2\", \"files\": {}}",
"dest": "cargo/vendor/bitmaps-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
"dest": "cargo/vendor/block-buffer-0.10.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-1.6.0.crate",
"sha256": "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05",
"dest": "cargo/vendor/bstr-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/btoi/btoi-0.4.3.crate",
"sha256": "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad",
"dest": "cargo/vendor/btoi-0.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad\", \"files\": {}}",
"dest": "cargo/vendor/btoi-0.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.13.0.crate",
"sha256": "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1",
"dest": "cargo/vendor/bumpalo-3.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytes/bytes-1.4.0.crate",
"sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be",
"dest": "cargo/vendor/bytes-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytesize/bytesize-1.2.0.crate",
"sha256": "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5",
"dest": "cargo/vendor/bytesize-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5\", \"files\": {}}",
"dest": "cargo/vendor/bytesize-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo/cargo-0.72.1.crate",
"sha256": "2cb394cfa92bba1e9dc828a3ad68a7a943dc76fb7095bdd3710f77e516b13585",
"dest": "cargo/vendor/cargo-0.72.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2cb394cfa92bba1e9dc828a3ad68a7a943dc76fb7095bdd3710f77e516b13585\", \"files\": {}}",
"dest": "cargo/vendor/cargo-0.72.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-c/cargo-c-0.9.22+cargo-0.72.crate",
"sha256": "e034edd4bc99d2bd4f77a4c224b230ab873e569eec623819220cd7f4b96e5d3d",
"dest": "cargo/vendor/cargo-c-0.9.22+cargo-0.72"
},
{
"type": "inline",
"contents": "{\"package\": \"e034edd4bc99d2bd4f77a4c224b230ab873e569eec623819220cd7f4b96e5d3d\", \"files\": {}}",
"dest": "cargo/vendor/cargo-c-0.9.22+cargo-0.72",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-platform/cargo-platform-0.1.3.crate",
"sha256": "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479",
"dest": "cargo/vendor/cargo-platform-0.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479\", \"files\": {}}",
"dest": "cargo/vendor/cargo-platform-0.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-util/cargo-util-0.2.4.crate",
"sha256": "a5e2320a2b1242f9181a3347ae0884bb497e1853d299da99780fa1e96f9abe23",
"dest": "cargo/vendor/cargo-util-0.2.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a5e2320a2b1242f9181a3347ae0884bb497e1853d299da99780fa1e96f9abe23\", \"files\": {}}",
"dest": "cargo/vendor/cargo-util-0.2.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cbindgen/cbindgen-0.24.5.crate",
"sha256": "4b922faaf31122819ec80c4047cc684c6979a087366c069611e33649bf98e18d",
"dest": "cargo/vendor/cbindgen-0.24.5"
},
{
"type": "inline",
"contents": "{\"package\": \"4b922faaf31122819ec80c4047cc684c6979a087366c069611e33649bf98e18d\", \"files\": {}}",
"dest": "cargo/vendor/cbindgen-0.24.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.81.crate",
"sha256": "6c6b2562119bf28c3439f7f02db99faf0aa1a8cdfe5772a2ee155d32227239f0",
"dest": "cargo/vendor/cc-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"6c6b2562119bf28c3439f7f02db99faf0aa1a8cdfe5772a2ee155d32227239f0\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.81",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
"dest": "cargo/vendor/cfg-if-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono/chrono-0.4.26.crate",
"sha256": "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5",
"dest": "cargo/vendor/chrono-0.4.26"
},
{
"type": "inline",
"contents": "{\"package\": \"ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.26",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.3.19.crate",
"sha256": "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d",
"dest": "cargo/vendor/clap-4.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_builder/clap_builder-4.3.19.crate",
"sha256": "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1",
"dest": "cargo/vendor/clap_builder-4.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1\", \"files\": {}}",
"dest": "cargo/vendor/clap_builder-4.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.3.12.crate",
"sha256": "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050",
"dest": "cargo/vendor/clap_derive-4.3.12"
},
{
"type": "inline",
"contents": "{\"package\": \"54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.3.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.5.0.crate",
"sha256": "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b",
"dest": "cargo/vendor/clap_lex-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clru/clru-0.6.1.crate",
"sha256": "b8191fa7302e03607ff0e237d4246cc043ff5b3cb9409d995172ba3bea16b807",
"dest": "cargo/vendor/clru-0.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b8191fa7302e03607ff0e237d4246cc043ff5b3cb9409d995172ba3bea16b807\", \"files\": {}}",
"dest": "cargo/vendor/clru-0.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.0.crate",
"sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7",
"dest": "cargo/vendor/colorchoice-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7\", \"files\": {}}",
"dest": "cargo/vendor/colorchoice-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/const-oid/const-oid-0.9.4.crate",
"sha256": "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747",
"dest": "cargo/vendor/const-oid-0.9.4"
},
{
"type": "inline",
"contents": "{\"package\": \"795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747\", \"files\": {}}",
"dest": "cargo/vendor/const-oid-0.9.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation/core-foundation-0.9.3.crate",
"sha256": "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146",
"dest": "cargo/vendor/core-foundation-0.9.3"
},
{
"type": "inline",
"contents": "{\"package\": \"194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.9.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.4.crate",
"sha256": "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa",
"dest": "cargo/vendor/core-foundation-sys-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.9.crate",
"sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1",
"dest": "cargo/vendor/cpufeatures-0.2.9"
},
{
"type": "inline",
"contents": "{\"package\": \"a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crates-io/crates-io-0.37.0.crate",
"sha256": "876aa69b4afca5f2eb5e23daa3445930faf829bcb67075a20ffa884f11f8c57c",
"dest": "cargo/vendor/crates-io-0.37.0"
},
{
"type": "inline",
"contents": "{\"package\": \"876aa69b4afca5f2eb5e23daa3445930faf829bcb67075a20ffa884f11f8c57c\", \"files\": {}}",
"dest": "cargo/vendor/crates-io-0.37.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.3.2.crate",
"sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d",
"dest": "cargo/vendor/crc32fast-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.8.crate",
"sha256": "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200",
"dest": "cargo/vendor/crossbeam-channel-0.5.8"
},
{
"type": "inline",
"contents": "{\"package\": \"a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.16.crate",
"sha256": "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294",
"dest": "cargo/vendor/crossbeam-utils-0.8.16"
},
{
"type": "inline",
"contents": "{\"package\": \"5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.16",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crypto-bigint/crypto-bigint-0.5.2.crate",
"sha256": "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15",
"dest": "cargo/vendor/crypto-bigint-0.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15\", \"files\": {}}",
"dest": "cargo/vendor/crypto-bigint-0.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crypto-common/crypto-common-0.1.6.crate",
"sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
"dest": "cargo/vendor/crypto-common-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3\", \"files\": {}}",
"dest": "cargo/vendor/crypto-common-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ct-codecs/ct-codecs-1.1.1.crate",
"sha256": "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df",
"dest": "cargo/vendor/ct-codecs-1.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df\", \"files\": {}}",
"dest": "cargo/vendor/ct-codecs-1.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl/curl-0.4.44.crate",
"sha256": "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22",
"dest": "cargo/vendor/curl-0.4.44"
},
{
"type": "inline",
"contents": "{\"package\": \"509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22\", \"files\": {}}",
"dest": "cargo/vendor/curl-0.4.44",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl-sys/curl-sys-0.4.65+curl-8.2.1.crate",
"sha256": "961ba061c9ef2fe34bbd12b807152d96f0badd2bebe7b90ce6c8c8b7572a0986",
"dest": "cargo/vendor/curl-sys-0.4.65+curl-8.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"961ba061c9ef2fe34bbd12b807152d96f0badd2bebe7b90ce6c8c8b7572a0986\", \"files\": {}}",
"dest": "cargo/vendor/curl-sys-0.4.65+curl-8.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.20.3.crate",
"sha256": "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e",
"dest": "cargo/vendor/darling-0.20.3"
},
{
"type": "inline",
"contents": "{\"package\": \"0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e\", \"files\": {}}",
"dest": "cargo/vendor/darling-0.20.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_core/darling_core-0.20.3.crate",
"sha256": "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621",
"dest": "cargo/vendor/darling_core-0.20.3"
},
{
"type": "inline",
"contents": "{\"package\": \"177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621\", \"files\": {}}",
"dest": "cargo/vendor/darling_core-0.20.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_macro/darling_macro-0.20.3.crate",
"sha256": "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5",
"dest": "cargo/vendor/darling_macro-0.20.3"
},
{
"type": "inline",
"contents": "{\"package\": \"836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5\", \"files\": {}}",
"dest": "cargo/vendor/darling_macro-0.20.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/der/der-0.7.7.crate",
"sha256": "0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946",
"dest": "cargo/vendor/der-0.7.7"
},
{
"type": "inline",
"contents": "{\"package\": \"0c7ed52955ce76b1554f509074bb357d3fb8ac9b51288a65a3fd480d1dfba946\", \"files\": {}}",
"dest": "cargo/vendor/der-0.7.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/deranged/deranged-0.3.7.crate",
"sha256": "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929",
"dest": "cargo/vendor/deranged-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929\", \"files\": {}}",
"dest": "cargo/vendor/deranged-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.10.7.crate",
"sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292",
"dest": "cargo/vendor/digest-0.10.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.10.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dunce/dunce-1.0.4.crate",
"sha256": "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b",
"dest": "cargo/vendor/dunce-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b\", \"files\": {}}",
"dest": "cargo/vendor/dunce-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ecdsa/ecdsa-0.16.8.crate",
"sha256": "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4",
"dest": "cargo/vendor/ecdsa-0.16.8"
},
{
"type": "inline",
"contents": "{\"package\": \"a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4\", \"files\": {}}",
"dest": "cargo/vendor/ecdsa-0.16.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ed25519-compact/ed25519-compact-2.0.4.crate",
"sha256": "6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c",
"dest": "cargo/vendor/ed25519-compact-2.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c\", \"files\": {}}",
"dest": "cargo/vendor/ed25519-compact-2.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.9.0.crate",
"sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07",
"dest": "cargo/vendor/either-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07\", \"files\": {}}",
"dest": "cargo/vendor/either-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/elliptic-curve/elliptic-curve-0.13.5.crate",
"sha256": "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b",
"dest": "cargo/vendor/elliptic-curve-0.13.5"
},
{
"type": "inline",
"contents": "{\"package\": \"968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b\", \"files\": {}}",
"dest": "cargo/vendor/elliptic-curve-0.13.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.32.crate",
"sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394",
"dest": "cargo/vendor/encoding_rs-0.8.32"
},
{
"type": "inline",
"contents": "{\"package\": \"071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394\", \"files\": {}}",
"dest": "cargo/vendor/encoding_rs-0.8.32",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_rs_io/encoding_rs_io-0.1.7.crate",
"sha256": "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83",
"dest": "cargo/vendor/encoding_rs_io-0.1.7"
},
{
"type": "inline",
"contents": "{\"package\": \"1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83\", \"files\": {}}",
"dest": "cargo/vendor/encoding_rs_io-0.1.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enum-display-derive/enum-display-derive-0.1.1.crate",
"sha256": "f16ef37b2a9b242295d61a154ee91ae884afff6b8b933b486b12481cc58310ca",
"dest": "cargo/vendor/enum-display-derive-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f16ef37b2a9b242295d61a154ee91ae884afff6b8b933b486b12481cc58310ca\", \"files\": {}}",
"dest": "cargo/vendor/enum-display-derive-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/env_logger/env_logger-0.10.0.crate",
"sha256": "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0",
"dest": "cargo/vendor/env_logger-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0\", \"files\": {}}",
"dest": "cargo/vendor/env_logger-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/equivalent/equivalent-1.0.1.crate",
"sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5",
"dest": "cargo/vendor/equivalent-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5\", \"files\": {}}",
"dest": "cargo/vendor/equivalent-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.3.2.crate",
"sha256": "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f",
"dest": "cargo/vendor/errno-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno-dragonfly/errno-dragonfly-0.1.2.crate",
"sha256": "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf",
"dest": "cargo/vendor/errno-dragonfly-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf\", \"files\": {}}",
"dest": "cargo/vendor/errno-dragonfly-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-2.0.0.crate",
"sha256": "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764",
"dest": "cargo/vendor/fastrand-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ff/ff-0.13.0.crate",
"sha256": "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449",
"dest": "cargo/vendor/ff-0.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449\", \"files\": {}}",
"dest": "cargo/vendor/ff-0.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fiat-crypto/fiat-crypto-0.1.20.crate",
"sha256": "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77",
"dest": "cargo/vendor/fiat-crypto-0.1.20"
},
{
"type": "inline",
"contents": "{\"package\": \"e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77\", \"files\": {}}",
"dest": "cargo/vendor/fiat-crypto-0.1.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/filetime/filetime-0.2.21.crate",
"sha256": "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153",
"dest": "cargo/vendor/filetime-0.2.21"
},
{
"type": "inline",
"contents": "{\"package\": \"5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153\", \"files\": {}}",
"dest": "cargo/vendor/filetime-0.2.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.26.crate",
"sha256": "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743",
"dest": "cargo/vendor/flate2-1.0.26"
},
{
"type": "inline",
"contents": "{\"package\": \"3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.26",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fnv/fnv-1.0.7.crate",
"sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
"dest": "cargo/vendor/fnv-1.0.7"
},
{
"type": "inline",
"contents": "{\"package\": \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\", \"files\": {}}",
"dest": "cargo/vendor/fnv-1.0.7",