-
Notifications
You must be signed in to change notification settings - Fork 0
/
sources.json
4413 lines (4413 loc) · 196 KB
/
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": "git",
"url": "https://github.com/livesplit/livesplit-core",
"commit": "bb8cb41fe60ce25e5147342bb3df2eeb27087524",
"dest": "flatpak-cargo/git/livesplit-core-bb8cb41"
},
{
"type": "git",
"url": "https://github.com/cryze/simdutf8",
"commit": "6462aef317a3685c5d2749d3d8e7221a693da0b5",
"dest": "flatpak-cargo/git/simdutf8-6462aef"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/addr2line/addr2line-0.21.0.crate",
"sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb",
"dest": "cargo/vendor/addr2line-0.21.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.21.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.8.11.crate",
"sha256": "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011",
"dest": "cargo/vendor/ahash-0.8.11"
},
{
"type": "inline",
"contents": "{\"package\": \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.3.crate",
"sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916",
"dest": "cargo/vendor/aho-corasick-1.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.16.crate",
"sha256": "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5",
"dest": "cargo/vendor/allocator-api2-0.2.16"
},
{
"type": "inline",
"contents": "{\"package\": \"0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5\", \"files\": {}}",
"dest": "cargo/vendor/allocator-api2-0.2.16",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ambient-authority/ambient-authority-0.0.2.crate",
"sha256": "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b",
"dest": "cargo/vendor/ambient-authority-0.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b\", \"files\": {}}",
"dest": "cargo/vendor/ambient-authority-0.0.2",
"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.81.crate",
"sha256": "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247",
"dest": "cargo/vendor/anyhow-1.0.81"
},
{
"type": "inline",
"contents": "{\"package\": \"0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.81",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arbitrary/arbitrary-1.3.2.crate",
"sha256": "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110",
"dest": "cargo/vendor/arbitrary-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110\", \"files\": {}}",
"dest": "cargo/vendor/arbitrary-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arc-swap/arc-swap-1.7.1.crate",
"sha256": "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457",
"dest": "cargo/vendor/arc-swap-1.7.1"
},
{
"type": "inline",
"contents": "{\"package\": \"69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457\", \"files\": {}}",
"dest": "cargo/vendor/arc-swap-1.7.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayref/arrayref-0.3.7.crate",
"sha256": "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545",
"dest": "cargo/vendor/arrayref-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.4.crate",
"sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711",
"dest": "cargo/vendor/arrayvec-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.78.crate",
"sha256": "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85",
"dest": "cargo/vendor/async-trait-0.1.78"
},
{
"type": "inline",
"contents": "{\"package\": \"461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.78",
"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.71.crate",
"sha256": "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d",
"dest": "cargo/vendor/backtrace-0.3.71"
},
{
"type": "inline",
"contents": "{\"package\": \"26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.71",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.21.7.crate",
"sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567",
"dest": "cargo/vendor/base64-0.21.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.21.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.22.1.crate",
"sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6",
"dest": "cargo/vendor/base64-0.22.1"
},
{
"type": "inline",
"contents": "{\"package\": \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.22.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64-simd/base64-simd-0.8.0.crate",
"sha256": "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195",
"dest": "cargo/vendor/base64-simd-0.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195\", \"files\": {}}",
"dest": "cargo/vendor/base64-simd-0.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bincode/bincode-1.3.3.crate",
"sha256": "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad",
"dest": "cargo/vendor/bincode-1.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\", \"files\": {}}",
"dest": "cargo/vendor/bincode-1.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bindgen/bindgen-0.69.4.crate",
"sha256": "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0",
"dest": "cargo/vendor/bindgen-0.69.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0\", \"files\": {}}",
"dest": "cargo/vendor/bindgen-0.69.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
"dest": "cargo/vendor/bitflags-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-2.5.0.crate",
"sha256": "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1",
"dest": "cargo/vendor/bitflags-2.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitvec/bitvec-1.0.1.crate",
"sha256": "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c",
"dest": "cargo/vendor/bitvec-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\", \"files\": {}}",
"dest": "cargo/vendor/bitvec-1.0.1",
"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/bumpalo/bumpalo-3.15.4.crate",
"sha256": "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa",
"dest": "cargo/vendor/bumpalo-3.15.4"
},
{
"type": "inline",
"contents": "{\"package\": \"7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.15.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.15.0.crate",
"sha256": "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15",
"dest": "cargo/vendor/bytemuck-1.15.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.15.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.6.0.crate",
"sha256": "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60",
"dest": "cargo/vendor/bytemuck_derive-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck_derive-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.5.0.crate",
"sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b",
"dest": "cargo/vendor/byteorder-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytes/bytes-1.6.0.crate",
"sha256": "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9",
"dest": "cargo/vendor/bytes-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cap-fs-ext/cap-fs-ext-2.0.1.crate",
"sha256": "88e341d15ac1029aadce600be764a1a1edafe40e03cde23285bc1d261b3a4866",
"dest": "cargo/vendor/cap-fs-ext-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"88e341d15ac1029aadce600be764a1a1edafe40e03cde23285bc1d261b3a4866\", \"files\": {}}",
"dest": "cargo/vendor/cap-fs-ext-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cap-primitives/cap-primitives-2.0.1.crate",
"sha256": "fe16767ed8eee6d3f1f00d6a7576b81c226ab917eb54b96e5f77a5216ef67abb",
"dest": "cargo/vendor/cap-primitives-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"fe16767ed8eee6d3f1f00d6a7576b81c226ab917eb54b96e5f77a5216ef67abb\", \"files\": {}}",
"dest": "cargo/vendor/cap-primitives-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cap-rand/cap-rand-2.0.1.crate",
"sha256": "20e5695565f0cd7106bc3c7170323597540e772bb73e0be2cd2c662a0f8fa4ca",
"dest": "cargo/vendor/cap-rand-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"20e5695565f0cd7106bc3c7170323597540e772bb73e0be2cd2c662a0f8fa4ca\", \"files\": {}}",
"dest": "cargo/vendor/cap-rand-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cap-std/cap-std-2.0.1.crate",
"sha256": "593db20e4c51f62d3284bae7ee718849c3214f93a3b94ea1899ad85ba119d330",
"dest": "cargo/vendor/cap-std-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"593db20e4c51f62d3284bae7ee718849c3214f93a3b94ea1899ad85ba119d330\", \"files\": {}}",
"dest": "cargo/vendor/cap-std-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cap-time-ext/cap-time-ext-2.0.1.crate",
"sha256": "03261630f291f425430a36f38c847828265bc928f517cdd2004c56f4b02f002b",
"dest": "cargo/vendor/cap-time-ext-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"03261630f291f425430a36f38c847828265bc928f517cdd2004c56f4b02f002b\", \"files\": {}}",
"dest": "cargo/vendor/cap-time-ext-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.90.crate",
"sha256": "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5",
"dest": "cargo/vendor/cc-1.0.90"
},
{
"type": "inline",
"contents": "{\"package\": \"8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.90",
"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-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/cfg_aliases/cfg_aliases-0.1.1.crate",
"sha256": "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e",
"dest": "cargo/vendor/cfg_aliases-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e\", \"files\": {}}",
"dest": "cargo/vendor/cfg_aliases-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clang-sys/clang-sys-1.7.0.crate",
"sha256": "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1",
"dest": "cargo/vendor/clang-sys-1.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1\", \"files\": {}}",
"dest": "cargo/vendor/clang-sys-1.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/core-foundation/core-foundation-0.9.4.crate",
"sha256": "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f",
"dest": "cargo/vendor/core-foundation-0.9.4"
},
{
"type": "inline",
"contents": "{\"package\": \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.9.4",
"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.6.crate",
"sha256": "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f",
"dest": "cargo/vendor/core-foundation-sys-0.8.6"
},
{
"type": "inline",
"contents": "{\"package\": \"06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cosmic-text/cosmic-text-0.10.0.crate",
"sha256": "75acbfb314aeb4f5210d379af45ed1ec2c98c7f1790bf57b8a4c562ac0c51b71",
"dest": "cargo/vendor/cosmic-text-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"75acbfb314aeb4f5210d379af45ed1ec2c98c7f1790bf57b8a4c562ac0c51b71\", \"files\": {}}",
"dest": "cargo/vendor/cosmic-text-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpp_demangle/cpp_demangle-0.3.5.crate",
"sha256": "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f",
"dest": "cargo/vendor/cpp_demangle-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f\", \"files\": {}}",
"dest": "cargo/vendor/cpp_demangle-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.12.crate",
"sha256": "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504",
"dest": "cargo/vendor/cpufeatures-0.2.12"
},
{
"type": "inline",
"contents": "{\"package\": \"53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-bforest/cranelift-bforest-0.104.2.crate",
"sha256": "95ffa62b81e6d1b987933240ed7de5d4d85ae2e07153e3f9b74fc27ecfd81d2c",
"dest": "cargo/vendor/cranelift-bforest-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"95ffa62b81e6d1b987933240ed7de5d4d85ae2e07153e3f9b74fc27ecfd81d2c\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-bforest-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-codegen/cranelift-codegen-0.104.2.crate",
"sha256": "3af519738eb5d96c0d48b04845c88d0412a40167b5c42884e090fe9e015842ff",
"dest": "cargo/vendor/cranelift-codegen-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3af519738eb5d96c0d48b04845c88d0412a40167b5c42884e090fe9e015842ff\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-codegen-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-codegen-meta/cranelift-codegen-meta-0.104.2.crate",
"sha256": "ba2da643fa5ccaf53cbb8db6acf3372321e2e13507d62c7c565529dd6f2d0ea0",
"dest": "cargo/vendor/cranelift-codegen-meta-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"ba2da643fa5ccaf53cbb8db6acf3372321e2e13507d62c7c565529dd6f2d0ea0\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-codegen-meta-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-codegen-shared/cranelift-codegen-shared-0.104.2.crate",
"sha256": "b3745d6c656649940d3f42d263b8ba00805e9bf1203205a0d98a7517a2fe5a35",
"dest": "cargo/vendor/cranelift-codegen-shared-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b3745d6c656649940d3f42d263b8ba00805e9bf1203205a0d98a7517a2fe5a35\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-codegen-shared-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-control/cranelift-control-0.104.2.crate",
"sha256": "41a521e2d0b427fe026457b70ba1896d9d560af72a47982db19fef11aa0ee789",
"dest": "cargo/vendor/cranelift-control-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"41a521e2d0b427fe026457b70ba1896d9d560af72a47982db19fef11aa0ee789\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-control-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-entity/cranelift-entity-0.104.2.crate",
"sha256": "96a6b8d80c6235fd73c0e9218d89f498b398fb0c52d4b30abd9a388da613f71f",
"dest": "cargo/vendor/cranelift-entity-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"96a6b8d80c6235fd73c0e9218d89f498b398fb0c52d4b30abd9a388da613f71f\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-entity-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-frontend/cranelift-frontend-0.104.2.crate",
"sha256": "a3d555819f3a49c01826ce5bf0f3e52a4e17be9c4ee09381d6a1d88549793f3c",
"dest": "cargo/vendor/cranelift-frontend-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a3d555819f3a49c01826ce5bf0f3e52a4e17be9c4ee09381d6a1d88549793f3c\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-frontend-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-isle/cranelift-isle-0.104.2.crate",
"sha256": "53aeebed3b78faea701062d4e384bffe91aef33e47d949bad10e5c540a00916d",
"dest": "cargo/vendor/cranelift-isle-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"53aeebed3b78faea701062d4e384bffe91aef33e47d949bad10e5c540a00916d\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-isle-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-native/cranelift-native-0.104.2.crate",
"sha256": "cc99479323e678deac40abffec0ca7a52cc6c549c0fa351b2d3a76655202a5a7",
"dest": "cargo/vendor/cranelift-native-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cc99479323e678deac40abffec0ca7a52cc6c549c0fa351b2d3a76655202a5a7\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-native-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cranelift-wasm/cranelift-wasm-0.104.2.crate",
"sha256": "cab055df5f977a3fee2837cd447b899d98a5e72374341461535b758608f25175",
"dest": "cargo/vendor/cranelift-wasm-0.104.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cab055df5f977a3fee2837cd447b899d98a5e72374341461535b758608f25175\", \"files\": {}}",
"dest": "cargo/vendor/cranelift-wasm-0.104.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.4.0.crate",
"sha256": "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa",
"dest": "cargo/vendor/crc32fast-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.12.crate",
"sha256": "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95",
"dest": "cargo/vendor/crossbeam-channel-0.5.12"
},
{
"type": "inline",
"contents": "{\"package\": \"ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.5.crate",
"sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d",
"dest": "cargo/vendor/crossbeam-deque-0.8.5"
},
{
"type": "inline",
"contents": "{\"package\": \"613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.18.crate",
"sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18"
},
{
"type": "inline",
"contents": "{\"package\": \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.19.crate",
"sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345",
"dest": "cargo/vendor/crossbeam-utils-0.8.19"
},
{
"type": "inline",
"contents": "{\"package\": \"248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/deranged/deranged-0.3.11.crate",
"sha256": "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4",
"dest": "cargo/vendor/deranged-0.3.11"
},
{
"type": "inline",
"contents": "{\"package\": \"b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4\", \"files\": {}}",
"dest": "cargo/vendor/deranged-0.3.11",
"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/dirs/dirs-4.0.0.crate",
"sha256": "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059",
"dest": "cargo/vendor/dirs-4.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\", \"files\": {}}",
"dest": "cargo/vendor/dirs-4.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/either/either-1.10.0.crate",
"sha256": "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a",
"dest": "cargo/vendor/either-1.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a\", \"files\": {}}",
"dest": "cargo/vendor/either-1.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/equivalent/equivalent-1.0.1.crate",
"sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5",
"dest": "cargo/vendor/equivalent-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5\", \"files\": {}}",
"dest": "cargo/vendor/equivalent-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.3.8.crate",
"sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245",
"dest": "cargo/vendor/errno-0.3.8"
},
{
"type": "inline",
"contents": "{\"package\": \"a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.3.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/evdev/evdev-0.12.1.crate",
"sha256": "2bed59fcc8cfd6b190814a509018388462d3b203cf6dd10db5c00087e72a83f3",
"dest": "cargo/vendor/evdev-0.12.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2bed59fcc8cfd6b190814a509018388462d3b203cf6dd10db5c00087e72a83f3\", \"files\": {}}",
"dest": "cargo/vendor/evdev-0.12.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fallible-iterator/fallible-iterator-0.3.0.crate",
"sha256": "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649",
"dest": "cargo/vendor/fallible-iterator-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649\", \"files\": {}}",
"dest": "cargo/vendor/fallible-iterator-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fd-lock/fd-lock-4.0.2.crate",
"sha256": "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947",
"dest": "cargo/vendor/fd-lock-4.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947\", \"files\": {}}",
"dest": "cargo/vendor/fd-lock-4.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.4.crate",
"sha256": "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645",
"dest": "cargo/vendor/fdeflate-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645\", \"files\": {}}",
"dest": "cargo/vendor/fdeflate-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.28.crate",
"sha256": "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e",
"dest": "cargo/vendor/flate2-1.0.28"
},
{
"type": "inline",
"contents": "{\"package\": \"46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/fontdb/fontdb-0.15.0.crate",
"sha256": "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38",
"dest": "cargo/vendor/fontdb-0.15.0"
},
{
"type": "inline",
"contents": "{\"package\": \"020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38\", \"files\": {}}",
"dest": "cargo/vendor/fontdb-0.15.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.2.1.crate",
"sha256": "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456",
"dest": "cargo/vendor/form_urlencoded-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.2.1",
"dest-filename": ".cargo-checksum.json"