-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcargo-sources.json
3548 lines (3548 loc) · 167 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/gtk-rs/gtk-rs-core",
"commit": "d1fdc2ea5797b5e091aec091f0389b163cce5a47",
"dest": "flatpak-cargo/git/gtk-rs-core-d1fdc2e"
},
{
"type": "git",
"url": "https://github.com/gtk-rs/gtk4-rs",
"commit": "39262e1d41a34f392482ef03a256ea244582c1ec",
"dest": "flatpak-cargo/git/gtk4-rs-39262e1"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.4.7.crate",
"sha256": "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e",
"dest": "cargo/vendor/ahash-0.4.7"
},
{
"type": "inline",
"contents": "{\"package\": \"739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.4.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.7.6.crate",
"sha256": "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47",
"dest": "cargo/vendor/ahash-0.7.6"
},
{
"type": "inline",
"contents": "{\"package\": \"fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.7.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.2.crate",
"sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0",
"dest": "cargo/vendor/aho-corasick-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-tzdata/android-tzdata-0.1.1.crate",
"sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
"dest": "cargo/vendor/android-tzdata-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0\", \"files\": {}}",
"dest": "cargo/vendor/android-tzdata-0.1.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.75.crate",
"sha256": "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6",
"dest": "cargo/vendor/anyhow-1.0.75"
},
{
"type": "inline",
"contents": "{\"package\": \"a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.75",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-attributes/async-attributes-1.1.2.crate",
"sha256": "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5",
"dest": "cargo/vendor/async-attributes-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5\", \"files\": {}}",
"dest": "cargo/vendor/async-attributes-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.5.1.crate",
"sha256": "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b",
"dest": "cargo/vendor/async-broadcast-0.5.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b\", \"files\": {}}",
"dest": "cargo/vendor/async-broadcast-0.5.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-channel/async-channel-1.9.0.crate",
"sha256": "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35",
"dest": "cargo/vendor/async-channel-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-executor/async-executor-1.5.4.crate",
"sha256": "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499",
"dest": "cargo/vendor/async-executor-1.5.4"
},
{
"type": "inline",
"contents": "{\"package\": \"2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499\", \"files\": {}}",
"dest": "cargo/vendor/async-executor-1.5.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-fs/async-fs-1.6.0.crate",
"sha256": "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06",
"dest": "cargo/vendor/async-fs-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06\", \"files\": {}}",
"dest": "cargo/vendor/async-fs-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-global-executor/async-global-executor-2.3.1.crate",
"sha256": "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776",
"dest": "cargo/vendor/async-global-executor-2.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776\", \"files\": {}}",
"dest": "cargo/vendor/async-global-executor-2.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-io/async-io-1.13.0.crate",
"sha256": "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af",
"dest": "cargo/vendor/async-io-1.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af\", \"files\": {}}",
"dest": "cargo/vendor/async-io-1.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-lock/async-lock-2.8.0.crate",
"sha256": "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b",
"dest": "cargo/vendor/async-lock-2.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b\", \"files\": {}}",
"dest": "cargo/vendor/async-lock-2.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-process/async-process-1.8.1.crate",
"sha256": "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88",
"dest": "cargo/vendor/async-process-1.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88\", \"files\": {}}",
"dest": "cargo/vendor/async-process-1.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-recursion/async-recursion-1.0.5.crate",
"sha256": "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0",
"dest": "cargo/vendor/async-recursion-1.0.5"
},
{
"type": "inline",
"contents": "{\"package\": \"5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0\", \"files\": {}}",
"dest": "cargo/vendor/async-recursion-1.0.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-signal/async-signal-0.2.4.crate",
"sha256": "d2a5415b7abcdc9cd7d63d6badba5288b2ca017e3fbd4173b8f405449f1a2399",
"dest": "cargo/vendor/async-signal-0.2.4"
},
{
"type": "inline",
"contents": "{\"package\": \"d2a5415b7abcdc9cd7d63d6badba5288b2ca017e3fbd4173b8f405449f1a2399\", \"files\": {}}",
"dest": "cargo/vendor/async-signal-0.2.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-std/async-std-1.12.0.crate",
"sha256": "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d",
"dest": "cargo/vendor/async-std-1.12.0"
},
{
"type": "inline",
"contents": "{\"package\": \"62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d\", \"files\": {}}",
"dest": "cargo/vendor/async-std-1.12.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-task/async-task-4.4.1.crate",
"sha256": "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921",
"dest": "cargo/vendor/async-task-4.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921\", \"files\": {}}",
"dest": "cargo/vendor/async-task-4.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.73.crate",
"sha256": "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0",
"dest": "cargo/vendor/async-trait-0.1.73"
},
{
"type": "inline",
"contents": "{\"package\": \"bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.73",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk-sys/atk-sys-0.15.1.crate",
"sha256": "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6",
"dest": "cargo/vendor/atk-sys-0.15.1"
},
{
"type": "inline",
"contents": "{\"package\": \"58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6\", \"files\": {}}",
"dest": "cargo/vendor/atk-sys-0.15.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic-waker/atomic-waker-1.1.2.crate",
"sha256": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0",
"dest": "cargo/vendor/atomic-waker-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\", \"files\": {}}",
"dest": "cargo/vendor/atomic-waker-1.1.2",
"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/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.4.0.crate",
"sha256": "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635",
"dest": "cargo/vendor/bitflags-2.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.4.0",
"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.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/blocking/blocking-1.4.1.crate",
"sha256": "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a",
"dest": "cargo/vendor/blocking-1.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a\", \"files\": {}}",
"dest": "cargo/vendor/blocking-1.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.14.0.crate",
"sha256": "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec",
"dest": "cargo/vendor/bumpalo-3.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.14.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/cairo-rs/cairo-rs-0.15.12.crate",
"sha256": "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc",
"dest": "cargo/vendor/cairo-rs-0.15.12"
},
{
"type": "inline",
"contents": "{\"package\": \"c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.15.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "shell",
"commands": [
"cp -r --reflink=auto \"flatpak-cargo/git/gtk-rs-core-d1fdc2e/cairo\" \"cargo/vendor/cairo-rs\""
]
},
{
"type": "inline",
"contents": "[package]\nname = \"cairo-rs\"\nlicense = \"MIT\"\nhomepage = \"https://gtk-rs.org/\"\nauthors = [ \"The gtk-rs Project Developers\",]\nkeywords = [ \"cairo\", \"gtk-rs\", \"gnome\", \"GUI\",]\nreadme = \"README.md\"\ndocumentation = \"https://gtk-rs.org/gtk-rs-core/stable/latest/docs/cairo/\"\nversion = \"0.19.0\"\ndescription = \"Rust bindings for the Cairo library\"\nrepository = \"https://github.com/gtk-rs/gtk-rs-core\"\nedition = \"2021\"\nrust-version = \"1.70\"\n\n[lib]\nname = \"cairo\"\n\n[features]\npng = [ \"ffi/png\",]\npdf = [ \"ffi/pdf\",]\nsvg = [ \"ffi/svg\",]\nps = [ \"ffi/ps\",]\nuse_glib = [ \"glib\", \"ffi/use_glib\",]\nv1_16 = [ \"ffi/v1_16\",]\nv1_18 = [ \"v1_16\", \"ffi/v1_18\",]\ndefault = [ \"use_glib\",]\nfreetype = [ \"ffi/freetype\", \"freetype-rs\",]\nscript = [ \"ffi/script\",]\nxcb = [ \"ffi/xcb\",]\nxlib = [ \"ffi/xlib\",]\nwin32-surface = [ \"ffi/win32-surface\",]\n\n[dependencies]\nlibc = \"0.2\"\nbitflags = \"2.3\"\nthiserror = \"1.0.10\"\nonce_cell = \"1\"\n\n[dev-dependencies]\ntempfile = \"3.0\"\nfloat_eq = \"1\"\n\n[dependencies.glib]\noptional = true\npath = \"../glib\"\n\n[dependencies.ffi]\npackage = \"cairo-sys-rs\"\npath = \"sys\"\n\n[dependencies.freetype-rs]\nversion = \"0.32\"\noptional = true\n\n[package.metadata.docs.rs]\nall-features = true\nrustc-args = [ \"--cfg\", \"docsrs\",]\nrustdoc-args = [ \"--cfg\", \"docsrs\", \"--generate-link-to-definition\",]\n",
"dest": "cargo/vendor/cairo-rs",
"dest-filename": "Cargo.toml"
},
{
"type": "inline",
"contents": "{\"package\": null, \"files\": {}}",
"dest": "cargo/vendor/cairo-rs",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.15.1.crate",
"sha256": "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8",
"dest": "cargo/vendor/cairo-sys-rs-0.15.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.15.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "shell",
"commands": [
"cp -r --reflink=auto \"flatpak-cargo/git/gtk-rs-core-d1fdc2e/cairo/sys\" \"cargo/vendor/cairo-sys-rs\""
]
},
{
"type": "inline",
"contents": "[package]\nname = \"cairo-sys-rs\"\nlicense = \"MIT\"\nauthors = [ \"The gtk-rs Project Developers\",]\nhomepage = \"https://gtk-rs.org/\"\ndescription = \"FFI bindings to libcairo\"\nversion = \"0.19.0\"\nkeywords = [ \"cairo\", \"ffi\", \"gtk-rs\", \"gnome\",]\nrepository = \"https://github.com/gtk-rs/gtk-rs-core\"\nbuild = \"build.rs\"\nedition = \"2021\"\nrust-version = \"1.70\"\n\n[lib]\nname = \"cairo_sys\"\n\n[features]\nv1_16 = []\nv1_18 = [ \"v1_16\",]\nxlib = [ \"x11\",]\npng = []\npdf = []\nsvg = []\nps = []\nfreetype = []\nscript = []\nxcb = []\nuse_glib = [ \"glib\",]\nwin32-surface = [ \"winapi\",]\n\n[dependencies]\nlibc = \"0.2\"\n\n[build-dependencies]\nsystem-deps = \"6\"\n\n[dependencies.glib]\npackage = \"glib-sys\"\noptional = true\npath = \"../../glib/sys\"\n\n[dependencies.x11]\noptional = true\nversion = \"2.16\"\nfeatures = [ \"xlib\",]\n\n[package.metadata.system-deps.cairo]\nname = \"cairo\"\nversion = \"1.14\"\n\n[package.metadata.system-deps.cairo-gobject]\nname = \"cairo-gobject\"\nversion = \"1.14\"\nfeature = \"use_glib\"\n\n[package.metadata.docs.rs]\nall-features = true\nrustc-args = [ \"--cfg\", \"docsrs\",]\nrustdoc-args = [ \"--cfg\", \"docsrs\",]\nfeatures = []\n\n[target.\"cfg(windows)\".dependencies.winapi]\nversion = \"0.3.2\"\nfeatures = [ \"windef\",]\noptional = true\n\n[package.metadata.system-deps.cairo.v1_16]\nversion = \"1.16\"\n\n[package.metadata.system-deps.cairo.v1_18]\nversion = \"1.17\"\n\n[package.metadata.system-deps.cairo-gobject.v1_16]\nversion = \"1.16\"\n\n[package.metadata.system-deps.cairo-gobject.v1_18]\nversion = \"1.17\"\n",
"dest": "cargo/vendor/cairo-sys-rs",
"dest-filename": "Cargo.toml"
},
{
"type": "inline",
"contents": "{\"package\": null, \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.83.crate",
"sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0",
"dest": "cargo/vendor/cc-1.0.83"
},
{
"type": "inline",
"contents": "{\"package\": \"f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.83",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.15.5.crate",
"sha256": "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3",
"dest": "cargo/vendor/cfg-expr-0.15.5"
},
{
"type": "inline",
"contents": "{\"package\": \"03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.15.5",
"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.31.crate",
"sha256": "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38",
"dest": "cargo/vendor/chrono-0.4.31"
},
{
"type": "inline",
"contents": "{\"package\": \"7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.31",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.3.0.crate",
"sha256": "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400",
"dest": "cargo/vendor/concurrent-queue-2.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400\", \"files\": {}}",
"dest": "cargo/vendor/concurrent-queue-2.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.4.crate",
"sha256": "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa",
"dest": "cargo/vendor/core-foundation-sys-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.9.crate",
"sha256": "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1",
"dest": "cargo/vendor/cpufeatures-0.2.9"
},
{
"type": "inline",
"contents": "{\"package\": \"a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1\", \"files\": {}}",
"dest": "cargo/vendor/cpufeatures-0.2.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.16.crate",
"sha256": "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294",
"dest": "cargo/vendor/crossbeam-utils-0.8.16"
},
{
"type": "inline",
"contents": "{\"package\": \"5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.16",
"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/dark-light/dark-light-1.0.0.crate",
"sha256": "a62007a65515b3cd88c733dd3464431f05d2ad066999a824259d8edc3cf6f645",
"dest": "cargo/vendor/dark-light-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a62007a65515b3cd88c733dd3464431f05d2ad066999a824259d8edc3cf6f645\", \"files\": {}}",
"dest": "cargo/vendor/dark-light-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dconf_rs/dconf_rs-0.3.0.crate",
"sha256": "7046468a81e6a002061c01e6a7c83139daf91b11c30e66795b13217c2d885c8b",
"dest": "cargo/vendor/dconf_rs-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7046468a81e6a002061c01e6a7c83139daf91b11c30e66795b13217c2d885c8b\", \"files\": {}}",
"dest": "cargo/vendor/dconf_rs-0.3.0",
"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/detect-desktop-environment/detect-desktop-environment-0.2.0.crate",
"sha256": "21d8ad60dd5b13a4ee6bd8fa2d5d88965c597c67bce32b5fc49c94f55cb50810",
"dest": "cargo/vendor/detect-desktop-environment-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"21d8ad60dd5b13a4ee6bd8fa2d5d88965c597c67bce32b5fc49c94f55cb50810\", \"files\": {}}",
"dest": "cargo/vendor/detect-desktop-environment-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.10.7.crate",
"sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292",
"dest": "cargo/vendor/digest-0.10.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.10.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/dlv-list/dlv-list-0.2.3.crate",
"sha256": "68df3f2b690c1b86e65ef7830956aededf3cb0a16f898f79b9a6f421a7b6211b",
"dest": "cargo/vendor/dlv-list-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"68df3f2b690c1b86e65ef7830956aededf3cb0a16f898f79b9a6f421a7b6211b\", \"files\": {}}",
"dest": "cargo/vendor/dlv-list-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dlv-list/dlv-list-0.3.0.crate",
"sha256": "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257",
"dest": "cargo/vendor/dlv-list-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257\", \"files\": {}}",
"dest": "cargo/vendor/dlv-list-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.9.0.crate",
"sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07",
"dest": "cargo/vendor/either-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07\", \"files\": {}}",
"dest": "cargo/vendor/either-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2/enumflags2-0.7.8.crate",
"sha256": "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939",
"dest": "cargo/vendor/enumflags2-0.7.8"
},
{
"type": "inline",
"contents": "{\"package\": \"5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2-0.7.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.7.8.crate",
"sha256": "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246",
"dest": "cargo/vendor/enumflags2_derive-0.7.8"
},
{
"type": "inline",
"contents": "{\"package\": \"f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2_derive-0.7.8",
"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.5.crate",
"sha256": "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860",
"dest": "cargo/vendor/errno-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860\", \"files\": {}}",
"dest": "cargo/vendor/errno-0.3.5",
"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": "inline",
"contents": "{\"package\": \"0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0\", \"files\": {}}",
"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/event-listener/event-listener-3.0.0.crate",
"sha256": "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325",
"dest": "cargo/vendor/event-listener-3.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325\", \"files\": {}}",
"dest": "cargo/vendor/event-listener-3.0.0",
"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": "inline",
"contents": "{\"package\": \"e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-2.0.1.crate",
"sha256": "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5",
"dest": "cargo/vendor/fastrand-2.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-2.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/field-offset/field-offset-0.3.6.crate",
"sha256": "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f",
"dest": "cargo/vendor/field-offset-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f\", \"files\": {}}",
"dest": "cargo/vendor/field-offset-0.3.6",
"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": "inline",
"contents": "{\"package\": \"23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40\", \"files\": {}}",
"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": "inline",
"contents": "{\"package\": \"955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2\", \"files\": {}}",
"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"
},
{
"type": "inline",
"contents": "{\"package\": \"4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c\", \"files\": {}}",
"dest": "cargo/vendor/futures-core-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-executor/futures-executor-0.3.28.crate",
"sha256": "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0",
"dest": "cargo/vendor/futures-executor-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0\", \"files\": {}}",
"dest": "cargo/vendor/futures-executor-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-io/futures-io-0.3.28.crate",
"sha256": "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964",
"dest": "cargo/vendor/futures-io-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964\", \"files\": {}}",
"dest": "cargo/vendor/futures-io-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-lite/futures-lite-1.13.0.crate",
"sha256": "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce",
"dest": "cargo/vendor/futures-lite-1.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce\", \"files\": {}}",
"dest": "cargo/vendor/futures-lite-1.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-macro/futures-macro-0.3.28.crate",
"sha256": "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72",
"dest": "cargo/vendor/futures-macro-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72\", \"files\": {}}",
"dest": "cargo/vendor/futures-macro-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-sink/futures-sink-0.3.28.crate",
"sha256": "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e",
"dest": "cargo/vendor/futures-sink-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e\", \"files\": {}}",
"dest": "cargo/vendor/futures-sink-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-task/futures-task-0.3.28.crate",
"sha256": "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65",
"dest": "cargo/vendor/futures-task-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65\", \"files\": {}}",
"dest": "cargo/vendor/futures-task-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-util/futures-util-0.3.28.crate",
"sha256": "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533",
"dest": "cargo/vendor/futures-util-0.3.28"
},
{
"type": "inline",
"contents": "{\"package\": \"26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533\", \"files\": {}}",
"dest": "cargo/vendor/futures-util-0.3.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-pixbuf/gdk-pixbuf-0.9.0.crate",
"sha256": "8f6dae3cb99dd49b758b88f0132f8d401108e63ae8edd45f432d42cdff99998a",
"dest": "cargo/vendor/gdk-pixbuf-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8f6dae3cb99dd49b758b88f0132f8d401108e63ae8edd45f432d42cdff99998a\", \"files\": {}}",
"dest": "cargo/vendor/gdk-pixbuf-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-pixbuf/gdk-pixbuf-0.15.11.crate",
"sha256": "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a",
"dest": "cargo/vendor/gdk-pixbuf-0.15.11"
},
{
"type": "inline",
"contents": "{\"package\": \"ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a\", \"files\": {}}",
"dest": "cargo/vendor/gdk-pixbuf-0.15.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "shell",