-
Notifications
You must be signed in to change notification settings - Fork 0
/
sic-cargo-sources.json
2634 lines (2634 loc) · 109 KB
/
sic-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/ab_glyph_rasterizer/ab_glyph_rasterizer-0.1.5.crate",
"sha256": "a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e\", \"files\": {}}",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.5",
"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/adler32/adler32-1.2.0.crate",
"sha256": "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234",
"dest": "cargo/vendor/adler32-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234\", \"files\": {}}",
"dest": "cargo/vendor/adler32-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-0.7.18.crate",
"sha256": "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f",
"dest": "cargo/vendor/aho-corasick-0.7.18"
},
{
"type": "inline",
"contents": "{\"package\": \"1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-0.7.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ansi_term/ansi_term-0.12.1.crate",
"sha256": "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2",
"dest": "cargo/vendor/ansi_term-0.12.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2\", \"files\": {}}",
"dest": "cargo/vendor/ansi_term-0.12.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.56.crate",
"sha256": "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27",
"dest": "cargo/vendor/anyhow-1.0.56"
},
{
"type": "inline",
"contents": "{\"package\": \"4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.56",
"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/arbitrary/arbitrary-0.4.7.crate",
"sha256": "db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569",
"dest": "cargo/vendor/arbitrary-0.4.7"
},
{
"type": "inline",
"contents": "{\"package\": \"db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569\", \"files\": {}}",
"dest": "cargo/vendor/arbitrary-0.4.7",
"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.2.crate",
"sha256": "d7c29b43ee8654590587cd033b3eca2f9c4f8cdff945ec0e6ee91ceb057d87f3",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"d7c29b43ee8654590587cd033b3eca2f9c4f8cdff945ec0e6ee91ceb057d87f3\", \"files\": {}}",
"dest": "cargo/vendor/arg_enum_proc_macro-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.2.crate",
"sha256": "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6",
"dest": "cargo/vendor/arrayvec-0.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.2",
"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/av-metrics/av-metrics-0.7.2.crate",
"sha256": "a0f026f02dbfbc41706d9b4092df79c6e192ce46372f4103ec924205693038f8",
"dest": "cargo/vendor/av-metrics-0.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a0f026f02dbfbc41706d9b4092df79c6e192ce46372f4103ec924205693038f8\", \"files\": {}}",
"dest": "cargo/vendor/av-metrics-0.7.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/avif-serialize/avif-serialize-0.7.5.crate",
"sha256": "bc018a7297c3b1b31e673baa843df5ff5dac7886067f64232b3c53691fc6d699",
"dest": "cargo/vendor/avif-serialize-0.7.5"
},
{
"type": "inline",
"contents": "{\"package\": \"bc018a7297c3b1b31e673baa843df5ff5dac7886067f64232b3c53691fc6d699\", \"files\": {}}",
"dest": "cargo/vendor/avif-serialize-0.7.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit_field/bit_field-0.10.1.crate",
"sha256": "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4",
"dest": "cargo/vendor/bit_field-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4\", \"files\": {}}",
"dest": "cargo/vendor/bit_field-0.10.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/bitstream-io/bitstream-io-1.3.0.crate",
"sha256": "3a429905f63bae528a4afe5e7520089139a7694e910f9a12e89010d738b9cca2",
"dest": "cargo/vendor/bitstream-io-1.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3a429905f63bae528a4afe5e7520089139a7694e910f9a12e89010d738b9cca2\", \"files\": {}}",
"dest": "cargo/vendor/bitstream-io-1.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.7.3.crate",
"sha256": "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b",
"dest": "cargo/vendor/block-buffer-0.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-padding/block-padding-0.1.5.crate",
"sha256": "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5",
"dest": "cargo/vendor/block-padding-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5\", \"files\": {}}",
"dest": "cargo/vendor/block-padding-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-0.2.17.crate",
"sha256": "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223",
"dest": "cargo/vendor/bstr-0.2.17"
},
{
"type": "inline",
"contents": "{\"package\": \"ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223\", \"files\": {}}",
"dest": "cargo/vendor/bstr-0.2.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.9.1.crate",
"sha256": "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899",
"dest": "cargo/vendor/bumpalo-3.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byte-tools/byte-tools-0.3.1.crate",
"sha256": "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7",
"dest": "cargo/vendor/byte-tools-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7\", \"files\": {}}",
"dest": "cargo/vendor/byte-tools-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.8.0.crate",
"sha256": "0e851ca7c24871e7336801608a4797d7376545b6928a10d32d75685687141ead",
"dest": "cargo/vendor/bytemuck-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0e851ca7c24871e7336801608a4797d7376545b6928a10d32d75685687141ead\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.8.0",
"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/cc/cc-1.0.73.crate",
"sha256": "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11",
"dest": "cargo/vendor/cc-1.0.73"
},
{
"type": "inline",
"contents": "{\"package\": \"2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.73",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.7.4.crate",
"sha256": "30aa9e2ffbb838c6b451db14f3cd8e63ed622bf859f9956bc93845a10fafc26a",
"dest": "cargo/vendor/cfg-expr-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"30aa9e2ffbb838c6b451db14f3cd8e63ed622bf859f9956bc93845a10fafc26a\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.7.4",
"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.19.crate",
"sha256": "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73",
"dest": "cargo/vendor/chrono-0.4.19"
},
{
"type": "inline",
"contents": "{\"package\": \"670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-2.34.0.crate",
"sha256": "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c",
"dest": "cargo/vendor/clap-2.34.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c\", \"files\": {}}",
"dest": "cargo/vendor/clap-2.34.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/console/console-0.14.1.crate",
"sha256": "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45",
"dest": "cargo/vendor/console-0.14.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45\", \"files\": {}}",
"dest": "cargo/vendor/console-0.14.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/conv/conv-0.3.3.crate",
"sha256": "78ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299",
"dest": "cargo/vendor/conv-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"78ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299\", \"files\": {}}",
"dest": "cargo/vendor/conv-0.3.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/crossbeam/crossbeam-0.8.1.crate",
"sha256": "4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845",
"dest": "cargo/vendor/crossbeam-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.4.crate",
"sha256": "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53",
"dest": "cargo/vendor/crossbeam-channel-0.5.4"
},
{
"type": "inline",
"contents": "{\"package\": \"5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.1.crate",
"sha256": "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e",
"dest": "cargo/vendor/crossbeam-deque-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.8.crate",
"sha256": "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c",
"dest": "cargo/vendor/crossbeam-epoch-0.9.8"
},
{
"type": "inline",
"contents": "{\"package\": \"1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-queue/crossbeam-queue-0.3.5.crate",
"sha256": "1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2",
"dest": "cargo/vendor/crossbeam-queue-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-queue-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.8.crate",
"sha256": "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38",
"dest": "cargo/vendor/crossbeam-utils-0.8.8"
},
{
"type": "inline",
"contents": "{\"package\": \"0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/custom_derive/custom_derive-0.1.7.crate",
"sha256": "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9",
"dest": "cargo/vendor/custom_derive-0.1.7"
},
{
"type": "inline",
"contents": "{\"package\": \"ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9\", \"files\": {}}",
"dest": "cargo/vendor/custom_derive-0.1.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/deflate/deflate-1.0.0.crate",
"sha256": "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f",
"dest": "cargo/vendor/deflate-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f\", \"files\": {}}",
"dest": "cargo/vendor/deflate-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.8.1.crate",
"sha256": "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5",
"dest": "cargo/vendor/digest-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.6.1.crate",
"sha256": "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457",
"dest": "cargo/vendor/either-1.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457\", \"files\": {}}",
"dest": "cargo/vendor/either-1.6.1",
"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/exr/exr-1.4.1.crate",
"sha256": "d4badb9489a465cb2c555af1f00f0bfd8cecd6fc12ac11da9d5b40c5dd5f0200",
"dest": "cargo/vendor/exr-1.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d4badb9489a465cb2c555af1f00f0bfd8cecd6fc12ac11da9d5b40c5dd5f0200\", \"files\": {}}",
"dest": "cargo/vendor/exr-1.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fake-simd/fake-simd-0.1.2.crate",
"sha256": "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed",
"dest": "cargo/vendor/fake-simd-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed\", \"files\": {}}",
"dest": "cargo/vendor/fake-simd-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fern/fern-0.6.0.crate",
"sha256": "8c9a4820f0ccc8a7afd67c39a0f1a0f4b07ca1725164271a64939d7aeb9af065",
"dest": "cargo/vendor/fern-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8c9a4820f0ccc8a7afd67c39a0f1a0f4b07ca1725164271a64939d7aeb9af065\", \"files\": {}}",
"dest": "cargo/vendor/fern-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.22.crate",
"sha256": "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f",
"dest": "cargo/vendor/flate2-1.0.22"
},
{
"type": "inline",
"contents": "{\"package\": \"1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flume/flume-0.10.12.crate",
"sha256": "843c03199d0c0ca54bc1ea90ac0d507274c28abcc4f691ae8b4eaa375087c76a",
"dest": "cargo/vendor/flume-0.10.12"
},
{
"type": "inline",
"contents": "{\"package\": \"843c03199d0c0ca54bc1ea90ac0d507274c28abcc4f691ae8b4eaa375087c76a\", \"files\": {}}",
"dest": "cargo/vendor/flume-0.10.12",
"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/futures-core/futures-core-0.3.21.crate",
"sha256": "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3",
"dest": "cargo/vendor/futures-core-0.3.21"
},
{
"type": "inline",
"contents": "{\"package\": \"0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3\", \"files\": {}}",
"dest": "cargo/vendor/futures-core-0.3.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-sink/futures-sink-0.3.21.crate",
"sha256": "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868",
"dest": "cargo/vendor/futures-sink-0.3.21"
},
{
"type": "inline",
"contents": "{\"package\": \"21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868\", \"files\": {}}",
"dest": "cargo/vendor/futures-sink-0.3.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/generic-array/generic-array-0.12.4.crate",
"sha256": "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd",
"dest": "cargo/vendor/generic-array-0.12.4"
},
{
"type": "inline",
"contents": "{\"package\": \"ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd\", \"files\": {}}",
"dest": "cargo/vendor/generic-array-0.12.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/getrandom/getrandom-0.1.16.crate",
"sha256": "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce",
"dest": "cargo/vendor/getrandom-0.1.16"
},
{
"type": "inline",
"contents": "{\"package\": \"8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce\", \"files\": {}}",
"dest": "cargo/vendor/getrandom-0.1.16",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/getrandom/getrandom-0.2.5.crate",
"sha256": "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77",
"dest": "cargo/vendor/getrandom-0.2.5"
},
{
"type": "inline",
"contents": "{\"package\": \"d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77\", \"files\": {}}",
"dest": "cargo/vendor/getrandom-0.2.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gif/gif-0.11.3.crate",
"sha256": "c3a7187e78088aead22ceedeee99779455b23fc231fe13ec443f99bb71694e5b",
"dest": "cargo/vendor/gif-0.11.3"
},
{
"type": "inline",
"contents": "{\"package\": \"c3a7187e78088aead22ceedeee99779455b23fc231fe13ec443f99bb71694e5b\", \"files\": {}}",
"dest": "cargo/vendor/gif-0.11.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/globset/globset-0.4.8.crate",
"sha256": "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd",
"dest": "cargo/vendor/globset-0.4.8"
},
{
"type": "inline",
"contents": "{\"package\": \"10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd\", \"files\": {}}",
"dest": "cargo/vendor/globset-0.4.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/globwalk/globwalk-0.8.1.crate",
"sha256": "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc",
"dest": "cargo/vendor/globwalk-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc\", \"files\": {}}",
"dest": "cargo/vendor/globwalk-0.8.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/heck/heck-0.3.3.crate",
"sha256": "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c",
"dest": "cargo/vendor/heck-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/heck/heck-0.4.0.crate",
"sha256": "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9",
"dest": "cargo/vendor/heck-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.1.19.crate",
"sha256": "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33",
"dest": "cargo/vendor/hermit-abi-0.1.19"
},
{
"type": "inline",
"contents": "{\"package\": \"62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33\", \"files\": {}}",
"dest": "cargo/vendor/hermit-abi-0.1.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ignore/ignore-0.4.18.crate",
"sha256": "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d",
"dest": "cargo/vendor/ignore-0.4.18"
},
{
"type": "inline",
"contents": "{\"package\": \"713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d\", \"files\": {}}",
"dest": "cargo/vendor/ignore-0.4.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/image/image-0.24.1.crate",
"sha256": "db207d030ae38f1eb6f240d5a1c1c88ff422aa005d10f8c6c6fc5e75286ab30e",
"dest": "cargo/vendor/image-0.24.1"
},
{
"type": "inline",
"contents": "{\"package\": \"db207d030ae38f1eb6f240d5a1c1c88ff422aa005d10f8c6c6fc5e75286ab30e\", \"files\": {}}",
"dest": "cargo/vendor/image-0.24.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/imageproc-patched/imageproc-patched-0.22.0-unofficial.1-foresterre.crate",
"sha256": "be70accd92e538a732e8c5f5d9e5d89801af086563c90049c6bbc4860a943a9c",
"dest": "cargo/vendor/imageproc-patched-0.22.0-unofficial.1-foresterre"
},
{
"type": "inline",
"contents": "{\"package\": \"be70accd92e538a732e8c5f5d9e5d89801af086563c90049c6bbc4860a943a9c\", \"files\": {}}",
"dest": "cargo/vendor/imageproc-patched-0.22.0-unofficial.1-foresterre",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/imgref/imgref-1.9.1.crate",
"sha256": "41d0c0db6c932f8262e0ed8909f2e7f8c0e9b1cfb4da884267ce09a10be54365",
"dest": "cargo/vendor/imgref-1.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"41d0c0db6c932f8262e0ed8909f2e7f8c0e9b1cfb4da884267ce09a10be54365\", \"files\": {}}",
"dest": "cargo/vendor/imgref-1.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/inflate/inflate-0.4.5.crate",
"sha256": "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff",
"dest": "cargo/vendor/inflate-0.4.5"
},
{
"type": "inline",
"contents": "{\"package\": \"1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff\", \"files\": {}}",
"dest": "cargo/vendor/inflate-0.4.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/interpolate_name/interpolate_name-0.2.3.crate",
"sha256": "b4b35f4a811037cfdcd44c5db40678464b2d5d248fc1abeeaaa125b370d47f17",
"dest": "cargo/vendor/interpolate_name-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"b4b35f4a811037cfdcd44c5db40678464b2d5d248fc1abeeaaa125b370d47f17\", \"files\": {}}",
"dest": "cargo/vendor/interpolate_name-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/itertools/itertools-0.10.3.crate",
"sha256": "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3",
"dest": "cargo/vendor/itertools-0.10.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3\", \"files\": {}}",
"dest": "cargo/vendor/itertools-0.10.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ivf/ivf-0.1.1.crate",
"sha256": "0fb01c64361a3a67b511439f0dcd54fa3aa5581c861a17e2ede76e46b9c5b7e2",
"dest": "cargo/vendor/ivf-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"0fb01c64361a3a67b511439f0dcd54fa3aa5581c861a17e2ede76e46b9c5b7e2\", \"files\": {}}",
"dest": "cargo/vendor/ivf-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/jobserver/jobserver-0.1.24.crate",
"sha256": "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa",
"dest": "cargo/vendor/jobserver-0.1.24"
},
{
"type": "inline",
"contents": "{\"package\": \"af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa\", \"files\": {}}",
"dest": "cargo/vendor/jobserver-0.1.24",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/jpeg-decoder/jpeg-decoder-0.1.22.crate",
"sha256": "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2",
"dest": "cargo/vendor/jpeg-decoder-0.1.22"
},
{
"type": "inline",
"contents": "{\"package\": \"229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2\", \"files\": {}}",
"dest": "cargo/vendor/jpeg-decoder-0.1.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/jpeg-decoder/jpeg-decoder-0.2.2.crate",
"sha256": "105fb082d64e2100074587f59a74231f771750c664af903f1f9f76c9dedfc6f1",
"dest": "cargo/vendor/jpeg-decoder-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"105fb082d64e2100074587f59a74231f771750c664af903f1f9f76c9dedfc6f1\", \"files\": {}}",
"dest": "cargo/vendor/jpeg-decoder-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/js-sys/js-sys-0.3.56.crate",
"sha256": "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04",
"dest": "cargo/vendor/js-sys-0.3.56"
},
{
"type": "inline",
"contents": "{\"package\": \"a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04\", \"files\": {}}",
"dest": "cargo/vendor/js-sys-0.3.56",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lab/lab-0.11.0.crate",
"sha256": "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f",
"dest": "cargo/vendor/lab-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f\", \"files\": {}}",
"dest": "cargo/vendor/lab-0.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lazy_static/lazy_static-1.4.0.crate",
"sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
"dest": "cargo/vendor/lazy_static-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646\", \"files\": {}}",
"dest": "cargo/vendor/lazy_static-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lebe/lebe-0.5.1.crate",
"sha256": "7efd1d698db0759e6ef11a7cd44407407399a910c774dd804c64c032da7826ff",
"dest": "cargo/vendor/lebe-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7efd1d698db0759e6ef11a7cd44407407399a910c774dd804c64c032da7826ff\", \"files\": {}}",
"dest": "cargo/vendor/lebe-0.5.1",