This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcargo-sources.json
More file actions
6663 lines (6663 loc) · 320 KB
/
cargo-sources.json
File metadata and controls
6663 lines (6663 loc) · 320 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": "git",
"url": "https://github.com/iced-rs/cryoglyph",
"commit": "453cedec0d2ec563bd7fa87e84a2319bcebb1ba3",
"dest": "flatpak-cargo/git/cryoglyph-453cede"
},
{
"type": "git",
"url": "https://github.com/iced-rs/winit",
"commit": "05b8ff17a06562f0a10bb46e6eaacbe2a95cb5ed",
"dest": "flatpak-cargo/git/winit-05b8ff1"
},
{
"type": "git",
"url": "https://github.com/iced-rs/iced",
"commit": "01429d72cdd1a962ca19544f1aa4798cf8b774a8",
"dest": "flatpak-cargo/git/iced-01429d7"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ab_glyph/ab_glyph-0.2.32.crate",
"sha256": "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2",
"dest": "cargo/vendor/ab_glyph-0.2.32"
},
{
"type": "inline",
"contents": "{\"package\": \"01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2\", \"files\": {}}",
"dest": "cargo/vendor/ab_glyph-0.2.32",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ab_glyph_rasterizer/ab_glyph_rasterizer-0.1.10.crate",
"sha256": "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.10"
},
{
"type": "inline",
"contents": "{\"package\": \"366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618\", \"files\": {}}",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/addr2line/addr2line-0.25.1.crate",
"sha256": "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b",
"dest": "cargo/vendor/addr2line-0.25.1"
},
{
"type": "inline",
"contents": "{\"package\": \"1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.25.1",
"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/ahash/ahash-0.8.12.crate",
"sha256": "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75",
"dest": "cargo/vendor/ahash-0.8.12"
},
{
"type": "inline",
"contents": "{\"package\": \"5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aligned-vec/aligned-vec-0.6.4.crate",
"sha256": "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b",
"dest": "cargo/vendor/aligned-vec-0.6.4"
},
{
"type": "inline",
"contents": "{\"package\": \"dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b\", \"files\": {}}",
"dest": "cargo/vendor/aligned-vec-0.6.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-activity/android-activity-0.6.0.crate",
"sha256": "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046",
"dest": "cargo/vendor/android-activity-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046\", \"files\": {}}",
"dest": "cargo/vendor/android-activity-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-properties/android-properties-0.2.2.crate",
"sha256": "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04",
"dest": "cargo/vendor/android-properties-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04\", \"files\": {}}",
"dest": "cargo/vendor/android-properties-0.2.2",
"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/anyhow/anyhow-1.0.100.crate",
"sha256": "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61",
"dest": "cargo/vendor/anyhow-1.0.100"
},
{
"type": "inline",
"contents": "{\"package\": \"a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.100",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anywho/anywho-0.1.2.crate",
"sha256": "6136f131067f7e821582add37f0823fdba4dbdd8506833c1fd4b0e60a4ddaaf2",
"dest": "cargo/vendor/anywho-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"6136f131067f7e821582add37f0823fdba4dbdd8506833c1fd4b0e60a4ddaaf2\", \"files\": {}}",
"dest": "cargo/vendor/anywho-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arbitrary/arbitrary-1.4.2.crate",
"sha256": "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1",
"dest": "cargo/vendor/arbitrary-1.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\", \"files\": {}}",
"dest": "cargo/vendor/arbitrary-1.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arc-swap/arc-swap-1.7.1.crate",
"sha256": "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457",
"dest": "cargo/vendor/arc-swap-1.7.1"
},
{
"type": "inline",
"contents": "{\"package\": \"69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457\", \"files\": {}}",
"dest": "cargo/vendor/arc-swap-1.7.1",
"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.9.crate",
"sha256": "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb",
"dest": "cargo/vendor/arrayref-0.3.9"
},
{
"type": "inline",
"contents": "{\"package\": \"76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.9",
"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/as-raw-xcb-connection/as-raw-xcb-connection-1.0.1.crate",
"sha256": "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b",
"dest": "cargo/vendor/as-raw-xcb-connection-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b\", \"files\": {}}",
"dest": "cargo/vendor/as-raw-xcb-connection-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ash/ash-0.38.0+1.3.281.crate",
"sha256": "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f",
"dest": "cargo/vendor/ash-0.38.0+1.3.281"
},
{
"type": "inline",
"contents": "{\"package\": \"0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f\", \"files\": {}}",
"dest": "cargo/vendor/ash-0.38.0+1.3.281",
"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.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/av1-grain/av1-grain-0.2.4.crate",
"sha256": "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8",
"dest": "cargo/vendor/av1-grain-0.2.4"
},
{
"type": "inline",
"contents": "{\"package\": \"4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8\", \"files\": {}}",
"dest": "cargo/vendor/av1-grain-0.2.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/avif-serialize/avif-serialize-0.8.6.crate",
"sha256": "47c8fbc0f831f4519fe8b810b6a7a91410ec83031b8233f730a0480029f6a23f",
"dest": "cargo/vendor/avif-serialize-0.8.6"
},
{
"type": "inline",
"contents": "{\"package\": \"47c8fbc0f831f4519fe8b810b6a7a91410ec83031b8233f730a0480029f6a23f\", \"files\": {}}",
"dest": "cargo/vendor/avif-serialize-0.8.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.76.crate",
"sha256": "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6",
"dest": "cargo/vendor/backtrace-0.3.76"
},
{
"type": "inline",
"contents": "{\"package\": \"bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.76",
"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/basic-toml/basic-toml-0.1.10.crate",
"sha256": "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a",
"dest": "cargo/vendor/basic-toml-0.1.10"
},
{
"type": "inline",
"contents": "{\"package\": \"ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a\", \"files\": {}}",
"dest": "cargo/vendor/basic-toml-0.1.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bincode/bincode-1.3.3.crate",
"sha256": "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad",
"dest": "cargo/vendor/bincode-1.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\", \"files\": {}}",
"dest": "cargo/vendor/bincode-1.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-set/bit-set-0.8.0.crate",
"sha256": "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3",
"dest": "cargo/vendor/bit-set-0.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3\", \"files\": {}}",
"dest": "cargo/vendor/bit-set-0.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-vec/bit-vec-0.8.0.crate",
"sha256": "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7",
"dest": "cargo/vendor/bit-vec-0.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7\", \"files\": {}}",
"dest": "cargo/vendor/bit-vec-0.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit_field/bit_field-0.10.3.crate",
"sha256": "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6",
"dest": "cargo/vendor/bit_field-0.10.3"
},
{
"type": "inline",
"contents": "{\"package\": \"1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6\", \"files\": {}}",
"dest": "cargo/vendor/bit_field-0.10.3",
"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.4.crate",
"sha256": "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394",
"dest": "cargo/vendor/bitflags-2.9.4"
},
{
"type": "inline",
"contents": "{\"package\": \"2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.9.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitstream-io/bitstream-io-2.6.0.crate",
"sha256": "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2",
"dest": "cargo/vendor/bitstream-io-2.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2\", \"files\": {}}",
"dest": "cargo/vendor/bitstream-io-2.6.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/block2/block2-0.5.1.crate",
"sha256": "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f",
"dest": "cargo/vendor/block2-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f\", \"files\": {}}",
"dest": "cargo/vendor/block2-0.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/built/built-0.7.7.crate",
"sha256": "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b",
"dest": "cargo/vendor/built-0.7.7"
},
{
"type": "inline",
"contents": "{\"package\": \"56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b\", \"files\": {}}",
"dest": "cargo/vendor/built-0.7.7",
"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.24.0.crate",
"sha256": "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4",
"dest": "cargo/vendor/bytemuck-1.24.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.24.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.10.2.crate",
"sha256": "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff",
"dest": "cargo/vendor/bytemuck_derive-1.10.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck_derive-1.10.2",
"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/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/calloop/calloop-0.13.0.crate",
"sha256": "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec",
"dest": "cargo/vendor/calloop-0.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec\", \"files\": {}}",
"dest": "cargo/vendor/calloop-0.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/calloop-wayland-source/calloop-wayland-source-0.3.0.crate",
"sha256": "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20",
"dest": "cargo/vendor/calloop-wayland-source-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20\", \"files\": {}}",
"dest": "cargo/vendor/calloop-wayland-source-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.2.41.crate",
"sha256": "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7",
"dest": "cargo/vendor/cc-1.2.41"
},
{
"type": "inline",
"contents": "{\"package\": \"ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.2.41",
"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.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.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/clipboard-win/clipboard-win-5.4.1.crate",
"sha256": "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4",
"dest": "cargo/vendor/clipboard-win-5.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4\", \"files\": {}}",
"dest": "cargo/vendor/clipboard-win-5.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clipboard_macos/clipboard_macos-0.1.1.crate",
"sha256": "9b7f4aaa047ba3c3630b080bb9860894732ff23e2aee290a418909aa6d5df38f",
"dest": "cargo/vendor/clipboard_macos-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9b7f4aaa047ba3c3630b080bb9860894732ff23e2aee290a418909aa6d5df38f\", \"files\": {}}",
"dest": "cargo/vendor/clipboard_macos-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clipboard_wayland/clipboard_wayland-0.2.2.crate",
"sha256": "003f886bc4e2987729d10c1db3424e7f80809f3fc22dbc16c685738887cb37b8",
"dest": "cargo/vendor/clipboard_wayland-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"003f886bc4e2987729d10c1db3424e7f80809f3fc22dbc16c685738887cb37b8\", \"files\": {}}",
"dest": "cargo/vendor/clipboard_wayland-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clipboard_x11/clipboard_x11-0.4.2.crate",
"sha256": "4274ea815e013e0f9f04a2633423e14194e408a0576c943ce3d14ca56c50031c",
"dest": "cargo/vendor/clipboard_x11-0.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"4274ea815e013e0f9f04a2633423e14194e408a0576c943ce3d14ca56c50031c\", \"files\": {}}",
"dest": "cargo/vendor/clipboard_x11-0.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/codespan-reporting/codespan-reporting-0.12.0.crate",
"sha256": "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81",
"dest": "cargo/vendor/codespan-reporting-0.12.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81\", \"files\": {}}",
"dest": "cargo/vendor/codespan-reporting-0.12.0",
"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/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/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/core-foundation-0.10.1.crate",
"sha256": "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6",
"dest": "cargo/vendor/core-foundation-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.10.1",
"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/core-graphics/core-graphics-0.23.2.crate",
"sha256": "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081",
"dest": "cargo/vendor/core-graphics-0.23.2"
},
{
"type": "inline",
"contents": "{\"package\": \"c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-0.23.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics/core-graphics-0.24.0.crate",
"sha256": "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1",
"dest": "cargo/vendor/core-graphics-0.24.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-0.24.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.1.3.crate",
"sha256": "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf",
"dest": "cargo/vendor/core-graphics-types-0.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-types-0.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.2.0.crate",
"sha256": "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb",
"dest": "cargo/vendor/core-graphics-types-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-types-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cosmic-text/cosmic-text-0.14.2.crate",
"sha256": "da46a9d5a8905cc538a4a5bceb6a4510de7a51049c5588c0114efce102bcbbe8",
"dest": "cargo/vendor/cosmic-text-0.14.2"
},
{
"type": "inline",
"contents": "{\"package\": \"da46a9d5a8905cc538a4a5bceb6a4510de7a51049c5588c0114efce102bcbbe8\", \"files\": {}}",
"dest": "cargo/vendor/cosmic-text-0.14.2",
"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-deque/crossbeam-deque-0.8.6.crate",
"sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51",
"dest": "cargo/vendor/crossbeam-deque-0.8.6"
},
{
"type": "inline",
"contents": "{\"package\": \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.6",
"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.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/crunchy/crunchy-0.2.4.crate",
"sha256": "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5",
"dest": "cargo/vendor/crunchy-0.2.4"
},
{
"type": "inline",
"contents": "{\"package\": \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\", \"files\": {}}",
"dest": "cargo/vendor/crunchy-0.2.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "shell",
"commands": [
"cp -r --reflink=auto \"flatpak-cargo/git/cryoglyph-453cede/.\" \"cargo/vendor/cryoglyph\""
]
},
{
"type": "inline",
"contents": "[package]\nname = \"cryoglyph\"\ndescription = \"Fast, simple 2D text rendering for wgpu\"\nversion = \"0.1.0\"\nedition = \"2024\"\nrepository = \"https://github.com/iced-rs/cryoglyph\"\nlicense = \"MIT OR Apache-2.0 OR Zlib\"\n\n[dependencies]\netagere = \"0.2\"\ncosmic-text = \"0.14\"\nrustc-hash = \"2\"\n\n[dependencies.wgpu]\nversion = \"26\"\ndefault-features = false\nfeatures = [\"wgsl\"]\n\n[dependencies.lru]\nversion = \"0.16\"\ndefault-features = false\n\n[dev-dependencies]\nwinit = \"0.30\"\npollster = \"0.4\"\n\n[dev-dependencies.criterion]\nversion = \"0.5\"\nfeatures = [\"html_reports\"]\n\n[[bench]]\nname = \"prepare\"\nharness = false\n",
"dest": "cargo/vendor/cryoglyph",
"dest-filename": "Cargo.toml"
},
{
"type": "inline",
"contents": "{\"package\": null, \"files\": {}}",
"dest": "cargo/vendor/cryoglyph",
"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/ctor-lite/ctor-lite-0.1.0.crate",
"sha256": "1f791803201ab277ace03903de1594460708d2d54df6053f2d9e82f592b19e3b",
"dest": "cargo/vendor/ctor-lite-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1f791803201ab277ace03903de1594460708d2d54df6053f2d9e82f592b19e3b\", \"files\": {}}",
"dest": "cargo/vendor/ctor-lite-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cursor-icon/cursor-icon-1.2.0.crate",
"sha256": "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f",
"dest": "cargo/vendor/cursor-icon-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f\", \"files\": {}}",
"dest": "cargo/vendor/cursor-icon-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/data-url/data-url-0.3.2.crate",
"sha256": "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376",
"dest": "cargo/vendor/data-url-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376\", \"files\": {}}",
"dest": "cargo/vendor/data-url-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{