-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrsvg-cargo-sources.json
3830 lines (3830 loc) · 160 KB
/
librsvg-cargo-sources.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-0.7.20.crate",
"sha256": "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac",
"dest": "cargo/vendor/aho-corasick-0.7.20"
},
{
"type": "inline",
"contents": "{\"package\": \"cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-0.7.20",
"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/anes/anes-0.1.6.crate",
"sha256": "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299",
"dest": "cargo/vendor/anes-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\", \"files\": {}}",
"dest": "cargo/vendor/anes-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-0.3.4.crate",
"sha256": "1ba0b55c2201aa802adb684e7963ce2c3191675629e7df899774331e3ac747cf",
"dest": "cargo/vendor/anstyle-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"1ba0b55c2201aa802adb684e7963ce2c3191675629e7df899774331e3ac747cf\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.69.crate",
"sha256": "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800",
"dest": "cargo/vendor/anyhow-1.0.69"
},
{
"type": "inline",
"contents": "{\"package\": \"224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.69",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/approx/approx-0.5.1.crate",
"sha256": "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6",
"dest": "cargo/vendor/approx-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6\", \"files\": {}}",
"dest": "cargo/vendor/approx-0.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/assert_cmd/assert_cmd-2.0.10.crate",
"sha256": "ec0b2340f55d9661d76793b2bfc2eb0e62689bd79d067a95707ea762afd5e9dd",
"dest": "cargo/vendor/assert_cmd-2.0.10"
},
{
"type": "inline",
"contents": "{\"package\": \"ec0b2340f55d9661d76793b2bfc2eb0e62689bd79d067a95707ea762afd5e9dd\", \"files\": {}}",
"dest": "cargo/vendor/assert_cmd-2.0.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atty/atty-0.2.14.crate",
"sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8",
"dest": "cargo/vendor/atty-0.2.14"
},
{
"type": "inline",
"contents": "{\"package\": \"d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8\", \"files\": {}}",
"dest": "cargo/vendor/atty-0.2.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.1.0.crate",
"sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
"dest": "cargo/vendor/autocfg-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base-x/base-x-0.2.11.crate",
"sha256": "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270",
"dest": "cargo/vendor/base-x-0.2.11"
},
{
"type": "inline",
"contents": "{\"package\": \"4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270\", \"files\": {}}",
"dest": "cargo/vendor/base-x-0.2.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-set/bit-set-0.5.3.crate",
"sha256": "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1",
"dest": "cargo/vendor/bit-set-0.5.3"
},
{
"type": "inline",
"contents": "{\"package\": \"0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1\", \"files\": {}}",
"dest": "cargo/vendor/bit-set-0.5.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-vec/bit-vec-0.6.3.crate",
"sha256": "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb",
"dest": "cargo/vendor/bit-vec-0.6.3"
},
{
"type": "inline",
"contents": "{\"package\": \"349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb\", \"files\": {}}",
"dest": "cargo/vendor/bit-vec-0.6.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/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/bstr/bstr-1.3.0.crate",
"sha256": "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1",
"dest": "cargo/vendor/bstr-1.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.12.0.crate",
"sha256": "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535",
"dest": "cargo/vendor/bumpalo-3.12.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.12.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.13.1.crate",
"sha256": "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea",
"dest": "cargo/vendor/bytemuck-1.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.4.3.crate",
"sha256": "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610",
"dest": "cargo/vendor/byteorder-1.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.17.0.crate",
"sha256": "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871",
"dest": "cargo/vendor/cairo-rs-0.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.17.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.17.0.crate",
"sha256": "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e",
"dest": "cargo/vendor/cairo-sys-rs-0.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.17.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cast/cast-0.3.0.crate",
"sha256": "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5",
"dest": "cargo/vendor/cast-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\", \"files\": {}}",
"dest": "cargo/vendor/cast-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.79.crate",
"sha256": "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f",
"dest": "cargo/vendor/cc-1.0.79"
},
{
"type": "inline",
"contents": "{\"package\": \"50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.79",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.11.0.crate",
"sha256": "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa",
"dest": "cargo/vendor/cfg-expr-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.11.0",
"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.24.crate",
"sha256": "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b",
"dest": "cargo/vendor/chrono-0.4.24"
},
{
"type": "inline",
"contents": "{\"package\": \"4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.24",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ciborium/ciborium-0.2.0.crate",
"sha256": "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f",
"dest": "cargo/vendor/ciborium-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ciborium-io/ciborium-io-0.2.0.crate",
"sha256": "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369",
"dest": "cargo/vendor/ciborium-io-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-io-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ciborium-ll/ciborium-ll-0.2.0.crate",
"sha256": "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b",
"dest": "cargo/vendor/ciborium-ll-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-ll-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-3.2.23.crate",
"sha256": "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5",
"dest": "cargo/vendor/clap-3.2.23"
},
{
"type": "inline",
"contents": "{\"package\": \"71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5\", \"files\": {}}",
"dest": "cargo/vendor/clap-3.2.23",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.1.9.crate",
"sha256": "9a9d6ada83c1edcce028902ea27dd929069c70df4c7600b131b4d9a1ad2879cc",
"dest": "cargo/vendor/clap-4.1.9"
},
{
"type": "inline",
"contents": "{\"package\": \"9a9d6ada83c1edcce028902ea27dd929069c70df4c7600b131b4d9a1ad2879cc\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.1.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_complete/clap_complete-4.1.5.crate",
"sha256": "37686beaba5ac9f3ab01ee3172f792fc6ffdd685bfb9e63cfef02c0571a4e8e1",
"dest": "cargo/vendor/clap_complete-4.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"37686beaba5ac9f3ab01ee3172f792fc6ffdd685bfb9e63cfef02c0571a4e8e1\", \"files\": {}}",
"dest": "cargo/vendor/clap_complete-4.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.1.9.crate",
"sha256": "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644",
"dest": "cargo/vendor/clap_derive-4.1.9"
},
{
"type": "inline",
"contents": "{\"package\": \"fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.1.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.2.4.crate",
"sha256": "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5",
"dest": "cargo/vendor/clap_lex-0.2.4"
},
{
"type": "inline",
"contents": "{\"package\": \"2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.2.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.3.3.crate",
"sha256": "033f6b7a4acb1f358c742aaca805c939ee73b4c6209ae4318ec7aca81c42e646",
"dest": "cargo/vendor/clap_lex-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"033f6b7a4acb1f358c742aaca805c939ee73b4c6209ae4318ec7aca81c42e646\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/codespan-reporting/codespan-reporting-0.11.1.crate",
"sha256": "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e",
"dest": "cargo/vendor/codespan-reporting-0.11.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e\", \"files\": {}}",
"dest": "cargo/vendor/codespan-reporting-0.11.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/const-cstr/const-cstr-0.3.0.crate",
"sha256": "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6",
"dest": "cargo/vendor/const-cstr-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6\", \"files\": {}}",
"dest": "cargo/vendor/const-cstr-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/const_fn/const_fn-0.4.9.crate",
"sha256": "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935",
"dest": "cargo/vendor/const_fn-0.4.9"
},
{
"type": "inline",
"contents": "{\"package\": \"fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935\", \"files\": {}}",
"dest": "cargo/vendor/const_fn-0.4.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/convert_case/convert_case-0.4.0.crate",
"sha256": "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e",
"dest": "cargo/vendor/convert_case-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e\", \"files\": {}}",
"dest": "cargo/vendor/convert_case-0.4.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.3.crate",
"sha256": "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc",
"dest": "cargo/vendor/core-foundation-sys-0.8.3"
},
{
"type": "inline",
"contents": "{\"package\": \"5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.3.2.crate",
"sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d",
"dest": "cargo/vendor/crc32fast-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/criterion/criterion-0.4.0.crate",
"sha256": "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb",
"dest": "cargo/vendor/criterion-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb\", \"files\": {}}",
"dest": "cargo/vendor/criterion-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/criterion-plot/criterion-plot-0.5.0.crate",
"sha256": "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1",
"dest": "cargo/vendor/criterion-plot-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1\", \"files\": {}}",
"dest": "cargo/vendor/criterion-plot-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.7.crate",
"sha256": "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c",
"dest": "cargo/vendor/crossbeam-channel-0.5.7"
},
{
"type": "inline",
"contents": "{\"package\": \"cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.3.crate",
"sha256": "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef",
"dest": "cargo/vendor/crossbeam-deque-0.8.3"
},
{
"type": "inline",
"contents": "{\"package\": \"ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.14.crate",
"sha256": "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695",
"dest": "cargo/vendor/crossbeam-epoch-0.9.14"
},
{
"type": "inline",
"contents": "{\"package\": \"46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.15.crate",
"sha256": "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b",
"dest": "cargo/vendor/crossbeam-utils-0.8.15"
},
{
"type": "inline",
"contents": "{\"package\": \"3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.15",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cssparser/cssparser-0.29.6.crate",
"sha256": "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa",
"dest": "cargo/vendor/cssparser-0.29.6"
},
{
"type": "inline",
"contents": "{\"package\": \"f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa\", \"files\": {}}",
"dest": "cargo/vendor/cssparser-0.29.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cssparser-macros/cssparser-macros-0.6.0.crate",
"sha256": "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e",
"dest": "cargo/vendor/cssparser-macros-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e\", \"files\": {}}",
"dest": "cargo/vendor/cssparser-macros-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxx/cxx-1.0.92.crate",
"sha256": "9a140f260e6f3f79013b8bfc65e7ce630c9ab4388c6a89c71e07226f49487b72",
"dest": "cargo/vendor/cxx-1.0.92"
},
{
"type": "inline",
"contents": "{\"package\": \"9a140f260e6f3f79013b8bfc65e7ce630c9ab4388c6a89c71e07226f49487b72\", \"files\": {}}",
"dest": "cargo/vendor/cxx-1.0.92",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxx-build/cxx-build-1.0.92.crate",
"sha256": "da6383f459341ea689374bf0a42979739dc421874f112ff26f829b8040b8e613",
"dest": "cargo/vendor/cxx-build-1.0.92"
},
{
"type": "inline",
"contents": "{\"package\": \"da6383f459341ea689374bf0a42979739dc421874f112ff26f829b8040b8e613\", \"files\": {}}",
"dest": "cargo/vendor/cxx-build-1.0.92",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxxbridge-flags/cxxbridge-flags-1.0.92.crate",
"sha256": "90201c1a650e95ccff1c8c0bb5a343213bdd317c6e600a93075bca2eff54ec97",
"dest": "cargo/vendor/cxxbridge-flags-1.0.92"
},
{
"type": "inline",
"contents": "{\"package\": \"90201c1a650e95ccff1c8c0bb5a343213bdd317c6e600a93075bca2eff54ec97\", \"files\": {}}",
"dest": "cargo/vendor/cxxbridge-flags-1.0.92",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxxbridge-macro/cxxbridge-macro-1.0.92.crate",
"sha256": "0b75aed41bb2e6367cae39e6326ef817a851db13c13e4f3263714ca3cfb8de56",
"dest": "cargo/vendor/cxxbridge-macro-1.0.92"
},
{
"type": "inline",
"contents": "{\"package\": \"0b75aed41bb2e6367cae39e6326ef817a851db13c13e4f3263714ca3cfb8de56\", \"files\": {}}",
"dest": "cargo/vendor/cxxbridge-macro-1.0.92",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/data-url/data-url-0.2.0.crate",
"sha256": "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5",
"dest": "cargo/vendor/data-url-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5\", \"files\": {}}",
"dest": "cargo/vendor/data-url-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/derive_more/derive_more-0.99.17.crate",
"sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321",
"dest": "cargo/vendor/derive_more-0.99.17"
},
{
"type": "inline",
"contents": "{\"package\": \"4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321\", \"files\": {}}",
"dest": "cargo/vendor/derive_more-0.99.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/difflib/difflib-0.4.0.crate",
"sha256": "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8",
"dest": "cargo/vendor/difflib-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8\", \"files\": {}}",
"dest": "cargo/vendor/difflib-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/discard/discard-1.0.4.crate",
"sha256": "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0",
"dest": "cargo/vendor/discard-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0\", \"files\": {}}",
"dest": "cargo/vendor/discard-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dlib/dlib-0.5.0.crate",
"sha256": "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794",
"dest": "cargo/vendor/dlib-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794\", \"files\": {}}",
"dest": "cargo/vendor/dlib-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/doc-comment/doc-comment-0.3.3.crate",
"sha256": "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10",
"dest": "cargo/vendor/doc-comment-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10\", \"files\": {}}",
"dest": "cargo/vendor/doc-comment-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dtoa/dtoa-0.4.8.crate",
"sha256": "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0",
"dest": "cargo/vendor/dtoa-0.4.8"
},
{
"type": "inline",
"contents": "{\"package\": \"56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0\", \"files\": {}}",
"dest": "cargo/vendor/dtoa-0.4.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dtoa-short/dtoa-short-0.3.3.crate",
"sha256": "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6",
"dest": "cargo/vendor/dtoa-short-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6\", \"files\": {}}",
"dest": "cargo/vendor/dtoa-short-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.8.1.crate",
"sha256": "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91",
"dest": "cargo/vendor/either-1.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91\", \"files\": {}}",
"dest": "cargo/vendor/either-1.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding/encoding-0.2.33.crate",
"sha256": "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec",
"dest": "cargo/vendor/encoding-0.2.33"
},
{
"type": "inline",
"contents": "{\"package\": \"6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec\", \"files\": {}}",
"dest": "cargo/vendor/encoding-0.2.33",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding-index-japanese/encoding-index-japanese-1.20141219.5.crate",
"sha256": "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91",
"dest": "cargo/vendor/encoding-index-japanese-1.20141219.5"
},
{
"type": "inline",
"contents": "{\"package\": \"04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91\", \"files\": {}}",
"dest": "cargo/vendor/encoding-index-japanese-1.20141219.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding-index-korean/encoding-index-korean-1.20141219.5.crate",
"sha256": "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81",
"dest": "cargo/vendor/encoding-index-korean-1.20141219.5"
},
{
"type": "inline",
"contents": "{\"package\": \"4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81\", \"files\": {}}",
"dest": "cargo/vendor/encoding-index-korean-1.20141219.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding-index-simpchinese/encoding-index-simpchinese-1.20141219.5.crate",
"sha256": "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7",
"dest": "cargo/vendor/encoding-index-simpchinese-1.20141219.5"
},
{
"type": "inline",
"contents": "{\"package\": \"d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7\", \"files\": {}}",
"dest": "cargo/vendor/encoding-index-simpchinese-1.20141219.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding-index-singlebyte/encoding-index-singlebyte-1.20141219.5.crate",
"sha256": "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a",
"dest": "cargo/vendor/encoding-index-singlebyte-1.20141219.5"
},
{
"type": "inline",
"contents": "{\"package\": \"3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a\", \"files\": {}}",
"dest": "cargo/vendor/encoding-index-singlebyte-1.20141219.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding-index-tradchinese/encoding-index-tradchinese-1.20141219.5.crate",
"sha256": "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18",
"dest": "cargo/vendor/encoding-index-tradchinese-1.20141219.5"
},
{
"type": "inline",
"contents": "{\"package\": \"fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18\", \"files\": {}}",
"dest": "cargo/vendor/encoding-index-tradchinese-1.20141219.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_index_tests/encoding_index_tests-0.1.4.crate",
"sha256": "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569",
"dest": "cargo/vendor/encoding_index_tests-0.1.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569\", \"files\": {}}",
"dest": "cargo/vendor/encoding_index_tests-0.1.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.2.8.crate",
"sha256": "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1",
"dest": "cargo/vendor/errno-0.2.8"
},
{
"type": "inline",
"contents": "{\"package\": \"f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.2.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno-dragonfly/errno-dragonfly-0.1.2.crate",
"sha256": "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf",
"dest": "cargo/vendor/errno-dragonfly-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf\", \"files\": {}}",
"dest": "cargo/vendor/errno-dragonfly-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-1.9.0.crate",
"sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be",
"dest": "cargo/vendor/fastrand-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.25.crate",
"sha256": "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841",
"dest": "cargo/vendor/flate2-1.0.25"
},
{
"type": "inline",
"contents": "{\"package\": \"a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.25",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/float-cmp/float-cmp-0.9.0.crate",
"sha256": "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4",
"dest": "cargo/vendor/float-cmp-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4\", \"files\": {}}",
"dest": "cargo/vendor/float-cmp-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fnv/fnv-1.0.7.crate",
"sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
"dest": "cargo/vendor/fnv-1.0.7"
},
{
"type": "inline",
"contents": "{\"package\": \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\", \"files\": {}}",
"dest": "cargo/vendor/fnv-1.0.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.1.0.crate",
"sha256": "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8",
"dest": "cargo/vendor/form_urlencoded-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futf/futf-0.1.5.crate",
"sha256": "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843",
"dest": "cargo/vendor/futf-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843\", \"files\": {}}",
"dest": "cargo/vendor/futf-0.1.5",