-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrav1e-cargo-sources.json
More file actions
2959 lines (2959 loc) · 123 KB
/
rav1e-cargo-sources.json
File metadata and controls
2959 lines (2959 loc) · 123 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/addr2line/addr2line-0.21.0.crate",
"sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb",
"dest": "cargo/vendor/addr2line-0.21.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.21.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.2.crate",
"sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0",
"dest": "cargo/vendor/aho-corasick-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.2",
"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/anstream/anstream-0.6.5.crate",
"sha256": "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6",
"dest": "cargo/vendor/anstream-0.6.5"
},
{
"type": "inline",
"contents": "{\"package\": \"d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.4.crate",
"sha256": "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87",
"dest": "cargo/vendor/anstyle-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.3.crate",
"sha256": "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c",
"dest": "cargo/vendor/anstyle-parse-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.0.2.crate",
"sha256": "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648",
"dest": "cargo/vendor/anstyle-query-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.2.crate",
"sha256": "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7",
"dest": "cargo/vendor/anstyle-wincon-3.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.79.crate",
"sha256": "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca",
"dest": "cargo/vendor/anyhow-1.0.79"
},
{
"type": "inline",
"contents": "{\"package\": \"080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.79",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aom-sys/aom-sys-0.3.3.crate",
"sha256": "623675d7dbe1d65db81582231b0971384277a4dd2006763021ba2436e86f812d",
"dest": "cargo/vendor/aom-sys-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"623675d7dbe1d65db81582231b0971384277a4dd2006763021ba2436e86f812d\", \"files\": {}}",
"dest": "cargo/vendor/aom-sys-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arbitrary/arbitrary-1.3.2.crate",
"sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110",
"dest": "cargo/vendor/arbitrary-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110\", \"files\": {}}",
"dest": "cargo/vendor/arbitrary-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arg_enum_proc_macro/arg_enum_proc_macro-0.3.4.crate",
"sha256": "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea\", \"files\": {}}",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.4.crate",
"sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711",
"dest": "cargo/vendor/arrayvec-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/assert_cmd/assert_cmd-2.0.12.crate",
"sha256": "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6",
"dest": "cargo/vendor/assert_cmd-2.0.12"
},
{
"type": "inline",
"contents": "{\"package\": \"88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6\", \"files\": {}}",
"dest": "cargo/vendor/assert_cmd-2.0.12",
"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/av-metrics/av-metrics-0.9.1.crate",
"sha256": "996ce95bbdb0203e5b91d4a0c9b81c0d67d11c80f884482a0c1ea19e732e3530",
"dest": "cargo/vendor/av-metrics-0.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"996ce95bbdb0203e5b91d4a0c9b81c0d67d11c80f884482a0c1ea19e732e3530\", \"files\": {}}",
"dest": "cargo/vendor/av-metrics-0.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/av1-grain/av1-grain-0.2.3.crate",
"sha256": "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf",
"dest": "cargo/vendor/av1-grain-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf\", \"files\": {}}",
"dest": "cargo/vendor/av1-grain-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.69.crate",
"sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837",
"dest": "cargo/vendor/backtrace-0.3.69"
},
{
"type": "inline",
"contents": "{\"package\": \"2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.69",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bindgen/bindgen-0.69.1.crate",
"sha256": "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2",
"dest": "cargo/vendor/bindgen-0.69.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2\", \"files\": {}}",
"dest": "cargo/vendor/bindgen-0.69.1",
"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.4.1.crate",
"sha256": "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07",
"dest": "cargo/vendor/bitflags-2.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitstream-io/bitstream-io-2.2.0.crate",
"sha256": "06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da",
"dest": "cargo/vendor/bitstream-io-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da\", \"files\": {}}",
"dest": "cargo/vendor/bitstream-io-2.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-1.9.0.crate",
"sha256": "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc",
"dest": "cargo/vendor/bstr-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/built/built-0.7.1.crate",
"sha256": "38d17f4d6e4dc36d1a02fbedc2753a096848e7c1b0772f7654eab8e2c927dd53",
"dest": "cargo/vendor/built-0.7.1"
},
{
"type": "inline",
"contents": "{\"package\": \"38d17f4d6e4dc36d1a02fbedc2753a096848e7c1b0772f7654eab8e2c927dd53\", \"files\": {}}",
"dest": "cargo/vendor/built-0.7.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.14.0.crate",
"sha256": "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec",
"dest": "cargo/vendor/bumpalo-3.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.14.0.crate",
"sha256": "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6",
"dest": "cargo/vendor/bytemuck-1.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.5.0.crate",
"sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b",
"dest": "cargo/vendor/byteorder-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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.83.crate",
"sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0",
"dest": "cargo/vendor/cc-1.0.83"
},
{
"type": "inline",
"contents": "{\"package\": \"f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.83",
"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.15.6.crate",
"sha256": "6100bc57b6209840798d95cb2775684849d332f7bd788db2a8c8caf7ef82a41a",
"dest": "cargo/vendor/cfg-expr-0.15.6"
},
{
"type": "inline",
"contents": "{\"package\": \"6100bc57b6209840798d95cb2775684849d332f7bd788db2a8c8caf7ef82a41a\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.15.6",
"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/ciborium/ciborium-0.2.1.crate",
"sha256": "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926",
"dest": "cargo/vendor/ciborium-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ciborium-io/ciborium-io-0.2.1.crate",
"sha256": "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656",
"dest": "cargo/vendor/ciborium-io-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-io-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ciborium-ll/ciborium-ll-0.2.1.crate",
"sha256": "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b",
"dest": "cargo/vendor/ciborium-ll-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b\", \"files\": {}}",
"dest": "cargo/vendor/ciborium-ll-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clang-sys/clang-sys-1.7.0.crate",
"sha256": "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1",
"dest": "cargo/vendor/clang-sys-1.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1\", \"files\": {}}",
"dest": "cargo/vendor/clang-sys-1.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.4.14.crate",
"sha256": "33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2",
"dest": "cargo/vendor/clap-4.4.14"
},
{
"type": "inline",
"contents": "{\"package\": \"33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.4.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_builder/clap_builder-4.4.14.crate",
"sha256": "f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370",
"dest": "cargo/vendor/clap_builder-4.4.14"
},
{
"type": "inline",
"contents": "{\"package\": \"f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370\", \"files\": {}}",
"dest": "cargo/vendor/clap_builder-4.4.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_complete/clap_complete-4.4.6.crate",
"sha256": "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd",
"dest": "cargo/vendor/clap_complete-4.4.6"
},
{
"type": "inline",
"contents": "{\"package\": \"97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd\", \"files\": {}}",
"dest": "cargo/vendor/clap_complete-4.4.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.4.7.crate",
"sha256": "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442",
"dest": "cargo/vendor/clap_derive-4.4.7"
},
{
"type": "inline",
"contents": "{\"package\": \"cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.4.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.6.0.crate",
"sha256": "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1",
"dest": "cargo/vendor/clap_lex-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color_quant/color_quant-1.1.0.crate",
"sha256": "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b",
"dest": "cargo/vendor/color_quant-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b\", \"files\": {}}",
"dest": "cargo/vendor/color_quant-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.0.crate",
"sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7",
"dest": "cargo/vendor/colorchoice-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7\", \"files\": {}}",
"dest": "cargo/vendor/colorchoice-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/console/console-0.15.8.crate",
"sha256": "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb",
"dest": "cargo/vendor/console-0.15.8"
},
{
"type": "inline",
"contents": "{\"package\": \"0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb\", \"files\": {}}",
"dest": "cargo/vendor/console-0.15.8",
"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.5.1.crate",
"sha256": "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f",
"dest": "cargo/vendor/criterion-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f\", \"files\": {}}",
"dest": "cargo/vendor/criterion-0.5.1",
"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/crossbeam-0.8.4.crate",
"sha256": "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8",
"dest": "cargo/vendor/crossbeam-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.11.crate",
"sha256": "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b",
"dest": "cargo/vendor/crossbeam-channel-0.5.11"
},
{
"type": "inline",
"contents": "{\"package\": \"176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.5.crate",
"sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d",
"dest": "cargo/vendor/crossbeam-deque-0.8.5"
},
{
"type": "inline",
"contents": "{\"package\": \"613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.18.crate",
"sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18"
},
{
"type": "inline",
"contents": "{\"package\": \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-queue/crossbeam-queue-0.3.11.crate",
"sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35",
"dest": "cargo/vendor/crossbeam-queue-0.3.11"
},
{
"type": "inline",
"contents": "{\"package\": \"df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-queue-0.3.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.19.crate",
"sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345",
"dest": "cargo/vendor/crossbeam-utils-0.8.19"
},
{
"type": "inline",
"contents": "{\"package\": \"248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/diff/diff-0.1.13.crate",
"sha256": "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8",
"dest": "cargo/vendor/diff-0.1.13"
},
{
"type": "inline",
"contents": "{\"package\": \"56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8\", \"files\": {}}",
"dest": "cargo/vendor/diff-0.1.13",
"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/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/either/either-1.9.0.crate",
"sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07",
"dest": "cargo/vendor/either-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07\", \"files\": {}}",
"dest": "cargo/vendor/either-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encode_unicode/encode_unicode-0.3.6.crate",
"sha256": "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f",
"dest": "cargo/vendor/encode_unicode-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f\", \"files\": {}}",
"dest": "cargo/vendor/encode_unicode-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/env_logger/env_logger-0.8.4.crate",
"sha256": "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3",
"dest": "cargo/vendor/env_logger-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3\", \"files\": {}}",
"dest": "cargo/vendor/env_logger-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/equivalent/equivalent-1.0.1.crate",
"sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5",
"dest": "cargo/vendor/equivalent-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5\", \"files\": {}}",
"dest": "cargo/vendor/equivalent-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.3.8.crate",
"sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245",
"dest": "cargo/vendor/errno-0.3.8"
},
{
"type": "inline",
"contents": "{\"package\": \"a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.3.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.3.crate",
"sha256": "209098dd6dfc4445aa6111f0e98653ac323eaa4dfd212c9ca3931bf9955c31bd",
"dest": "cargo/vendor/fdeflate-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"209098dd6dfc4445aa6111f0e98653ac323eaa4dfd212c9ca3931bf9955c31bd\", \"files\": {}}",
"dest": "cargo/vendor/fdeflate-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fern/fern-0.6.2.crate",
"sha256": "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee",
"dest": "cargo/vendor/fern-0.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee\", \"files\": {}}",
"dest": "cargo/vendor/fern-0.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.28.crate",
"sha256": "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e",
"dest": "cargo/vendor/flate2-1.0.28"
},
{
"type": "inline",
"contents": "{\"package\": \"46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.2.1.crate",
"sha256": "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456",
"dest": "cargo/vendor/form_urlencoded-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/getrandom/getrandom-0.2.12.crate",
"sha256": "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5",
"dest": "cargo/vendor/getrandom-0.2.12"
},
{
"type": "inline",
"contents": "{\"package\": \"190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5\", \"files\": {}}",
"dest": "cargo/vendor/getrandom-0.2.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gimli/gimli-0.28.1.crate",
"sha256": "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253",
"dest": "cargo/vendor/gimli-0.28.1"
},
{
"type": "inline",
"contents": "{\"package\": \"4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253\", \"files\": {}}",
"dest": "cargo/vendor/gimli-0.28.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/git2/git2-0.18.1.crate",
"sha256": "fbf97ba92db08df386e10c8ede66a2a0369bd277090afd8710e19e38de9ec0cd",
"dest": "cargo/vendor/git2-0.18.1"
},
{
"type": "inline",
"contents": "{\"package\": \"fbf97ba92db08df386e10c8ede66a2a0369bd277090afd8710e19e38de9ec0cd\", \"files\": {}}",
"dest": "cargo/vendor/git2-0.18.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glob/glob-0.3.1.crate",
"sha256": "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b",
"dest": "cargo/vendor/glob-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b\", \"files\": {}}",
"dest": "cargo/vendor/glob-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/half/half-1.8.2.crate",
"sha256": "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7",
"dest": "cargo/vendor/half-1.8.2"
},
{
"type": "inline",
"contents": "{\"package\": \"eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7\", \"files\": {}}",
"dest": "cargo/vendor/half-1.8.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hashbrown/hashbrown-0.14.3.crate",
"sha256": "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604",
"dest": "cargo/vendor/hashbrown-0.14.3"
},
{
"type": "inline",
"contents": "{\"package\": \"290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604\", \"files\": {}}",
"dest": "cargo/vendor/hashbrown-0.14.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/heck/heck-0.4.1.crate",
"sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8",
"dest": "cargo/vendor/heck-0.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.3.3.crate",
"sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7",
"dest": "cargo/vendor/hermit-abi-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7\", \"files\": {}}",
"dest": "cargo/vendor/hermit-abi-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/home/home-0.5.9.crate",
"sha256": "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5",
"dest": "cargo/vendor/home-0.5.9"
},
{
"type": "inline",
"contents": "{\"package\": \"e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5\", \"files\": {}}",
"dest": "cargo/vendor/home-0.5.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/idna/idna-0.5.0.crate",
"sha256": "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6",
"dest": "cargo/vendor/idna-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6\", \"files\": {}}",
"dest": "cargo/vendor/idna-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/image/image-0.24.7.crate",
"sha256": "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711",
"dest": "cargo/vendor/image-0.24.7"
},
{
"type": "inline",
"contents": "{\"package\": \"6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711\", \"files\": {}}",
"dest": "cargo/vendor/image-0.24.7",