-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcef-rs-cargo-sources.json
More file actions
7652 lines (7652 loc) · 321 KB
/
cef-rs-cargo-sources.json
File metadata and controls
7652 lines (7652 loc) · 321 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/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/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/adler32/adler32-1.2.0.crate",
"sha256": "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234",
"dest": "cargo/vendor/adler32-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234\", \"files\": {}}",
"dest": "cargo/vendor/adler32-1.2.0",
"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/aho-corasick/aho-corasick-1.1.4.crate",
"sha256": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301",
"dest": "cargo/vendor/aho-corasick-1.1.4"
},
{
"type": "inline",
"contents": "{\"package\": \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.4",
"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/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/anstream/anstream-0.6.21.crate",
"sha256": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a",
"dest": "cargo/vendor/anstream-0.6.21"
},
{
"type": "inline",
"contents": "{\"package\": \"43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.13.crate",
"sha256": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78",
"dest": "cargo/vendor/anstyle-1.0.13"
},
{
"type": "inline",
"contents": "{\"package\": \"5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.13",
"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.5.crate",
"sha256": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc",
"dest": "cargo/vendor/anstyle-query-1.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.11.crate",
"sha256": "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d",
"dest": "cargo/vendor/anstyle-wincon-3.0.11"
},
{
"type": "inline",
"contents": "{\"package\": \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.102.crate",
"sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c",
"dest": "cargo/vendor/anyhow-1.0.102"
},
{
"type": "inline",
"contents": "{\"package\": \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.102",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arraydeque/arraydeque-0.5.1.crate",
"sha256": "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236",
"dest": "cargo/vendor/arraydeque-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236\", \"files\": {}}",
"dest": "cargo/vendor/arraydeque-0.5.1",
"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/async-compression/async-compression-0.4.41.crate",
"sha256": "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1",
"dest": "cargo/vendor/async-compression-0.4.41"
},
{
"type": "inline",
"contents": "{\"package\": \"d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1\", \"files\": {}}",
"dest": "cargo/vendor/async-compression-0.4.41",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-stream/async-stream-0.3.6.crate",
"sha256": "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476",
"dest": "cargo/vendor/async-stream-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-stream-impl/async-stream-impl-0.3.6.crate",
"sha256": "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d",
"dest": "cargo/vendor/async-stream-impl-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-impl-0.3.6",
"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/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/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/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/bincode/bincode-2.0.1.crate",
"sha256": "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740",
"dest": "cargo/vendor/bincode-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740\", \"files\": {}}",
"dest": "cargo/vendor/bincode-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bincode_derive/bincode_derive-2.0.1.crate",
"sha256": "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09",
"dest": "cargo/vendor/bincode_derive-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09\", \"files\": {}}",
"dest": "cargo/vendor/bincode_derive-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bindgen/bindgen-0.72.1.crate",
"sha256": "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895",
"dest": "cargo/vendor/bindgen-0.72.1"
},
{
"type": "inline",
"contents": "{\"package\": \"993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895\", \"files\": {}}",
"dest": "cargo/vendor/bindgen-0.72.1",
"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/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.11.0.crate",
"sha256": "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af",
"dest": "cargo/vendor/bitflags-2.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.11.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/block2/block2-0.6.2.crate",
"sha256": "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5",
"dest": "cargo/vendor/block2-0.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5\", \"files\": {}}",
"dest": "cargo/vendor/block2-0.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-1.12.1.crate",
"sha256": "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab",
"dest": "cargo/vendor/bstr-1.12.1"
},
{
"type": "inline",
"contents": "{\"package\": \"63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.12.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.20.2.crate",
"sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb",
"dest": "cargo/vendor/bumpalo-3.20.2"
},
{
"type": "inline",
"contents": "{\"package\": \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.20.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.25.0.crate",
"sha256": "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec",
"dest": "cargo/vendor/bytemuck-1.25.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.25.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/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.11.1.crate",
"sha256": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33",
"dest": "cargo/vendor/bytes-1.11.1"
},
{
"type": "inline",
"contents": "{\"package\": \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.11.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2/bzip2-0.6.1.crate",
"sha256": "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c",
"dest": "cargo/vendor/bzip2-0.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-0.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cacache/cacache-13.1.0.crate",
"sha256": "5c5063741c7b2e260bbede781cf4679632dd90e2718e99f7715e46824b65670b",
"dest": "cargo/vendor/cacache-13.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5c5063741c7b2e260bbede781cf4679632dd90e2718e99f7715e46824b65670b\", \"files\": {}}",
"dest": "cargo/vendor/cacache-13.1.0",
"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/camino/camino-1.2.2.crate",
"sha256": "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48",
"dest": "cargo/vendor/camino-1.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48\", \"files\": {}}",
"dest": "cargo/vendor/camino-1.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-platform/cargo-platform-0.3.2.crate",
"sha256": "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082",
"dest": "cargo/vendor/cargo-platform-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082\", \"files\": {}}",
"dest": "cargo/vendor/cargo-platform-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo_metadata/cargo_metadata-0.23.1.crate",
"sha256": "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9",
"dest": "cargo/vendor/cargo_metadata-0.23.1"
},
{
"type": "inline",
"contents": "{\"package\": \"ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9\", \"files\": {}}",
"dest": "cargo/vendor/cargo_metadata-0.23.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.2.56.crate",
"sha256": "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2",
"dest": "cargo/vendor/cc-1.2.56"
},
{
"type": "inline",
"contents": "{\"package\": \"aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.2.56",
"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/cexpr/cexpr-0.6.0.crate",
"sha256": "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766",
"dest": "cargo/vendor/cexpr-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766\", \"files\": {}}",
"dest": "cargo/vendor/cexpr-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.20.6.crate",
"sha256": "78cef5b5a1a6827c7322ae2a636368a573006b27cfa76c7ebd53e834daeaab6a",
"dest": "cargo/vendor/cfg-expr-0.20.6"
},
{
"type": "inline",
"contents": "{\"package\": \"78cef5b5a1a6827c7322ae2a636368a573006b27cfa76c7ebd53e834daeaab6a\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.20.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.4.crate",
"sha256": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801",
"dest": "cargo/vendor/cfg-if-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.4",
"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/cgl/cgl-0.3.2.crate",
"sha256": "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff",
"dest": "cargo/vendor/cgl-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff\", \"files\": {}}",
"dest": "cargo/vendor/cgl-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono/chrono-0.4.44.crate",
"sha256": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0",
"dest": "cargo/vendor/chrono-0.4.44"
},
{
"type": "inline",
"contents": "{\"package\": \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.44",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono-tz/chrono-tz-0.9.0.crate",
"sha256": "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb",
"dest": "cargo/vendor/chrono-tz-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb\", \"files\": {}}",
"dest": "cargo/vendor/chrono-tz-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono-tz-build/chrono-tz-build-0.3.0.crate",
"sha256": "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1",
"dest": "cargo/vendor/chrono-tz-build-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1\", \"files\": {}}",
"dest": "cargo/vendor/chrono-tz-build-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clang-sys/clang-sys-1.8.1.crate",
"sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4",
"dest": "cargo/vendor/clang-sys-1.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4\", \"files\": {}}",
"dest": "cargo/vendor/clang-sys-1.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.5.60.crate",
"sha256": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a",
"dest": "cargo/vendor/clap-4.5.60"
},
{
"type": "inline",
"contents": "{\"package\": \"2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.5.60",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_builder/clap_builder-4.5.60.crate",
"sha256": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876",
"dest": "cargo/vendor/clap_builder-4.5.60"
},
{
"type": "inline",
"contents": "{\"package\": \"24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876\", \"files\": {}}",
"dest": "cargo/vendor/clap_builder-4.5.60",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_complete/clap_complete-4.5.66.crate",
"sha256": "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031",
"dest": "cargo/vendor/clap_complete-4.5.66"
},
{
"type": "inline",
"contents": "{\"package\": \"c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031\", \"files\": {}}",
"dest": "cargo/vendor/clap_complete-4.5.66",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.5.55.crate",
"sha256": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5",
"dest": "cargo/vendor/clap_derive-4.5.55"
},
{
"type": "inline",
"contents": "{\"package\": \"a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.5.55",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-1.0.0.crate",
"sha256": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831",
"dest": "cargo/vendor/clap_lex-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_mangen/clap_mangen-0.2.31.crate",
"sha256": "439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301",
"dest": "cargo/vendor/clap_mangen-0.2.31"
},
{
"type": "inline",
"contents": "{\"package\": \"439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301\", \"files\": {}}",
"dest": "cargo/vendor/clap_mangen-0.2.31",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cmake/cmake-0.1.57.crate",
"sha256": "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d",
"dest": "cargo/vendor/cmake-0.1.57"
},
{
"type": "inline",
"contents": "{\"package\": \"75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d\", \"files\": {}}",
"dest": "cargo/vendor/cmake-0.1.57",
"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/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/compression-codecs/compression-codecs-0.4.37.crate",
"sha256": "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7",
"dest": "cargo/vendor/compression-codecs-0.4.37"
},
{
"type": "inline",
"contents": "{\"package\": \"eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7\", \"files\": {}}",
"dest": "cargo/vendor/compression-codecs-0.4.37",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/compression-core/compression-core-0.4.31.crate",
"sha256": "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d",
"dest": "cargo/vendor/compression-core-0.4.31"
},
{
"type": "inline",
"contents": "{\"package\": \"75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d\", \"files\": {}}",
"dest": "cargo/vendor/compression-core-0.4.31",