forked from xou816/spot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo-sources.json
5156 lines (5156 loc) · 215 KB
/
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/addr2line/addr2line-0.19.0.crate",
"sha256": "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97",
"dest": "cargo/vendor/addr2line-0.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.19.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/aes/aes-0.6.0.crate",
"sha256": "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561",
"dest": "cargo/vendor/aes-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561\", \"files\": {}}",
"dest": "cargo/vendor/aes-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aes/aes-0.7.5.crate",
"sha256": "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8",
"dest": "cargo/vendor/aes-0.7.5"
},
{
"type": "inline",
"contents": "{\"package\": \"9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8\", \"files\": {}}",
"dest": "cargo/vendor/aes-0.7.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aes-ctr/aes-ctr-0.6.0.crate",
"sha256": "7729c3cde54d67063be556aeac75a81330d802f0259500ca40cb52967f975763",
"dest": "cargo/vendor/aes-ctr-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7729c3cde54d67063be556aeac75a81330d802f0259500ca40cb52967f975763\", \"files\": {}}",
"dest": "cargo/vendor/aes-ctr-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aes-soft/aes-soft-0.6.4.crate",
"sha256": "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072",
"dest": "cargo/vendor/aes-soft-0.6.4"
},
{
"type": "inline",
"contents": "{\"package\": \"be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072\", \"files\": {}}",
"dest": "cargo/vendor/aes-soft-0.6.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aesni/aesni-0.10.0.crate",
"sha256": "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce",
"dest": "cargo/vendor/aesni-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce\", \"files\": {}}",
"dest": "cargo/vendor/aesni-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.0.1.crate",
"sha256": "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04",
"dest": "cargo/vendor/aho-corasick-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/alsa/alsa-0.6.0.crate",
"sha256": "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b",
"dest": "cargo/vendor/alsa-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b\", \"files\": {}}",
"dest": "cargo/vendor/alsa-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/alsa-sys/alsa-sys-0.3.1.crate",
"sha256": "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527",
"dest": "cargo/vendor/alsa-sys-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527\", \"files\": {}}",
"dest": "cargo/vendor/alsa-sys-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate",
"sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
"dest": "cargo/vendor/android_system_properties-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}",
"dest": "cargo/vendor/android_system_properties-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.71.crate",
"sha256": "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8",
"dest": "cargo/vendor/anyhow-1.0.71"
},
{
"type": "inline",
"contents": "{\"package\": \"9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.71",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/array-init/array-init-2.1.0.crate",
"sha256": "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc",
"dest": "cargo/vendor/array-init-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc\", \"files\": {}}",
"dest": "cargo/vendor/array-init-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.5.1.crate",
"sha256": "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b",
"dest": "cargo/vendor/async-broadcast-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b\", \"files\": {}}",
"dest": "cargo/vendor/async-broadcast-0.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-channel/async-channel-1.8.0.crate",
"sha256": "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833",
"dest": "cargo/vendor/async-channel-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-1.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-executor/async-executor-1.5.1.crate",
"sha256": "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb",
"dest": "cargo/vendor/async-executor-1.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb\", \"files\": {}}",
"dest": "cargo/vendor/async-executor-1.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-fs/async-fs-1.6.0.crate",
"sha256": "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06",
"dest": "cargo/vendor/async-fs-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06\", \"files\": {}}",
"dest": "cargo/vendor/async-fs-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-global-executor/async-global-executor-2.3.1.crate",
"sha256": "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776",
"dest": "cargo/vendor/async-global-executor-2.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776\", \"files\": {}}",
"dest": "cargo/vendor/async-global-executor-2.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-io/async-io-1.13.0.crate",
"sha256": "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af",
"dest": "cargo/vendor/async-io-1.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af\", \"files\": {}}",
"dest": "cargo/vendor/async-io-1.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-lock/async-lock-2.7.0.crate",
"sha256": "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7",
"dest": "cargo/vendor/async-lock-2.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7\", \"files\": {}}",
"dest": "cargo/vendor/async-lock-2.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-process/async-process-1.7.0.crate",
"sha256": "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9",
"dest": "cargo/vendor/async-process-1.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9\", \"files\": {}}",
"dest": "cargo/vendor/async-process-1.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-recursion/async-recursion-1.0.4.crate",
"sha256": "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba",
"dest": "cargo/vendor/async-recursion-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba\", \"files\": {}}",
"dest": "cargo/vendor/async-recursion-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-std/async-std-1.12.0.crate",
"sha256": "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d",
"dest": "cargo/vendor/async-std-1.12.0"
},
{
"type": "inline",
"contents": "{\"package\": \"62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d\", \"files\": {}}",
"dest": "cargo/vendor/async-std-1.12.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-task/async-task-4.4.0.crate",
"sha256": "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae",
"dest": "cargo/vendor/async-task-4.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae\", \"files\": {}}",
"dest": "cargo/vendor/async-task-4.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.68.crate",
"sha256": "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842",
"dest": "cargo/vendor/async-trait-0.1.68"
},
{
"type": "inline",
"contents": "{\"package\": \"b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.68",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic-waker/atomic-waker-1.1.1.crate",
"sha256": "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3",
"dest": "cargo/vendor/atomic-waker-1.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3\", \"files\": {}}",
"dest": "cargo/vendor/atomic-waker-1.1.1",
"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/backtrace/backtrace-0.3.67.crate",
"sha256": "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca",
"dest": "cargo/vendor/backtrace-0.3.67"
},
{
"type": "inline",
"contents": "{\"package\": \"233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.67",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.13.1.crate",
"sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8",
"dest": "cargo/vendor/base64-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bindgen/bindgen-0.64.0.crate",
"sha256": "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4",
"dest": "cargo/vendor/bindgen-0.64.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4\", \"files\": {}}",
"dest": "cargo/vendor/bindgen-0.64.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
"dest": "cargo/vendor/bitflags-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block/block-0.1.6.crate",
"sha256": "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a",
"dest": "cargo/vendor/block-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a\", \"files\": {}}",
"dest": "cargo/vendor/block-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.9.0.crate",
"sha256": "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4",
"dest": "cargo/vendor/block-buffer-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
"dest": "cargo/vendor/block-buffer-0.10.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-modes/block-modes-0.8.1.crate",
"sha256": "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e",
"dest": "cargo/vendor/block-modes-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e\", \"files\": {}}",
"dest": "cargo/vendor/block-modes-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-padding/block-padding-0.2.1.crate",
"sha256": "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae",
"dest": "cargo/vendor/block-padding-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae\", \"files\": {}}",
"dest": "cargo/vendor/block-padding-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blocking/blocking-1.3.1.crate",
"sha256": "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65",
"dest": "cargo/vendor/blocking-1.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65\", \"files\": {}}",
"dest": "cargo/vendor/blocking-1.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.13.0.crate",
"sha256": "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1",
"dest": "cargo/vendor/bumpalo-3.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.13.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/bytes/bytes-1.4.0.crate",
"sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be",
"dest": "cargo/vendor/bytes-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.4.0",
"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/castaway/castaway-0.1.2.crate",
"sha256": "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6",
"dest": "cargo/vendor/castaway-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6\", \"files\": {}}",
"dest": "cargo/vendor/castaway-0.1.2",
"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/cesu8/cesu8-1.1.0.crate",
"sha256": "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c",
"dest": "cargo/vendor/cesu8-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\", \"files\": {}}",
"dest": "cargo/vendor/cesu8-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cexpr/cexpr-0.6.0.crate",
"sha256": "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766",
"dest": "cargo/vendor/cexpr-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766\", \"files\": {}}",
"dest": "cargo/vendor/cexpr-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.15.1.crate",
"sha256": "c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9",
"dest": "cargo/vendor/cfg-expr-0.15.1"
},
{
"type": "inline",
"contents": "{\"package\": \"c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.15.1",
"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/cipher/cipher-0.2.5.crate",
"sha256": "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801",
"dest": "cargo/vendor/cipher-0.2.5"
},
{
"type": "inline",
"contents": "{\"package\": \"12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801\", \"files\": {}}",
"dest": "cargo/vendor/cipher-0.2.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cipher/cipher-0.3.0.crate",
"sha256": "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7",
"dest": "cargo/vendor/cipher-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7\", \"files\": {}}",
"dest": "cargo/vendor/cipher-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clang-sys/clang-sys-1.6.1.crate",
"sha256": "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f",
"dest": "cargo/vendor/clang-sys-1.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f\", \"files\": {}}",
"dest": "cargo/vendor/clang-sys-1.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/combine/combine-4.6.6.crate",
"sha256": "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4",
"dest": "cargo/vendor/combine-4.6.6"
},
{
"type": "inline",
"contents": "{\"package\": \"35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4\", \"files\": {}}",
"dest": "cargo/vendor/combine-4.6.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.2.0.crate",
"sha256": "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c",
"dest": "cargo/vendor/concurrent-queue-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c\", \"files\": {}}",
"dest": "cargo/vendor/concurrent-queue-2.2.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.4.crate",
"sha256": "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa",
"dest": "cargo/vendor/core-foundation-sys-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/coreaudio-rs/coreaudio-rs-0.10.0.crate",
"sha256": "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88",
"dest": "cargo/vendor/coreaudio-rs-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88\", \"files\": {}}",
"dest": "cargo/vendor/coreaudio-rs-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/coreaudio-sys/coreaudio-sys-0.2.12.crate",
"sha256": "f034b2258e6c4ade2f73bf87b21047567fb913ee9550837c2316d139b0262b24",
"dest": "cargo/vendor/coreaudio-sys-0.2.12"
},
{
"type": "inline",
"contents": "{\"package\": \"f034b2258e6c4ade2f73bf87b21047567fb913ee9550837c2316d139b0262b24\", \"files\": {}}",
"dest": "cargo/vendor/coreaudio-sys-0.2.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpal/cpal-0.13.5.crate",
"sha256": "74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116",
"dest": "cargo/vendor/cpal-0.13.5"
},
{
"type": "inline",
"contents": "{\"package\": \"74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116\", \"files\": {}}",
"dest": "cargo/vendor/cpal-0.13.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.7.crate",
"sha256": "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58",
"dest": "cargo/vendor/cpufeatures-0.2.7"
},
{
"type": "inline",
"contents": "{\"package\": \"3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.7",
"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/crypto-common/crypto-common-0.1.6.crate",
"sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
"dest": "cargo/vendor/crypto-common-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3\", \"files\": {}}",
"dest": "cargo/vendor/crypto-common-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crypto-mac/crypto-mac-0.11.1.crate",
"sha256": "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714",
"dest": "cargo/vendor/crypto-mac-0.11.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714\", \"files\": {}}",
"dest": "cargo/vendor/crypto-mac-0.11.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ctor/ctor-0.1.26.crate",
"sha256": "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096",
"dest": "cargo/vendor/ctor-0.1.26"
},
{
"type": "inline",
"contents": "{\"package\": \"6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096\", \"files\": {}}",
"dest": "cargo/vendor/ctor-0.1.26",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ctr/ctr-0.6.0.crate",
"sha256": "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f",
"dest": "cargo/vendor/ctr-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f\", \"files\": {}}",
"dest": "cargo/vendor/ctr-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl/curl-0.4.44.crate",
"sha256": "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22",
"dest": "cargo/vendor/curl-0.4.44"
},
{
"type": "inline",
"contents": "{\"package\": \"509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22\", \"files\": {}}",
"dest": "cargo/vendor/curl-0.4.44",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/curl-sys/curl-sys-0.4.62+curl-8.1.0.crate",
"sha256": "274ef7ef7c1113c7611af49ce248a700afa1171045a1aaa40137030773f993b8",
"dest": "cargo/vendor/curl-sys-0.4.62+curl-8.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"274ef7ef7c1113c7611af49ce248a700afa1171045a1aaa40137030773f993b8\", \"files\": {}}",
"dest": "cargo/vendor/curl-sys-0.4.62+curl-8.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.13.4.crate",
"sha256": "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c",
"dest": "cargo/vendor/darling-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c\", \"files\": {}}",
"dest": "cargo/vendor/darling-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_core/darling_core-0.13.4.crate",
"sha256": "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610",
"dest": "cargo/vendor/darling_core-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610\", \"files\": {}}",
"dest": "cargo/vendor/darling_core-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_macro/darling_macro-0.13.4.crate",
"sha256": "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835",
"dest": "cargo/vendor/darling_macro-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835\", \"files\": {}}",
"dest": "cargo/vendor/darling_macro-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/derivative/derivative-2.2.0.crate",
"sha256": "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b",
"dest": "cargo/vendor/derivative-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b\", \"files\": {}}",
"dest": "cargo/vendor/derivative-2.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.9.0.crate",
"sha256": "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066",
"dest": "cargo/vendor/digest-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.10.7.crate",
"sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292",
"dest": "cargo/vendor/digest-0.10.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.10.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.32.crate",
"sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394",
"dest": "cargo/vendor/encoding_rs-0.8.32"
},
{
"type": "inline",
"contents": "{\"package\": \"071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394\", \"files\": {}}",
"dest": "cargo/vendor/encoding_rs-0.8.32",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2/enumflags2-0.7.7.crate",
"sha256": "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2",
"dest": "cargo/vendor/enumflags2-0.7.7"
},
{
"type": "inline",
"contents": "{\"package\": \"c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2-0.7.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.7.7.crate",
"sha256": "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745",
"dest": "cargo/vendor/enumflags2_derive-0.7.7"
},
{
"type": "inline",
"contents": "{\"package\": \"5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2_derive-0.7.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/env_logger/env_logger-0.9.3.crate",
"sha256": "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7",
"dest": "cargo/vendor/env_logger-0.9.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7\", \"files\": {}}",
"dest": "cargo/vendor/env_logger-0.9.3",