-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo-sources.json
4195 lines (4195 loc) · 183 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": "git",
"url": "https://github.com/piegamesde/fern",
"commit": "c4efeb3e9265cb0c3f59e4e1274c4f5f873b5936",
"dest": "flatpak-cargo/git/fern-c4efeb3"
},
{
"type": "git",
"url": "https://github.com/piegamesde/pipeline.rs",
"commit": "c0c2f6ddf57b49dd628ccfe3d256cf3e4af0cec9",
"dest": "flatpak-cargo/git/pipeline.rs-c0c2f6d"
},
{
"type": "git",
"url": "https://github.com/piegamesde/rust-xdg",
"commit": "d9f887ea46f1b192341eefc66a3323af37b25174",
"dest": "flatpak-cargo/git/rust-xdg-d9f887e"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ab_glyph_rasterizer/ab_glyph_rasterizer-0.1.8.crate",
"sha256": "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.8"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.8",
"dest-filename": ".cargo-checksum.json"
},
{
"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": "file",
"url": "data:%7B%22package%22%3A%20%22a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/adler-1.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": "file",
"url": "data:%7B%22package%22%3A%20%22819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%229c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/anyhow-1.0.71",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/approx/approx-0.5.1.crate",
"sha256": "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6",
"dest": "cargo/vendor/approx-0.5.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/approx-0.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arbitrary/arbitrary-0.4.7.crate",
"sha256": "db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569",
"dest": "cargo/vendor/arbitrary-0.4.7"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/arbitrary-0.4.7",
"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": "file",
"url": "data:%7B%22package%22%3A%20%226b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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.5.2.crate",
"sha256": "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b",
"dest": "cargo/vendor/arrayvec-0.5.2"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2223b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/arrayvec-0.5.2",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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-lock/async-lock-2.7.0.crate",
"sha256": "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7",
"dest": "cargo/vendor/async-lock-2.7.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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-task/async-task-4.4.0.crate",
"sha256": "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae",
"dest": "cargo/vendor/async-task-4.4.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/atomic-waker/atomic-waker-1.1.1.crate",
"sha256": "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3",
"dest": "cargo/vendor/atomic-waker-1.1.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%221181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/atomicwrites/atomicwrites-0.3.1.crate",
"sha256": "eb8f2cd6962fa53c0e2a9d3f97eaa7dbd1e3cbbeeb4745403515b42ae07b3ff6",
"dest": "cargo/vendor/atomicwrites-0.3.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22eb8f2cd6962fa53c0e2a9d3f97eaa7dbd1e3cbbeeb4745403515b42ae07b3ff6%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/atomicwrites-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/attohttpc/attohttpc-0.19.1.crate",
"sha256": "262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e",
"dest": "cargo/vendor/attohttpc-0.19.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/attohttpc-0.19.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": "file",
"url": "data:%7B%22package%22%3A%20%22d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%229e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/base64-0.13.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": "file",
"url": "data:%7B%22package%22%3A%20%22bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/bitflags-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blake2b_simd/blake2b_simd-0.5.11.crate",
"sha256": "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587",
"dest": "cargo/vendor/blake2b_simd-0.5.11"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/blake2b_simd-0.5.11",
"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": "file",
"url": "data:%7B%22package%22%3A%20%2277231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/bumpalo-3.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.13.1.crate",
"sha256": "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea",
"dest": "cargo/vendor/bytemuck-1.13.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2217febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/bytemuck-1.13.1",
"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": "file",
"url": "data:%7B%22package%22%3A%20%2214c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%2289b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/bytes-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2/bzip2-0.4.4.crate",
"sha256": "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8",
"dest": "cargo/vendor/bzip2-0.4.4"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/bzip2-0.4.4",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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.17.0.crate",
"sha256": "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871",
"dest": "cargo/vendor/cairo-rs-0.17.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/cc/cc-1.0.79.crate",
"sha256": "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f",
"dest": "cargo/vendor/cc-1.0.79"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2250d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/cc-1.0.79",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%224e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/chrono-0.4.24",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-3.2.25.crate",
"sha256": "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123",
"dest": "cargo/vendor/clap-3.2.25"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%224ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/clap-3.2.25",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_derive/clap_derive-3.2.25.crate",
"sha256": "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008",
"dest": "cargo/vendor/clap_derive-3.2.25"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/clap_derive-3.2.25",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap_lex/clap_lex-0.2.4.crate",
"sha256": "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5",
"dest": "cargo/vendor/clap_lex-0.2.4"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%222850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/clap_lex-0.2.4",
"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": "file",
"url": "data:%7B%22package%22%3A%20%223d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/colored/colored-1.9.3.crate",
"sha256": "f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59",
"dest": "cargo/vendor/colored-1.9.3"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/colored-1.9.3",
"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": "file",
"url": "data:%7B%22package%22%3A%20%2262ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/constant_time_eq/constant_time_eq-0.1.5.crate",
"sha256": "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc",
"dest": "cargo/vendor/constant_time_eq-0.1.5"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/constant_time_eq-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/conv/conv-0.3.3.crate",
"sha256": "78ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299",
"dest": "cargo/vendor/conv-0.3.3"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2278ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/conv-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/convert_case/convert_case-0.4.0.crate",
"sha256": "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e",
"dest": "cargo/vendor/convert_case-0.4.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%226245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/convert_case-0.4.0",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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.4.crate",
"sha256": "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa",
"dest": "cargo/vendor/core-foundation-sys-0.8.4"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/crc32fast/crc32fast-1.3.2.crate",
"sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d",
"dest": "cargo/vendor/crc32fast-1.3.2"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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.8.crate",
"sha256": "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200",
"dest": "cargo/vendor/crossbeam-channel-0.5.8"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/crossbeam-channel-0.5.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.3.crate",
"sha256": "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef",
"dest": "cargo/vendor/crossbeam-deque-0.8.3"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/crossbeam-deque-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.14.crate",
"sha256": "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695",
"dest": "cargo/vendor/crossbeam-epoch-0.9.14"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2246bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/crossbeam-epoch-0.9.14",
"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": "file",
"url": "data:%7B%22package%22%3A%20%223c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/custom_derive/custom_derive-0.1.7.crate",
"sha256": "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9",
"dest": "cargo/vendor/custom_derive-0.1.7"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/custom_derive-0.1.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.13.4.crate",
"sha256": "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c",
"dest": "cargo/vendor/darling-0.13.4"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%229c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/derive_arbitrary/derive_arbitrary-0.4.7.crate",
"sha256": "b1a012b5e473dc912f0db0546a1c9c6a194ce8494feb66fa0237160926f9e0e6",
"dest": "cargo/vendor/derive_arbitrary-0.4.7"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22b1a012b5e473dc912f0db0546a1c9c6a194ce8494feb66fa0237160926f9e0e6%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/derive_arbitrary-0.4.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/derive_more/derive_more-0.99.17.crate",
"sha256": "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321",
"dest": "cargo/vendor/derive_more-0.99.17"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%224fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/derive_more-0.99.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs/dirs-1.0.5.crate",
"sha256": "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901",
"dest": "cargo/vendor/dirs-1.0.5"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%223fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/dirs-1.0.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.8.1.crate",
"sha256": "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91",
"dest": "cargo/vendor/either-1.8.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%227fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/either-1.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/errno/errno-0.3.1.crate",
"sha256": "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a",
"dest": "cargo/vendor/errno-0.3.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%224bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/errno-0.3.1",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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/event-listener/event-listener-2.5.3.crate",
"sha256": "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0",
"dest": "cargo/vendor/event-listener-2.5.3"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%220206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/event-listener-2.5.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-1.9.0.crate",
"sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be",
"dest": "cargo/vendor/fastrand-1.9.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fastrand-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.0.crate",
"sha256": "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10",
"dest": "cargo/vendor/fdeflate-0.3.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fdeflate-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "shell",
"commands": [
"cp -r --reflink=auto \"flatpak-cargo/git/fern-c4efeb3/.\" \"cargo/vendor/fern\""
]
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20null%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fern",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/field-offset/field-offset-0.3.5.crate",
"sha256": "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535",
"dest": "cargo/vendor/field-offset-0.3.5"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/field-offset-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.26.crate",
"sha256": "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743",
"dest": "cargo/vendor/flate2-1.0.26"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%223b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/flate2-1.0.26",
"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": "file",
"url": "data:%7B%22package%22%3A%20%223f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%22f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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": "file",
"url": "data:%7B%22package%22%3A%20%2200b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b%22%2C%20%22files%22%3A%20%7B%7D%7D",
"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.1.0.crate",
"sha256": "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8",
"dest": "cargo/vendor/form_urlencoded-1.1.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/form_urlencoded-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fragile/fragile-1.2.2.crate",
"sha256": "b7464c5c4a3f014d9b2ec4073650e5c06596f385060af740fc45ad5a19f959e8",
"dest": "cargo/vendor/fragile-1.2.2"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22b7464c5c4a3f014d9b2ec4073650e5c06596f385060af740fc45ad5a19f959e8%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fragile-1.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fragile/fragile-2.0.0.crate",
"sha256": "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa",
"dest": "cargo/vendor/fragile-2.0.0"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%226c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fragile-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fuchsia-cprng/fuchsia-cprng-0.1.1.crate",
"sha256": "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba",
"dest": "cargo/vendor/fuchsia-cprng-0.1.1"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/fuchsia-cprng-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures/futures-0.3.28.crate",
"sha256": "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40",
"dest": "cargo/vendor/futures-0.3.28"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%2223342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/futures-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.28.crate",
"sha256": "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2",
"dest": "cargo/vendor/futures-channel-0.3.28"
},
{
"type": "file",
"url": "data:%7B%22package%22%3A%20%22955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2%22%2C%20%22files%22%3A%20%7B%7D%7D",
"dest": "cargo/vendor/futures-channel-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-core/futures-core-0.3.28.crate",
"sha256": "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c",
"dest": "cargo/vendor/futures-core-0.3.28"
},