-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcargo-sources.json
4324 lines (4324 loc) · 180 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/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.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/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.66.crate",
"sha256": "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6",
"dest": "cargo/vendor/anyhow-1.0.66"
},
{
"type": "inline",
"contents": "{\"package\": \"216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.66",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk/atk-0.16.0.crate",
"sha256": "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf",
"dest": "cargo/vendor/atk-0.16.0"
},
{
"type": "inline",
"contents": "{\"package\": \"39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf\", \"files\": {}}",
"dest": "cargo/vendor/atk-0.16.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk-sys/atk-sys-0.16.0.crate",
"sha256": "11ad703eb64dc058024f0e57ccfa069e15a413b98dbd50a1a950e743b7f11148",
"dest": "cargo/vendor/atk-sys-0.16.0"
},
{
"type": "inline",
"contents": "{\"package\": \"11ad703eb64dc058024f0e57ccfa069e15a413b98dbd50a1a950e743b7f11148\", \"files\": {}}",
"dest": "cargo/vendor/atk-sys-0.16.0",
"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/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/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/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.10.3.crate",
"sha256": "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e",
"dest": "cargo/vendor/block-buffer-0.10.3"
},
{
"type": "inline",
"contents": "{\"package\": \"69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.11.1.crate",
"sha256": "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba",
"dest": "cargo/vendor/bumpalo-3.11.1"
},
{
"type": "inline",
"contents": "{\"package\": \"572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.11.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.12.3.crate",
"sha256": "aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f",
"dest": "cargo/vendor/bytemuck-1.12.3"
},
{
"type": "inline",
"contents": "{\"package\": \"aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.12.3",
"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.1.0.crate",
"sha256": "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8",
"dest": "cargo/vendor/bytes-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2/bzip2-0.4.3.crate",
"sha256": "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0",
"dest": "cargo/vendor/bzip2-0.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-0.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2-sys/bzip2-sys-0.1.11+1.0.8.crate",
"sha256": "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc",
"dest": "cargo/vendor/bzip2-sys-0.1.11+1.0.8"
},
{
"type": "inline",
"contents": "{\"package\": \"736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-sys-0.1.11+1.0.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.16.7.crate",
"sha256": "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d",
"dest": "cargo/vendor/cairo-rs-0.16.7"
},
{
"type": "inline",
"contents": "{\"package\": \"f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.16.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.16.3.crate",
"sha256": "7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421",
"dest": "cargo/vendor/cairo-sys-rs-0.16.3"
},
{
"type": "inline",
"contents": "{\"package\": \"7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.16.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cargo_toml/cargo_toml-0.15.2.crate",
"sha256": "7f83bc2e401ed041b7057345ebc488c005efa0341d5541ce7004d30458d0090b",
"dest": "cargo/vendor/cargo_toml-0.15.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7f83bc2e401ed041b7057345ebc488c005efa0341d5541ce7004d30458d0090b\", \"files\": {}}",
"dest": "cargo/vendor/cargo_toml-0.15.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.76.crate",
"sha256": "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f",
"dest": "cargo/vendor/cc-1.0.76"
},
{
"type": "inline",
"contents": "{\"package\": \"76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.76",
"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/cfg-expr/cfg-expr-0.11.0.crate",
"sha256": "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa",
"dest": "cargo/vendor/cfg-expr-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-0.1.10.crate",
"sha256": "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822",
"dest": "cargo/vendor/cfg-if-0.1.10"
},
{
"type": "inline",
"contents": "{\"package\": \"4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-0.1.10",
"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.22.crate",
"sha256": "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1",
"dest": "cargo/vendor/chrono-0.4.22"
},
{
"type": "inline",
"contents": "{\"package\": \"bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-4.0.22.crate",
"sha256": "91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682",
"dest": "cargo/vendor/clap-4.0.22"
},
{
"type": "inline",
"contents": "{\"package\": \"91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682\", \"files\": {}}",
"dest": "cargo/vendor/clap-4.0.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-4.0.21.crate",
"sha256": "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014",
"dest": "cargo/vendor/clap_derive-4.0.21"
},
{
"type": "inline",
"contents": "{\"package\": \"0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014\", \"files\": {}}",
"dest": "cargo/vendor/clap_derive-4.0.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.3.0.crate",
"sha256": "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8",
"dest": "cargo/vendor/clap_lex-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8\", \"files\": {}}",
"dest": "cargo/vendor/clap_lex-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cocoa/cocoa-0.24.1.crate",
"sha256": "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a",
"dest": "cargo/vendor/cocoa-0.24.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a\", \"files\": {}}",
"dest": "cargo/vendor/cocoa-0.24.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cocoa-foundation/cocoa-foundation-0.1.0.crate",
"sha256": "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318",
"dest": "cargo/vendor/cocoa-foundation-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318\", \"files\": {}}",
"dest": "cargo/vendor/cocoa-foundation-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/codespan-reporting/codespan-reporting-0.11.1.crate",
"sha256": "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e",
"dest": "cargo/vendor/codespan-reporting-0.11.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e\", \"files\": {}}",
"dest": "cargo/vendor/codespan-reporting-0.11.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/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/core-foundation/core-foundation-0.9.3.crate",
"sha256": "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146",
"dest": "cargo/vendor/core-foundation-0.9.3"
},
{
"type": "inline",
"contents": "{\"package\": \"194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.9.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.3.crate",
"sha256": "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc",
"dest": "cargo/vendor/core-foundation-sys-0.8.3"
},
{
"type": "inline",
"contents": "{\"package\": \"5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics/core-graphics-0.22.3.crate",
"sha256": "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb",
"dest": "cargo/vendor/core-graphics-0.22.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-0.22.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.1.1.crate",
"sha256": "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b",
"dest": "cargo/vendor/core-graphics-types-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-types-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.5.crate",
"sha256": "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320",
"dest": "cargo/vendor/cpufeatures-0.2.5"
},
{
"type": "inline",
"contents": "{\"package\": \"28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.5",
"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-channel/crossbeam-channel-0.5.6.crate",
"sha256": "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521",
"dest": "cargo/vendor/crossbeam-channel-0.5.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.2.crate",
"sha256": "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc",
"dest": "cargo/vendor/crossbeam-deque-0.8.2"
},
{
"type": "inline",
"contents": "{\"package\": \"715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.11.crate",
"sha256": "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348",
"dest": "cargo/vendor/crossbeam-epoch-0.9.11"
},
{
"type": "inline",
"contents": "{\"package\": \"f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.12.crate",
"sha256": "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac",
"dest": "cargo/vendor/crossbeam-utils-0.8.12"
},
{
"type": "inline",
"contents": "{\"package\": \"edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crunchy/crunchy-0.2.2.crate",
"sha256": "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7",
"dest": "cargo/vendor/crunchy-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7\", \"files\": {}}",
"dest": "cargo/vendor/crunchy-0.2.2",
"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/cty/cty-0.2.2.crate",
"sha256": "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35",
"dest": "cargo/vendor/cty-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35\", \"files\": {}}",
"dest": "cargo/vendor/cty-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxx/cxx-1.0.81.crate",
"sha256": "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888",
"dest": "cargo/vendor/cxx-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888\", \"files\": {}}",
"dest": "cargo/vendor/cxx-1.0.81",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxx-build/cxx-build-1.0.81.crate",
"sha256": "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3",
"dest": "cargo/vendor/cxx-build-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3\", \"files\": {}}",
"dest": "cargo/vendor/cxx-build-1.0.81",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxxbridge-flags/cxxbridge-flags-1.0.81.crate",
"sha256": "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f",
"dest": "cargo/vendor/cxxbridge-flags-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f\", \"files\": {}}",
"dest": "cargo/vendor/cxxbridge-flags-1.0.81",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cxxbridge-macro/cxxbridge-macro-1.0.81.crate",
"sha256": "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704",
"dest": "cargo/vendor/cxxbridge-macro-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704\", \"files\": {}}",
"dest": "cargo/vendor/cxxbridge-macro-1.0.81",
"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.10.5.crate",
"sha256": "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c",
"dest": "cargo/vendor/digest-0.10.5"
},
{
"type": "inline",
"contents": "{\"package\": \"adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.10.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs/dirs-2.0.2.crate",
"sha256": "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3",
"dest": "cargo/vendor/dirs-2.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3\", \"files\": {}}",
"dest": "cargo/vendor/dirs-2.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs/dirs-5.0.1.crate",
"sha256": "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225",
"dest": "cargo/vendor/dirs-5.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225\", \"files\": {}}",
"dest": "cargo/vendor/dirs-5.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs-next/dirs-next-2.0.0.crate",
"sha256": "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1",
"dest": "cargo/vendor/dirs-next-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1\", \"files\": {}}",
"dest": "cargo/vendor/dirs-next-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.3.7.crate",
"sha256": "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6",
"dest": "cargo/vendor/dirs-sys-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\", \"files\": {}}",
"dest": "cargo/vendor/dirs-sys-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.4.1.crate",
"sha256": "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c",
"dest": "cargo/vendor/dirs-sys-0.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c\", \"files\": {}}",
"dest": "cargo/vendor/dirs-sys-0.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs-sys-next/dirs-sys-next-0.1.2.crate",
"sha256": "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d",
"dest": "cargo/vendor/dirs-sys-next-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d\", \"files\": {}}",
"dest": "cargo/vendor/dirs-sys-next-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dispatch/dispatch-0.2.0.crate",
"sha256": "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b",
"dest": "cargo/vendor/dispatch-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b\", \"files\": {}}",
"dest": "cargo/vendor/dispatch-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.8.0.crate",
"sha256": "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797",
"dest": "cargo/vendor/either-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797\", \"files\": {}}",
"dest": "cargo/vendor/either-1.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.31.crate",
"sha256": "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b",
"dest": "cargo/vendor/encoding_rs-0.8.31"
},
{
"type": "inline",
"contents": "{\"package\": \"9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b\", \"files\": {}}",
"dest": "cargo/vendor/encoding_rs-0.8.31",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/env_logger/env_logger-0.10.0.crate",
"sha256": "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0",
"dest": "cargo/vendor/env_logger-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0\", \"files\": {}}",
"dest": "cargo/vendor/env_logger-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.2.8.crate",
"sha256": "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1",
"dest": "cargo/vendor/errno-0.2.8"
},
{
"type": "inline",
"contents": "{\"package\": \"f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.2.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno-dragonfly/errno-dragonfly-0.1.2.crate",
"sha256": "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf",
"dest": "cargo/vendor/errno-dragonfly-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf\", \"files\": {}}",
"dest": "cargo/vendor/errno-dragonfly-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/exr/exr-1.5.2.crate",
"sha256": "8eb5f255b5980bb0c8cf676b675d1a99be40f316881444f44e0462eaf5df5ded",
"dest": "cargo/vendor/exr-1.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8eb5f255b5980bb0c8cf676b675d1a99be40f316881444f44e0462eaf5df5ded\", \"files\": {}}",
"dest": "cargo/vendor/exr-1.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-1.8.0.crate",
"sha256": "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499",
"dest": "cargo/vendor/fastrand-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-1.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/field-offset/field-offset-0.3.4.crate",
"sha256": "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92",
"dest": "cargo/vendor/field-offset-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92\", \"files\": {}}",
"dest": "cargo/vendor/field-offset-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/filetime/filetime-0.2.18.crate",
"sha256": "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3",
"dest": "cargo/vendor/filetime-0.2.18"
},
{
"type": "inline",
"contents": "{\"package\": \"4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3\", \"files\": {}}",
"dest": "cargo/vendor/filetime-0.2.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.25.crate",
"sha256": "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841",
"dest": "cargo/vendor/flate2-1.0.25"
},
{
"type": "inline",
"contents": "{\"package\": \"a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.25",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flume/flume-0.10.14.crate",
"sha256": "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577",
"dest": "cargo/vendor/flume-0.10.14"
},
{
"type": "inline",
"contents": "{\"package\": \"1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577\", \"files\": {}}",
"dest": "cargo/vendor/flume-0.10.14",
"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/foreign-types/foreign-types-0.3.2.crate",
"sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1",
"dest": "cargo/vendor/foreign-types-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\", \"files\": {}}",
"dest": "cargo/vendor/foreign-types-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/foreign-types-shared/foreign-types-shared-0.1.1.crate",
"sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b",
"dest": "cargo/vendor/foreign-types-shared-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\", \"files\": {}}",
"dest": "cargo/vendor/foreign-types-shared-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.0.1.crate",
"sha256": "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191",
"dest": "cargo/vendor/form_urlencoded-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.0.1",