-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcskk-cargo-sources.json
More file actions
5351 lines (5351 loc) · 224 KB
/
Copy pathcskk-cargo-sources.json
File metadata and controls
5351 lines (5351 loc) · 224 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/adler2/adler2-2.0.0.crate",
"sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627",
"dest": "cargo/vendor/adler2-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627\", \"files\": {}}",
"dest": "cargo/vendor/adler2-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.8.11.crate",
"sha256": "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011",
"dest": "cargo/vendor/ahash-0.8.11"
},
{
"type": "inline",
"contents": "{\"package\": \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.3.crate",
"sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916",
"dest": "cargo/vendor/aho-corasick-1.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.21.crate",
"sha256": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923",
"dest": "cargo/vendor/allocator-api2-0.2.21"
},
{
"type": "inline",
"contents": "{\"package\": \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\", \"files\": {}}",
"dest": "cargo/vendor/allocator-api2-0.2.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-tzdata/android-tzdata-0.1.1.crate",
"sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
"dest": "cargo/vendor/android-tzdata-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0\", \"files\": {}}",
"dest": "cargo/vendor/android-tzdata-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate",
"sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
"dest": "cargo/vendor/android_system_properties-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}",
"dest": "cargo/vendor/android_system_properties-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/annotate-snippets/annotate-snippets-0.11.5.crate",
"sha256": "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4",
"dest": "cargo/vendor/annotate-snippets-0.11.5"
},
{
"type": "inline",
"contents": "{\"package\": \"710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4\", \"files\": {}}",
"dest": "cargo/vendor/annotate-snippets-0.11.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstream/anstream-0.6.18.crate",
"sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b",
"dest": "cargo/vendor/anstream-0.6.18"
},
{
"type": "inline",
"contents": "{\"package\": \"8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.10.crate",
"sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9",
"dest": "cargo/vendor/anstyle-1.0.10"
},
{
"type": "inline",
"contents": "{\"package\": \"55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.6.crate",
"sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9",
"dest": "cargo/vendor/anstyle-parse-0.2.6"
},
{
"type": "inline",
"contents": "{\"package\": \"3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.1.2.crate",
"sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c",
"dest": "cargo/vendor/anstyle-query-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.7.crate",
"sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e",
"dest": "cargo/vendor/anstyle-wincon-3.0.7"
},
{
"type": "inline",
"contents": "{\"package\": \"ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.7",
"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/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/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/autocfg/autocfg-1.4.0.crate",
"sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26",
"dest": "cargo/vendor/autocfg-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base16ct/base16ct-0.2.0.crate",
"sha256": "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf",
"dest": "cargo/vendor/base16ct-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\", \"files\": {}}",
"dest": "cargo/vendor/base16ct-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.22.1.crate",
"sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6",
"dest": "cargo/vendor/base64-0.22.1"
},
{
"type": "inline",
"contents": "{\"package\": \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.22.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64ct/base64ct-1.7.3.crate",
"sha256": "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3",
"dest": "cargo/vendor/base64ct-1.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3\", \"files\": {}}",
"dest": "cargo/vendor/base64ct-1.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-2.10.0.crate",
"sha256": "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3",
"dest": "cargo/vendor/bitflags-2.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitmaps/bitmaps-2.1.0.crate",
"sha256": "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2",
"dest": "cargo/vendor/bitmaps-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2\", \"files\": {}}",
"dest": "cargo/vendor/bitmaps-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blake3/blake3-1.8.1.crate",
"sha256": "389a099b34312839e16420d499a9cad9650541715937ffbdd40d36f49e77eeb3",
"dest": "cargo/vendor/blake3-1.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"389a099b34312839e16420d499a9cad9650541715937ffbdd40d36f49e77eeb3\", \"files\": {}}",
"dest": "cargo/vendor/blake3-1.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
"dest": "cargo/vendor/block-buffer-0.10.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-1.11.3.crate",
"sha256": "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0",
"dest": "cargo/vendor/bstr-1.11.3"
},
{
"type": "inline",
"contents": "{\"package\": \"531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.11.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.17.0.crate",
"sha256": "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf",
"dest": "cargo/vendor/bumpalo-3.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.17.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/bytesize/bytesize-1.3.3.crate",
"sha256": "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659",
"dest": "cargo/vendor/bytesize-1.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659\", \"files\": {}}",
"dest": "cargo/vendor/bytesize-1.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo/cargo-0.87.0.crate",
"sha256": "cc9ec675923420ee62d9ab7aca09ef5c45b0c901df4a84963e979f9cc668a4f2",
"dest": "cargo/vendor/cargo-0.87.0"
},
{
"type": "inline",
"contents": "{\"package\": \"cc9ec675923420ee62d9ab7aca09ef5c45b0c901df4a84963e979f9cc668a4f2\", \"files\": {}}",
"dest": "cargo/vendor/cargo-0.87.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-c/cargo-c-0.10.12+cargo-0.87.0.crate",
"sha256": "3c49cf7d25ae135d955c0731d783293d638b0be5dd6ef26e400980e6f1643479",
"dest": "cargo/vendor/cargo-c-0.10.12+cargo-0.87.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3c49cf7d25ae135d955c0731d783293d638b0be5dd6ef26e400980e6f1643479\", \"files\": {}}",
"dest": "cargo/vendor/cargo-c-0.10.12+cargo-0.87.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-credential/cargo-credential-0.4.8.crate",
"sha256": "ac1ef5080adde1db190e901884d2c400990856c2a23201c5a181b910a6dbdf2a",
"dest": "cargo/vendor/cargo-credential-0.4.8"
},
{
"type": "inline",
"contents": "{\"package\": \"ac1ef5080adde1db190e901884d2c400990856c2a23201c5a181b910a6dbdf2a\", \"files\": {}}",
"dest": "cargo/vendor/cargo-credential-0.4.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-credential-libsecret/cargo-credential-libsecret-0.4.12.crate",
"sha256": "e8d8dbc26ce815b430803e756f6ad5f70a67d47bfcde9ca6f4276732c39551b8",
"dest": "cargo/vendor/cargo-credential-libsecret-0.4.12"
},
{
"type": "inline",
"contents": "{\"package\": \"e8d8dbc26ce815b430803e756f6ad5f70a67d47bfcde9ca6f4276732c39551b8\", \"files\": {}}",
"dest": "cargo/vendor/cargo-credential-libsecret-0.4.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-credential-macos-keychain/cargo-credential-macos-keychain-0.4.12.crate",
"sha256": "b489cbdae63be32c040b5fe81b0f7725e563bcd805bb828e746971a4967aaf28",
"dest": "cargo/vendor/cargo-credential-macos-keychain-0.4.12"
},
{
"type": "inline",
"contents": "{\"package\": \"b489cbdae63be32c040b5fe81b0f7725e563bcd805bb828e746971a4967aaf28\", \"files\": {}}",
"dest": "cargo/vendor/cargo-credential-macos-keychain-0.4.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-credential-wincred/cargo-credential-wincred-0.4.12.crate",
"sha256": "49c6cb2255a5267a4d18077bc436db5a2c261d97a3dcbc84ccd9747b473b2f4b",
"dest": "cargo/vendor/cargo-credential-wincred-0.4.12"
},
{
"type": "inline",
"contents": "{\"package\": \"49c6cb2255a5267a4d18077bc436db5a2c261d97a3dcbc84ccd9747b473b2f4b\", \"files\": {}}",
"dest": "cargo/vendor/cargo-credential-wincred-0.4.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-platform/cargo-platform-0.2.0.crate",
"sha256": "84982c6c0ae343635a3a4ee6dedef965513735c8b183caa7289fa6e27399ebd4",
"dest": "cargo/vendor/cargo-platform-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"84982c6c0ae343635a3a4ee6dedef965513735c8b183caa7289fa6e27399ebd4\", \"files\": {}}",
"dest": "cargo/vendor/cargo-platform-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-util/cargo-util-0.2.19.crate",
"sha256": "527f6e2a4e80492e90628052be879a5996c2453ad5ec745bfa310a80b7eca20a",
"dest": "cargo/vendor/cargo-util-0.2.19"
},
{
"type": "inline",
"contents": "{\"package\": \"527f6e2a4e80492e90628052be879a5996c2453ad5ec745bfa310a80b7eca20a\", \"files\": {}}",
"dest": "cargo/vendor/cargo-util-0.2.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo-util-schemas/cargo-util-schemas-0.7.3.crate",
"sha256": "4d2af4d048b76b1144c58ad66a27b05973a574cefe4999cfd2ebf5cd50213bfd",
"dest": "cargo/vendor/cargo-util-schemas-0.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"4d2af4d048b76b1144c58ad66a27b05973a574cefe4999cfd2ebf5cd50213bfd\", \"files\": {}}",
"dest": "cargo/vendor/cargo-util-schemas-0.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cbindgen/cbindgen-0.28.0.crate",
"sha256": "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff",
"dest": "cargo/vendor/cbindgen-0.28.0"
},
{
"type": "inline",
"contents": "{\"package\": \"eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff\", \"files\": {}}",
"dest": "cargo/vendor/cbindgen-0.28.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.2.18.crate",
"sha256": "525046617d8376e3db1deffb079e91cef90a89fc3ca5c185bbf8c9ecdd15cd5c",
"dest": "cargo/vendor/cc-1.2.18"
},
{
"type": "inline",
"contents": "{\"package\": \"525046617d8376e3db1deffb079e91cef90a89fc3ca5c185bbf8c9ecdd15cd5c\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.2.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
"dest": "cargo/vendor/cfg-if-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono/chrono-0.4.40.crate",
"sha256": "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c",
"dest": "cargo/vendor/chrono-0.4.40"
},
{
"type": "inline",
"contents": "{\"package\": \"1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.40",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.5.35.crate",
"sha256": "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944",
"dest": "cargo/vendor/clap-4.5.35"
},
{
"type": "inline",
"contents": "{\"package\": \"d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.5.35",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_builder/clap_builder-4.5.35.crate",
"sha256": "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9",
"dest": "cargo/vendor/clap_builder-4.5.35"
},
{
"type": "inline",
"contents": "{\"package\": \"2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9\", \"files\": {}}",
"dest": "cargo/vendor/clap_builder-4.5.35",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_complete/clap_complete-4.5.47.crate",
"sha256": "c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6",
"dest": "cargo/vendor/clap_complete-4.5.47"
},
{
"type": "inline",
"contents": "{\"package\": \"c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6\", \"files\": {}}",
"dest": "cargo/vendor/clap_complete-4.5.47",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.5.32.crate",
"sha256": "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7",
"dest": "cargo/vendor/clap_derive-4.5.32"
},
{
"type": "inline",
"contents": "{\"package\": \"09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.5.32",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.7.4.crate",
"sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6",
"dest": "cargo/vendor/clap_lex-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.7.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clru/clru-0.6.2.crate",
"sha256": "cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59",
"dest": "cargo/vendor/clru-0.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59\", \"files\": {}}",
"dest": "cargo/vendor/clru-0.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color-print/color-print-0.3.7.crate",
"sha256": "3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4",
"dest": "cargo/vendor/color-print-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4\", \"files\": {}}",
"dest": "cargo/vendor/color-print-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color-print-proc-macro/color-print-proc-macro-0.3.7.crate",
"sha256": "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22",
"dest": "cargo/vendor/color-print-proc-macro-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22\", \"files\": {}}",
"dest": "cargo/vendor/color-print-proc-macro-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.3.crate",
"sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990",
"dest": "cargo/vendor/colorchoice-1.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990\", \"files\": {}}",
"dest": "cargo/vendor/colorchoice-1.0.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/const-oid/const-oid-0.9.6.crate",
"sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8",
"dest": "cargo/vendor/const-oid-0.9.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\", \"files\": {}}",
"dest": "cargo/vendor/const-oid-0.9.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/constant_time_eq/constant_time_eq-0.3.1.crate",
"sha256": "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6",
"dest": "cargo/vendor/constant_time_eq-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6\", \"files\": {}}",
"dest": "cargo/vendor/constant_time_eq-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation/core-foundation-0.10.0.crate",
"sha256": "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63",
"dest": "cargo/vendor/core-foundation-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.10.0",
"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/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/crates-io/crates-io-0.40.9.crate",
"sha256": "6967b9fa81bc485cf87748fdc2f8c79b922f5c59fe4f7c160329cee7fae4a314",
"dest": "cargo/vendor/crates-io-0.40.9"
},
{
"type": "inline",
"contents": "{\"package\": \"6967b9fa81bc485cf87748fdc2f8c79b922f5c59fe4f7c160329cee7fae4a314\", \"files\": {}}",
"dest": "cargo/vendor/crates-io-0.40.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.4.2.crate",
"sha256": "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3",
"dest": "cargo/vendor/crc32fast-1.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.14.crate",
"sha256": "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471",
"dest": "cargo/vendor/crossbeam-channel-0.5.14"
},
{
"type": "inline",
"contents": "{\"package\": \"06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.14",
"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/crypto-bigint/crypto-bigint-0.5.5.crate",
"sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76",
"dest": "cargo/vendor/crypto-bigint-0.5.5"
},
{
"type": "inline",
"contents": "{\"package\": \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\", \"files\": {}}",
"dest": "cargo/vendor/crypto-bigint-0.5.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crypto-common/crypto-common-0.1.6.crate",
"sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
"dest": "cargo/vendor/crypto-common-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3\", \"files\": {}}",
"dest": "cargo/vendor/crypto-common-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ct-codecs/ct-codecs-1.1.3.crate",
"sha256": "b916ba8ce9e4182696896f015e8a5ae6081b305f74690baa8465e35f5a142ea4",
"dest": "cargo/vendor/ct-codecs-1.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"b916ba8ce9e4182696896f015e8a5ae6081b305f74690baa8465e35f5a142ea4\", \"files\": {}}",
"dest": "cargo/vendor/ct-codecs-1.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl/curl-0.4.47.crate",
"sha256": "d9fb4d13a1be2b58f14d60adba57c9834b78c62fd86c3e76a148f732686e9265",
"dest": "cargo/vendor/curl-0.4.47"
},
{
"type": "inline",
"contents": "{\"package\": \"d9fb4d13a1be2b58f14d60adba57c9834b78c62fd86c3e76a148f732686e9265\", \"files\": {}}",
"dest": "cargo/vendor/curl-0.4.47",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl-sys/curl-sys-0.4.80+curl-8.12.1.crate",
"sha256": "55f7df2eac63200c3ab25bde3b2268ef2ee56af3d238e76d61f01c3c49bff734",
"dest": "cargo/vendor/curl-sys-0.4.80+curl-8.12.1"
},
{
"type": "inline",
"contents": "{\"package\": \"55f7df2eac63200c3ab25bde3b2268ef2ee56af3d238e76d61f01c3c49bff734\", \"files\": {}}",
"dest": "cargo/vendor/curl-sys-0.4.80+curl-8.12.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.20.11.crate",
"sha256": "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee",
"dest": "cargo/vendor/darling-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\", \"files\": {}}",
"dest": "cargo/vendor/darling-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_core/darling_core-0.20.11.crate",
"sha256": "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e",
"dest": "cargo/vendor/darling_core-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\", \"files\": {}}",
"dest": "cargo/vendor/darling_core-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_macro/darling_macro-0.20.11.crate",
"sha256": "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead",
"dest": "cargo/vendor/darling_macro-0.20.11"
},
{
"type": "inline",
"contents": "{\"package\": \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\", \"files\": {}}",
"dest": "cargo/vendor/darling_macro-0.20.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dbus/dbus-0.9.7.crate",
"sha256": "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b",
"dest": "cargo/vendor/dbus-0.9.7"
},
{
"type": "inline",
"contents": "{\"package\": \"1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b\", \"files\": {}}",
"dest": "cargo/vendor/dbus-0.9.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/der/der-0.7.9.crate",
"sha256": "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0",
"dest": "cargo/vendor/der-0.7.9"
},
{
"type": "inline",
"contents": "{\"package\": \"f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0\", \"files\": {}}",
"dest": "cargo/vendor/der-0.7.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/deranged/deranged-0.4.1.crate",
"sha256": "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058",
"dest": "cargo/vendor/deranged-0.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058\", \"files\": {}}",
"dest": "cargo/vendor/deranged-0.4.1",
"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/displaydoc/displaydoc-0.2.5.crate",
"sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0",
"dest": "cargo/vendor/displaydoc-0.2.5"
},
{
"type": "inline",
"contents": "{\"package\": \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\", \"files\": {}}",
"dest": "cargo/vendor/displaydoc-0.2.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dunce/dunce-1.0.5.crate",
"sha256": "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813",
"dest": "cargo/vendor/dunce-1.0.5"
},
{
"type": "inline",
"contents": "{\"package\": \"92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813\", \"files\": {}}",
"dest": "cargo/vendor/dunce-1.0.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ecdsa/ecdsa-0.16.9.crate",
"sha256": "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca",
"dest": "cargo/vendor/ecdsa-0.16.9"
},
{
"type": "inline",
"contents": "{\"package\": \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\", \"files\": {}}",
"dest": "cargo/vendor/ecdsa-0.16.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ed25519-compact/ed25519-compact-2.1.1.crate",
"sha256": "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190",
"dest": "cargo/vendor/ed25519-compact-2.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190\", \"files\": {}}",
"dest": "cargo/vendor/ed25519-compact-2.1.1",