-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcargo-sources.json
More file actions
7184 lines (7184 loc) · 301 KB
/
cargo-sources.json
File metadata and controls
7184 lines (7184 loc) · 301 KB
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/addr2line/addr2line-0.24.2.crate",
"sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1",
"dest": "cargo/vendor/addr2line-0.24.2"
},
{
"type": "inline",
"contents": "{\"package\": \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.24.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler2/adler2-2.0.1.crate",
"sha256": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa",
"dest": "cargo/vendor/adler2-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\", \"files\": {}}",
"dest": "cargo/vendor/adler2-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aes/aes-0.8.4.crate",
"sha256": "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0",
"dest": "cargo/vendor/aes-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\", \"files\": {}}",
"dest": "cargo/vendor/aes-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.3.crate",
"sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916",
"dest": "cargo/vendor/aho-corasick-1.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.21.crate",
"sha256": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923",
"dest": "cargo/vendor/allocator-api2-0.2.21"
},
{
"type": "inline",
"contents": "{\"package\": \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\", \"files\": {}}",
"dest": "cargo/vendor/allocator-api2-0.2.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/alsa/alsa-0.9.1.crate",
"sha256": "ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43",
"dest": "cargo/vendor/alsa-0.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43\", \"files\": {}}",
"dest": "cargo/vendor/alsa-0.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/alsa/alsa-0.10.0.crate",
"sha256": "7c88dbbce13b232b26250e1e2e6ac18b6a891a646b8148285036ebce260ac5c3",
"dest": "cargo/vendor/alsa-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7c88dbbce13b232b26250e1e2e6ac18b6a891a646b8148285036ebce260ac5c3\", \"files\": {}}",
"dest": "cargo/vendor/alsa-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/alsa-sys/alsa-sys-0.3.1.crate",
"sha256": "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527",
"dest": "cargo/vendor/alsa-sys-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527\", \"files\": {}}",
"dest": "cargo/vendor/alsa-sys-0.3.1",
"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.6.20.crate",
"sha256": "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192",
"dest": "cargo/vendor/anstream-0.6.20"
},
{
"type": "inline",
"contents": "{\"package\": \"3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.11.crate",
"sha256": "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd",
"dest": "cargo/vendor/anstyle-1.0.11"
},
{
"type": "inline",
"contents": "{\"package\": \"862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.7.crate",
"sha256": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2",
"dest": "cargo/vendor/anstyle-parse-0.2.7"
},
{
"type": "inline",
"contents": "{\"package\": \"4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.1.4.crate",
"sha256": "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2",
"dest": "cargo/vendor/anstyle-query-1.1.4"
},
{
"type": "inline",
"contents": "{\"package\": \"9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.1.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.10.crate",
"sha256": "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a",
"dest": "cargo/vendor/anstyle-wincon-3.0.10"
},
{
"type": "inline",
"contents": "{\"package\": \"3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.99.crate",
"sha256": "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100",
"dest": "cargo/vendor/anyhow-1.0.99"
},
{
"type": "inline",
"contents": "{\"package\": \"b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.99",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.6.crate",
"sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50",
"dest": "cargo/vendor/arrayvec-0.7.6"
},
{
"type": "inline",
"contents": "{\"package\": \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.7.2.crate",
"sha256": "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532",
"dest": "cargo/vendor/async-broadcast-0.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532\", \"files\": {}}",
"dest": "cargo/vendor/async-broadcast-0.7.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-channel/async-channel-1.9.0.crate",
"sha256": "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35",
"dest": "cargo/vendor/async-channel-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-channel/async-channel-2.5.0.crate",
"sha256": "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2",
"dest": "cargo/vendor/async-channel-2.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-2.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-executor/async-executor-1.13.2.crate",
"sha256": "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa",
"dest": "cargo/vendor/async-executor-1.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa\", \"files\": {}}",
"dest": "cargo/vendor/async-executor-1.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-fs/async-fs-2.1.3.crate",
"sha256": "09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50",
"dest": "cargo/vendor/async-fs-2.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50\", \"files\": {}}",
"dest": "cargo/vendor/async-fs-2.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-io/async-io-2.5.0.crate",
"sha256": "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca",
"dest": "cargo/vendor/async-io-2.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca\", \"files\": {}}",
"dest": "cargo/vendor/async-io-2.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-lock/async-lock-3.4.1.crate",
"sha256": "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc",
"dest": "cargo/vendor/async-lock-3.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc\", \"files\": {}}",
"dest": "cargo/vendor/async-lock-3.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-process/async-process-2.4.0.crate",
"sha256": "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00",
"dest": "cargo/vendor/async-process-2.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00\", \"files\": {}}",
"dest": "cargo/vendor/async-process-2.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-recursion/async-recursion-1.1.1.crate",
"sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11",
"dest": "cargo/vendor/async-recursion-1.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11\", \"files\": {}}",
"dest": "cargo/vendor/async-recursion-1.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-signal/async-signal-0.2.12.crate",
"sha256": "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1",
"dest": "cargo/vendor/async-signal-0.2.12"
},
{
"type": "inline",
"contents": "{\"package\": \"f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1\", \"files\": {}}",
"dest": "cargo/vendor/async-signal-0.2.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-task/async-task-4.7.1.crate",
"sha256": "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de",
"dest": "cargo/vendor/async-task-4.7.1"
},
{
"type": "inline",
"contents": "{\"package\": \"8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de\", \"files\": {}}",
"dest": "cargo/vendor/async-task-4.7.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.89.crate",
"sha256": "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb",
"dest": "cargo/vendor/async-trait-0.1.89"
},
{
"type": "inline",
"contents": "{\"package\": \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.89",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic-waker/atomic-waker-1.1.2.crate",
"sha256": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0",
"dest": "cargo/vendor/atomic-waker-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\", \"files\": {}}",
"dest": "cargo/vendor/atomic-waker-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic_refcell/atomic_refcell-0.1.13.crate",
"sha256": "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c",
"dest": "cargo/vendor/atomic_refcell-0.1.13"
},
{
"type": "inline",
"contents": "{\"package\": \"41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c\", \"files\": {}}",
"dest": "cargo/vendor/atomic_refcell-0.1.13",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.5.0.crate",
"sha256": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8",
"dest": "cargo/vendor/autocfg-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.75.crate",
"sha256": "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002",
"dest": "cargo/vendor/backtrace-0.3.75"
},
{
"type": "inline",
"contents": "{\"package\": \"6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.75",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.13.1.crate",
"sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8",
"dest": "cargo/vendor/base64-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.21.7.crate",
"sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567",
"dest": "cargo/vendor/base64-0.21.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.21.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.22.1.crate",
"sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6",
"dest": "cargo/vendor/base64-0.22.1"
},
{
"type": "inline",
"contents": "{\"package\": \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.22.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64ct/base64ct-1.8.0.crate",
"sha256": "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba",
"dest": "cargo/vendor/base64ct-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba\", \"files\": {}}",
"dest": "cargo/vendor/base64ct-1.8.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.9.3.crate",
"sha256": "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d",
"dest": "cargo/vendor/bitflags-2.9.3"
},
{
"type": "inline",
"contents": "{\"package\": \"34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.9.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block/block-0.1.6.crate",
"sha256": "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a",
"dest": "cargo/vendor/block-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a\", \"files\": {}}",
"dest": "cargo/vendor/block-0.1.6",
"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/block-padding/block-padding-0.3.3.crate",
"sha256": "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93",
"dest": "cargo/vendor/block-padding-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93\", \"files\": {}}",
"dest": "cargo/vendor/block-padding-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blocking/blocking-1.6.2.crate",
"sha256": "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21",
"dest": "cargo/vendor/blocking-1.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21\", \"files\": {}}",
"dest": "cargo/vendor/blocking-1.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.19.0.crate",
"sha256": "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43",
"dest": "cargo/vendor/bumpalo-3.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.19.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.23.2.crate",
"sha256": "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677",
"dest": "cargo/vendor/bytemuck-1.23.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.23.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.5.0.crate",
"sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b",
"dest": "cargo/vendor/byteorder-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytes/bytes-1.10.1.crate",
"sha256": "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a",
"dest": "cargo/vendor/bytes-1.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.20.12.crate",
"sha256": "91e3bd0f4e25afa9cabc157908d14eeef9067d6448c49414d17b3fb55f0eadd0",
"dest": "cargo/vendor/cairo-rs-0.20.12"
},
{
"type": "inline",
"contents": "{\"package\": \"91e3bd0f4e25afa9cabc157908d14eeef9067d6448c49414d17b3fb55f0eadd0\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.20.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.20.10.crate",
"sha256": "059cc746549898cbfd9a47754288e5a958756650ef4652bbb6c5f71a6bda4f8b",
"dest": "cargo/vendor/cairo-sys-rs-0.20.10"
},
{
"type": "inline",
"contents": "{\"package\": \"059cc746549898cbfd9a47754288e5a958756650ef4652bbb6c5f71a6bda4f8b\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.20.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/castaway/castaway-0.1.2.crate",
"sha256": "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6",
"dest": "cargo/vendor/castaway-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6\", \"files\": {}}",
"dest": "cargo/vendor/castaway-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cbc/cbc-0.1.2.crate",
"sha256": "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6",
"dest": "cargo/vendor/cbc-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6\", \"files\": {}}",
"dest": "cargo/vendor/cbc-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.2.34.crate",
"sha256": "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc",
"dest": "cargo/vendor/cc-1.2.34"
},
{
"type": "inline",
"contents": "{\"package\": \"42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.2.34",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cesu8/cesu8-1.1.0.crate",
"sha256": "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c",
"dest": "cargo/vendor/cesu8-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\", \"files\": {}}",
"dest": "cargo/vendor/cesu8-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.20.2.crate",
"sha256": "c8d458d63f0f0f482c8da9b7c8b76c21bd885a02056cc94c6404d861ca2b8206",
"dest": "cargo/vendor/cfg-expr-0.20.2"
},
{
"type": "inline",
"contents": "{\"package\": \"c8d458d63f0f0f482c8da9b7c8b76c21bd885a02056cc94c6404d861ca2b8206\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.20.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.3.crate",
"sha256": "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9",
"dest": "cargo/vendor/cfg-if-1.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg_aliases/cfg_aliases-0.2.1.crate",
"sha256": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724",
"dest": "cargo/vendor/cfg_aliases-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\", \"files\": {}}",
"dest": "cargo/vendor/cfg_aliases-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono/chrono-0.4.41.crate",
"sha256": "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d",
"dest": "cargo/vendor/chrono-0.4.41"
},
{
"type": "inline",
"contents": "{\"package\": \"c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.41",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cipher/cipher-0.4.4.crate",
"sha256": "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad",
"dest": "cargo/vendor/cipher-0.4.4"
},
{
"type": "inline",
"contents": "{\"package\": \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\", \"files\": {}}",
"dest": "cargo/vendor/cipher-0.4.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.4.crate",
"sha256": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75",
"dest": "cargo/vendor/colorchoice-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75\", \"files\": {}}",
"dest": "cargo/vendor/colorchoice-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/combine/combine-4.6.7.crate",
"sha256": "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd",
"dest": "cargo/vendor/combine-4.6.7"
},
{
"type": "inline",
"contents": "{\"package\": \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\", \"files\": {}}",
"dest": "cargo/vendor/combine-4.6.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.5.0.crate",
"sha256": "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973",
"dest": "cargo/vendor/concurrent-queue-2.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973\", \"files\": {}}",
"dest": "cargo/vendor/concurrent-queue-2.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/const-oid/const-oid-0.9.6.crate",
"sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8",
"dest": "cargo/vendor/const-oid-0.9.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\", \"files\": {}}",
"dest": "cargo/vendor/const-oid-0.9.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation/core-foundation-0.9.4.crate",
"sha256": "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f",
"dest": "cargo/vendor/core-foundation-0.9.4"
},
{
"type": "inline",
"contents": "{\"package\": \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.9.4",
"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.7.crate",
"sha256": "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b",
"dest": "cargo/vendor/core-foundation-sys-0.8.7"
},
{
"type": "inline",
"contents": "{\"package\": \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/coreaudio-rs/coreaudio-rs-0.13.0.crate",
"sha256": "1aae284fbaf7d27aa0e292f7677dfbe26503b0d555026f702940805a630eac17",
"dest": "cargo/vendor/coreaudio-rs-0.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1aae284fbaf7d27aa0e292f7677dfbe26503b0d555026f702940805a630eac17\", \"files\": {}}",
"dest": "cargo/vendor/coreaudio-rs-0.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpal/cpal-0.16.0.crate",
"sha256": "cbd307f43cc2a697e2d1f8bc7a1d824b5269e052209e28883e5bc04d095aaa3f",
"dest": "cargo/vendor/cpal-0.16.0"
},
{
"type": "inline",
"contents": "{\"package\": \"cbd307f43cc2a697e2d1f8bc7a1d824b5269e052209e28883e5bc04d095aaa3f\", \"files\": {}}",
"dest": "cargo/vendor/cpal-0.16.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.17.crate",
"sha256": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280",
"dest": "cargo/vendor/cpufeatures-0.2.17"
},
{
"type": "inline",
"contents": "{\"package\": \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.5.0.crate",
"sha256": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511",
"dest": "cargo/vendor/crc32fast-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.21.crate",
"sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28",
"dest": "cargo/vendor/crossbeam-utils-0.8.21"
},
{
"type": "inline",
"contents": "{\"package\": \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.21",
"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/ctr/ctr-0.9.2.crate",
"sha256": "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835",
"dest": "cargo/vendor/ctr-0.9.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\", \"files\": {}}",
"dest": "cargo/vendor/ctr-0.9.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl/curl-0.4.49.crate",
"sha256": "79fc3b6dd0b87ba36e565715bf9a2ced221311db47bd18011676f24a6066edbc",
"dest": "cargo/vendor/curl-0.4.49"
},
{
"type": "inline",
"contents": "{\"package\": \"79fc3b6dd0b87ba36e565715bf9a2ced221311db47bd18011676f24a6066edbc\", \"files\": {}}",
"dest": "cargo/vendor/curl-0.4.49",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl-sys/curl-sys-0.4.83+curl-8.15.0.crate",
"sha256": "5830daf304027db10c82632a464879d46a3f7c4ba17a31592657ad16c719b483",
"dest": "cargo/vendor/curl-sys-0.4.83+curl-8.15.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5830daf304027db10c82632a464879d46a3f7c4ba17a31592657ad16c719b483\", \"files\": {}}",
"dest": "cargo/vendor/curl-sys-0.4.83+curl-8.15.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.20.11.crate",
"sha256": "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee",
"dest": "cargo/vendor/darling-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\", \"files\": {}}",
"dest": "cargo/vendor/darling-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_core/darling_core-0.20.11.crate",
"sha256": "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e",
"dest": "cargo/vendor/darling_core-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\", \"files\": {}}",
"dest": "cargo/vendor/darling_core-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_macro/darling_macro-0.20.11.crate",
"sha256": "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead",
"dest": "cargo/vendor/darling_macro-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\", \"files\": {}}",
"dest": "cargo/vendor/darling_macro-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dasp_sample/dasp_sample-0.11.0.crate",
"sha256": "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f",
"dest": "cargo/vendor/dasp_sample-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f\", \"files\": {}}",
"dest": "cargo/vendor/dasp_sample-0.11.0",