-
Notifications
You must be signed in to change notification settings - Fork 5
/
cargo-sources.json
3713 lines (3713 loc) · 155 KB
/
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/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/aligned-vec/aligned-vec-0.5.0.crate",
"sha256": "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1",
"dest": "cargo/vendor/aligned-vec-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1\", \"files\": {}}",
"dest": "cargo/vendor/aligned-vec-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.82.crate",
"sha256": "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519",
"dest": "cargo/vendor/anyhow-1.0.82"
},
{
"type": "inline",
"contents": "{\"package\": \"f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.82",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arbitrary/arbitrary-1.3.2.crate",
"sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110",
"dest": "cargo/vendor/arbitrary-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110\", \"files\": {}}",
"dest": "cargo/vendor/arbitrary-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arg_enum_proc_macro/arg_enum_proc_macro-0.3.4.crate",
"sha256": "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea\", \"files\": {}}",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayref/arrayref-0.3.7.crate",
"sha256": "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545",
"dest": "cargo/vendor/arrayref-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.4.crate",
"sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711",
"dest": "cargo/vendor/arrayvec-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ashpd/ashpd-0.8.1.crate",
"sha256": "dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093",
"dest": "cargo/vendor/ashpd-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093\", \"files\": {}}",
"dest": "cargo/vendor/ashpd-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.7.0.crate",
"sha256": "258b52a1aa741b9f09783b2d86cf0aeeb617bbf847f6933340a39644227acbdb",
"dest": "cargo/vendor/async-broadcast-0.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"258b52a1aa741b9f09783b2d86cf0aeeb617bbf847f6933340a39644227acbdb\", \"files\": {}}",
"dest": "cargo/vendor/async-broadcast-0.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-channel/async-channel-2.3.1.crate",
"sha256": "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a",
"dest": "cargo/vendor/async-channel-2.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-2.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-executor/async-executor-1.11.0.crate",
"sha256": "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a",
"dest": "cargo/vendor/async-executor-1.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a\", \"files\": {}}",
"dest": "cargo/vendor/async-executor-1.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-fs/async-fs-2.1.1.crate",
"sha256": "bc19683171f287921f2405677dd2ed2549c3b3bda697a563ebc3a121ace2aba1",
"dest": "cargo/vendor/async-fs-2.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"bc19683171f287921f2405677dd2ed2549c3b3bda697a563ebc3a121ace2aba1\", \"files\": {}}",
"dest": "cargo/vendor/async-fs-2.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-io/async-io-2.3.2.crate",
"sha256": "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884",
"dest": "cargo/vendor/async-io-2.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884\", \"files\": {}}",
"dest": "cargo/vendor/async-io-2.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-lock/async-lock-3.3.0.crate",
"sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b",
"dest": "cargo/vendor/async-lock-3.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b\", \"files\": {}}",
"dest": "cargo/vendor/async-lock-3.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-net/async-net-2.0.0.crate",
"sha256": "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7",
"dest": "cargo/vendor/async-net-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7\", \"files\": {}}",
"dest": "cargo/vendor/async-net-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-process/async-process-2.2.2.crate",
"sha256": "a53fc6301894e04a92cb2584fedde80cb25ba8e02d9dc39d4a87d036e22f397d",
"dest": "cargo/vendor/async-process-2.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a53fc6301894e04a92cb2584fedde80cb25ba8e02d9dc39d4a87d036e22f397d\", \"files\": {}}",
"dest": "cargo/vendor/async-process-2.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-recursion/async-recursion-1.1.0.crate",
"sha256": "30c5ef0ede93efbf733c1a727f3b6b5a1060bbedd5600183e66f6e4be4af0ec5",
"dest": "cargo/vendor/async-recursion-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"30c5ef0ede93efbf733c1a727f3b6b5a1060bbedd5600183e66f6e4be4af0ec5\", \"files\": {}}",
"dest": "cargo/vendor/async-recursion-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-signal/async-signal-0.2.6.crate",
"sha256": "afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda",
"dest": "cargo/vendor/async-signal-0.2.6"
},
{
"type": "inline",
"contents": "{\"package\": \"afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda\", \"files\": {}}",
"dest": "cargo/vendor/async-signal-0.2.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-task/async-task-4.7.0.crate",
"sha256": "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799",
"dest": "cargo/vendor/async-task-4.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799\", \"files\": {}}",
"dest": "cargo/vendor/async-task-4.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.80.crate",
"sha256": "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca",
"dest": "cargo/vendor/async-trait-0.1.80"
},
{
"type": "inline",
"contents": "{\"package\": \"c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.80",
"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/autocfg/autocfg-1.2.0.crate",
"sha256": "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80",
"dest": "cargo/vendor/autocfg-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/av1-grain/av1-grain-0.2.3.crate",
"sha256": "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf",
"dest": "cargo/vendor/av1-grain-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf\", \"files\": {}}",
"dest": "cargo/vendor/av1-grain-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/avif-serialize/avif-serialize-0.8.1.crate",
"sha256": "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2",
"dest": "cargo/vendor/avif-serialize-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2\", \"files\": {}}",
"dest": "cargo/vendor/avif-serialize-0.8.1",
"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/bit_field/bit_field-0.10.2.crate",
"sha256": "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61",
"dest": "cargo/vendor/bit_field-0.10.2"
},
{
"type": "inline",
"contents": "{\"package\": \"dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61\", \"files\": {}}",
"dest": "cargo/vendor/bit_field-0.10.2",
"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.5.0.crate",
"sha256": "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1",
"dest": "cargo/vendor/bitflags-2.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitstream-io/bitstream-io-2.2.0.crate",
"sha256": "06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da",
"dest": "cargo/vendor/bitstream-io-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da\", \"files\": {}}",
"dest": "cargo/vendor/bitstream-io-2.2.0",
"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/blocking/blocking-1.5.1.crate",
"sha256": "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118",
"dest": "cargo/vendor/blocking-1.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118\", \"files\": {}}",
"dest": "cargo/vendor/blocking-1.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/built/built-0.7.2.crate",
"sha256": "41bfbdb21256b87a8b5e80fab81a8eed158178e812fd7ba451907518b2742f16",
"dest": "cargo/vendor/built-0.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"41bfbdb21256b87a8b5e80fab81a8eed158178e812fd7ba451907518b2742f16\", \"files\": {}}",
"dest": "cargo/vendor/built-0.7.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.16.0.crate",
"sha256": "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c",
"dest": "cargo/vendor/bumpalo-3.16.0"
},
{
"type": "inline",
"contents": "{\"package\": \"79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.16.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.15.0.crate",
"sha256": "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15",
"dest": "cargo/vendor/bytemuck-1.15.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.15.0",
"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/byteorder-lite/byteorder-lite-0.1.0.crate",
"sha256": "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495",
"dest": "cargo/vendor/byteorder-lite-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-lite-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.19.4.crate",
"sha256": "b2ac2a4d0e69036cf0062976f6efcba1aaee3e448594e6514bb2ddf87acce562",
"dest": "cargo/vendor/cairo-rs-0.19.4"
},
{
"type": "inline",
"contents": "{\"package\": \"b2ac2a4d0e69036cf0062976f6efcba1aaee3e448594e6514bb2ddf87acce562\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.19.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.19.2.crate",
"sha256": "fd3bb3119664efbd78b5e6c93957447944f16bdbced84c17a9f41c7829b81e64",
"dest": "cargo/vendor/cairo-sys-rs-0.19.2"
},
{
"type": "inline",
"contents": "{\"package\": \"fd3bb3119664efbd78b5e6c93957447944f16bdbced84c17a9f41c7829b81e64\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.19.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.95.crate",
"sha256": "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b",
"dest": "cargo/vendor/cc-1.0.95"
},
{
"type": "inline",
"contents": "{\"package\": \"d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.95",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.15.8.crate",
"sha256": "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02",
"dest": "cargo/vendor/cfg-expr-0.15.8"
},
{
"type": "inline",
"contents": "{\"package\": \"d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.15.8",
"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/cfg_aliases/cfg_aliases-0.1.1.crate",
"sha256": "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e",
"dest": "cargo/vendor/cfg_aliases-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e\", \"files\": {}}",
"dest": "cargo/vendor/cfg_aliases-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color_quant/color_quant-1.1.0.crate",
"sha256": "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b",
"dest": "cargo/vendor/color_quant-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b\", \"files\": {}}",
"dest": "cargo/vendor/color_quant-1.1.0",
"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/cpufeatures/cpufeatures-0.2.12.crate",
"sha256": "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504",
"dest": "cargo/vendor/cpufeatures-0.2.12"
},
{
"type": "inline",
"contents": "{\"package\": \"53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.4.0.crate",
"sha256": "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa",
"dest": "cargo/vendor/crc32fast-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.5.crate",
"sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d",
"dest": "cargo/vendor/crossbeam-deque-0.8.5"
},
{
"type": "inline",
"contents": "{\"package\": \"613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.18.crate",
"sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18"
},
{
"type": "inline",
"contents": "{\"package\": \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.19.crate",
"sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345",
"dest": "cargo/vendor/crossbeam-utils-0.8.19"
},
{
"type": "inline",
"contents": "{\"package\": \"248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crunchy/crunchy-0.2.2.crate",
"sha256": "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7",
"dest": "cargo/vendor/crunchy-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7\", \"files\": {}}",
"dest": "cargo/vendor/crunchy-0.2.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/data-url/data-url-0.3.1.crate",
"sha256": "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a",
"dest": "cargo/vendor/data-url-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a\", \"files\": {}}",
"dest": "cargo/vendor/data-url-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/derivative/derivative-2.2.0.crate",
"sha256": "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b",
"dest": "cargo/vendor/derivative-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b\", \"files\": {}}",
"dest": "cargo/vendor/derivative-2.2.0",
"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/either/either-1.11.0.crate",
"sha256": "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2",
"dest": "cargo/vendor/either-1.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2\", \"files\": {}}",
"dest": "cargo/vendor/either-1.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/endi/endi-1.1.0.crate",
"sha256": "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf",
"dest": "cargo/vendor/endi-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf\", \"files\": {}}",
"dest": "cargo/vendor/endi-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2/enumflags2-0.7.9.crate",
"sha256": "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d",
"dest": "cargo/vendor/enumflags2-0.7.9"
},
{
"type": "inline",
"contents": "{\"package\": \"3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2-0.7.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.7.9.crate",
"sha256": "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4",
"dest": "cargo/vendor/enumflags2_derive-0.7.9"
},
{
"type": "inline",
"contents": "{\"package\": \"5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2_derive-0.7.9",
"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.8.crate",
"sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245",
"dest": "cargo/vendor/errno-0.3.8"
},
{
"type": "inline",
"contents": "{\"package\": \"a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.3.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/event-listener/event-listener-4.0.3.crate",
"sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e",
"dest": "cargo/vendor/event-listener-4.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e\", \"files\": {}}",
"dest": "cargo/vendor/event-listener-4.0.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/event-listener/event-listener-5.3.0.crate",
"sha256": "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24",
"dest": "cargo/vendor/event-listener-5.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24\", \"files\": {}}",
"dest": "cargo/vendor/event-listener-5.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/event-listener-strategy/event-listener-strategy-0.4.0.crate",
"sha256": "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3",
"dest": "cargo/vendor/event-listener-strategy-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3\", \"files\": {}}",
"dest": "cargo/vendor/event-listener-strategy-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/event-listener-strategy/event-listener-strategy-0.5.2.crate",
"sha256": "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1",
"dest": "cargo/vendor/event-listener-strategy-0.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1\", \"files\": {}}",
"dest": "cargo/vendor/event-listener-strategy-0.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/exr/exr-1.72.0.crate",
"sha256": "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4",
"dest": "cargo/vendor/exr-1.72.0"
},
{
"type": "inline",
"contents": "{\"package\": \"887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4\", \"files\": {}}",
"dest": "cargo/vendor/exr-1.72.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-2.0.2.crate",
"sha256": "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984",
"dest": "cargo/vendor/fastrand-2.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-2.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.4.crate",
"sha256": "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645",
"dest": "cargo/vendor/fdeflate-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645\", \"files\": {}}",
"dest": "cargo/vendor/fdeflate-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/field-offset/field-offset-0.3.6.crate",
"sha256": "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f",
"dest": "cargo/vendor/field-offset-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f\", \"files\": {}}",
"dest": "cargo/vendor/field-offset-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.29.crate",
"sha256": "4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7",
"dest": "cargo/vendor/flate2-1.0.29"
},
{
"type": "inline",
"contents": "{\"package\": \"4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.29",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/float-cmp/float-cmp-0.9.0.crate",
"sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4",
"dest": "cargo/vendor/float-cmp-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4\", \"files\": {}}",
"dest": "cargo/vendor/float-cmp-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flume/flume-0.11.0.crate",
"sha256": "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181",
"dest": "cargo/vendor/flume-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181\", \"files\": {}}",
"dest": "cargo/vendor/flume-0.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fontconfig-parser/fontconfig-parser-0.5.6.crate",
"sha256": "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d",
"dest": "cargo/vendor/fontconfig-parser-0.5.6"
},
{
"type": "inline",
"contents": "{\"package\": \"6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d\", \"files\": {}}",
"dest": "cargo/vendor/fontconfig-parser-0.5.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fontdb/fontdb-0.18.0.crate",
"sha256": "e32eac81c1135c1df01d4e6d4233c47ba11f6a6d07f33e0bba09d18797077770",
"dest": "cargo/vendor/fontdb-0.18.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e32eac81c1135c1df01d4e6d4233c47ba11f6a6d07f33e0bba09d18797077770\", \"files\": {}}",
"dest": "cargo/vendor/fontdb-0.18.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.2.1.crate",
"sha256": "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456",
"dest": "cargo/vendor/form_urlencoded-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.30.crate",
"sha256": "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78",
"dest": "cargo/vendor/futures-channel-0.3.30"
},
{
"type": "inline",
"contents": "{\"package\": \"eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78\", \"files\": {}}",
"dest": "cargo/vendor/futures-channel-0.3.30",