-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo-sources.json
1386 lines (1386 loc) · 57.3 KB
/
Cargo-sources.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler32/adler32-1.2.0.crate",
"sha256": "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234",
"dest": "cargo/vendor/adler32-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234\", \"files\": {}}",
"dest": "cargo/vendor/adler32-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-0.7.18.crate",
"sha256": "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f",
"dest": "cargo/vendor/aho-corasick-0.7.18"
},
{
"type": "inline",
"contents": "{\"package\": \"1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-0.7.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.52.crate",
"sha256": "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3",
"dest": "cargo/vendor/anyhow-1.0.52"
},
{
"type": "inline",
"contents": "{\"package\": \"84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.52",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk/atk-0.14.0.crate",
"sha256": "a83b21d2aa75e464db56225e1bda2dd5993311ba1095acaa8fa03d1ae67026ba",
"dest": "cargo/vendor/atk-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a83b21d2aa75e464db56225e1bda2dd5993311ba1095acaa8fa03d1ae67026ba\", \"files\": {}}",
"dest": "cargo/vendor/atk-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk-sys/atk-sys-0.14.0.crate",
"sha256": "badcf670157c84bb8b1cf6b5f70b650fed78da2033c9eed84c4e49b11cbe83ea",
"dest": "cargo/vendor/atk-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"badcf670157c84bb8b1cf6b5f70b650fed78da2033c9eed84c4e49b11cbe83ea\", \"files\": {}}",
"dest": "cargo/vendor/atk-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.0.1.crate",
"sha256": "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a",
"dest": "cargo/vendor/autocfg-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/binread/binread-2.2.0.crate",
"sha256": "16598dfc8e6578e9b597d9910ba2e73618385dc9f4b1d43dd92c349d6be6418f",
"dest": "cargo/vendor/binread-2.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"16598dfc8e6578e9b597d9910ba2e73618385dc9f4b1d43dd92c349d6be6418f\", \"files\": {}}",
"dest": "cargo/vendor/binread-2.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/binread_derive/binread_derive-2.1.0.crate",
"sha256": "1d9672209df1714ee804b1f4d4f68c8eb2a90b1f7a07acf472f88ce198ef1fed",
"dest": "cargo/vendor/binread_derive-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1d9672209df1714ee804b1f4d4f68c8eb2a90b1f7a07acf472f88ce198ef1fed\", \"files\": {}}",
"dest": "cargo/vendor/binread_derive-2.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/bytemuck/bytemuck-1.7.3.crate",
"sha256": "439989e6b8c38d1b6570a384ef1e49c8848128f5a97f3914baef02920842712f",
"dest": "cargo/vendor/bytemuck-1.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"439989e6b8c38d1b6570a384ef1e49c8848128f5a97f3914baef02920842712f\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.4.3.crate",
"sha256": "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610",
"dest": "cargo/vendor/byteorder-1.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.14.9.crate",
"sha256": "33b5725979db0c586d98abad2193cdb612dd40ef95cd26bd99851bf93b3cb482",
"dest": "cargo/vendor/cairo-rs-0.14.9"
},
{
"type": "inline",
"contents": "{\"package\": \"33b5725979db0c586d98abad2193cdb612dd40ef95cd26bd99851bf93b3cb482\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.14.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.14.9.crate",
"sha256": "b448b876970834fda82ba3aeaccadbd760206b75388fc5c1b02f1e343b697570",
"dest": "cargo/vendor/cairo-sys-rs-0.14.9"
},
{
"type": "inline",
"contents": "{\"package\": \"b448b876970834fda82ba3aeaccadbd760206b75388fc5c1b02f1e343b697570\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.14.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.72.crate",
"sha256": "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee",
"dest": "cargo/vendor/cc-1.0.72"
},
{
"type": "inline",
"contents": "{\"package\": \"22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.72",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.8.1.crate",
"sha256": "b412e83326147c2bb881f8b40edfbf9905b9b8abaebd0e47ca190ba62fda8f0e",
"dest": "cargo/vendor/cfg-expr-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b412e83326147c2bb881f8b40edfbf9905b9b8abaebd0e47ca190ba62fda8f0e\", \"files\": {}}",
"dest": "cargo/vendor/cfg-expr-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
"dest": "cargo/vendor/cfg-if-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/crc32fast/crc32fast-1.3.2.crate",
"sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d",
"dest": "cargo/vendor/crc32fast-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/deflate/deflate-0.8.6.crate",
"sha256": "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174",
"dest": "cargo/vendor/deflate-0.8.6"
},
{
"type": "inline",
"contents": "{\"package\": \"73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174\", \"files\": {}}",
"dest": "cargo/vendor/deflate-0.8.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.6.1.crate",
"sha256": "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457",
"dest": "cargo/vendor/either-1.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457\", \"files\": {}}",
"dest": "cargo/vendor/either-1.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/field-offset/field-offset-0.3.4.crate",
"sha256": "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92",
"dest": "cargo/vendor/field-offset-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92\", \"files\": {}}",
"dest": "cargo/vendor/field-offset-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flyr/flyr-0.5.0.crate",
"sha256": "ddbc7b7b93ebc896931c1c919cebb1dc495c0b388127d38bc9cda191804be0b2",
"dest": "cargo/vendor/flyr-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ddbc7b7b93ebc896931c1c919cebb1dc495c0b388127d38bc9cda191804be0b2\", \"files\": {}}",
"dest": "cargo/vendor/flyr-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.19.crate",
"sha256": "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b",
"dest": "cargo/vendor/futures-channel-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b\", \"files\": {}}",
"dest": "cargo/vendor/futures-channel-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-core/futures-core-0.3.19.crate",
"sha256": "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7",
"dest": "cargo/vendor/futures-core-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7\", \"files\": {}}",
"dest": "cargo/vendor/futures-core-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-executor/futures-executor-0.3.19.crate",
"sha256": "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a",
"dest": "cargo/vendor/futures-executor-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a\", \"files\": {}}",
"dest": "cargo/vendor/futures-executor-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-io/futures-io-0.3.19.crate",
"sha256": "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2",
"dest": "cargo/vendor/futures-io-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2\", \"files\": {}}",
"dest": "cargo/vendor/futures-io-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-task/futures-task-0.3.19.crate",
"sha256": "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72",
"dest": "cargo/vendor/futures-task-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72\", \"files\": {}}",
"dest": "cargo/vendor/futures-task-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-util/futures-util-0.3.19.crate",
"sha256": "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164",
"dest": "cargo/vendor/futures-util-0.3.19"
},
{
"type": "inline",
"contents": "{\"package\": \"d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164\", \"files\": {}}",
"dest": "cargo/vendor/futures-util-0.3.19",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk/gdk-0.14.3.crate",
"sha256": "b9d749dcfc00d8de0d7c3a289e04a04293eb5ba3d8a4e64d64911d481fa9933b",
"dest": "cargo/vendor/gdk-0.14.3"
},
{
"type": "inline",
"contents": "{\"package\": \"b9d749dcfc00d8de0d7c3a289e04a04293eb5ba3d8a4e64d64911d481fa9933b\", \"files\": {}}",
"dest": "cargo/vendor/gdk-0.14.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-pixbuf/gdk-pixbuf-0.14.0.crate",
"sha256": "534192cb8f01daeb8fab2c8d4baa8f9aae5b7a39130525779f5c2608e235b10f",
"dest": "cargo/vendor/gdk-pixbuf-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"534192cb8f01daeb8fab2c8d4baa8f9aae5b7a39130525779f5c2608e235b10f\", \"files\": {}}",
"dest": "cargo/vendor/gdk-pixbuf-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-pixbuf-sys/gdk-pixbuf-sys-0.14.0.crate",
"sha256": "f097c0704201fbc8f69c1762dc58c6947c8bb188b8ed0bc7e65259f1894fe590",
"dest": "cargo/vendor/gdk-pixbuf-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f097c0704201fbc8f69c1762dc58c6947c8bb188b8ed0bc7e65259f1894fe590\", \"files\": {}}",
"dest": "cargo/vendor/gdk-pixbuf-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-sys/gdk-sys-0.14.0.crate",
"sha256": "0e091b3d3d6696949ac3b3fb3c62090e5bfd7bd6850bef5c3c5ea701de1b1f1e",
"dest": "cargo/vendor/gdk-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0e091b3d3d6696949ac3b3fb3c62090e5bfd7bd6850bef5c3c5ea701de1b1f1e\", \"files\": {}}",
"dest": "cargo/vendor/gdk-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gettext-rs/gettext-rs-0.4.4.crate",
"sha256": "df454a42d8a718280c78666efe0707c120873736961ae91ead898f17ac66ce7c",
"dest": "cargo/vendor/gettext-rs-0.4.4"
},
{
"type": "inline",
"contents": "{\"package\": \"df454a42d8a718280c78666efe0707c120873736961ae91ead898f17ac66ce7c\", \"files\": {}}",
"dest": "cargo/vendor/gettext-rs-0.4.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gettext-sys/gettext-sys-0.19.9.crate",
"sha256": "e034c4ba5bb796730a6cc5eb0d654c16885006a7c3d6c6603581ed809434f153",
"dest": "cargo/vendor/gettext-sys-0.19.9"
},
{
"type": "inline",
"contents": "{\"package\": \"e034c4ba5bb796730a6cc5eb0d654c16885006a7c3d6c6603581ed809434f153\", \"files\": {}}",
"dest": "cargo/vendor/gettext-sys-0.19.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gio/gio-0.14.8.crate",
"sha256": "711c3632b3ebd095578a9c091418d10fed492da9443f58ebc8f45efbeb215cb0",
"dest": "cargo/vendor/gio-0.14.8"
},
{
"type": "inline",
"contents": "{\"package\": \"711c3632b3ebd095578a9c091418d10fed492da9443f58ebc8f45efbeb215cb0\", \"files\": {}}",
"dest": "cargo/vendor/gio-0.14.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gio-sys/gio-sys-0.14.0.crate",
"sha256": "c0a41df66e57fcc287c4bcf74fc26b884f31901ea9792ec75607289b456f48fa",
"dest": "cargo/vendor/gio-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c0a41df66e57fcc287c4bcf74fc26b884f31901ea9792ec75607289b456f48fa\", \"files\": {}}",
"dest": "cargo/vendor/gio-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib/glib-0.14.8.crate",
"sha256": "7c515f1e62bf151ef6635f528d05b02c11506de986e43b34a5c920ef0b3796a4",
"dest": "cargo/vendor/glib-0.14.8"
},
{
"type": "inline",
"contents": "{\"package\": \"7c515f1e62bf151ef6635f528d05b02c11506de986e43b34a5c920ef0b3796a4\", \"files\": {}}",
"dest": "cargo/vendor/glib-0.14.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib-macros/glib-macros-0.14.1.crate",
"sha256": "2aad66361f66796bfc73f530c51ef123970eb895ffba991a234fcf7bea89e518",
"dest": "cargo/vendor/glib-macros-0.14.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2aad66361f66796bfc73f530c51ef123970eb895ffba991a234fcf7bea89e518\", \"files\": {}}",
"dest": "cargo/vendor/glib-macros-0.14.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib-sys/glib-sys-0.14.0.crate",
"sha256": "1c1d60554a212445e2a858e42a0e48cece1bd57b311a19a9468f70376cf554ae",
"dest": "cargo/vendor/glib-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1c1d60554a212445e2a858e42a0e48cece1bd57b311a19a9468f70376cf554ae\", \"files\": {}}",
"dest": "cargo/vendor/glib-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gobject-sys/gobject-sys-0.14.0.crate",
"sha256": "aa92cae29759dae34ab5921d73fff5ad54b3d794ab842c117e36cafc7994c3f5",
"dest": "cargo/vendor/gobject-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"aa92cae29759dae34ab5921d73fff5ad54b3d794ab842c117e36cafc7994c3f5\", \"files\": {}}",
"dest": "cargo/vendor/gobject-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gtk/gtk-0.14.3.crate",
"sha256": "2eb51122dd3317e9327ec1e4faa151d1fa0d95664cd8fb8dcfacf4d4d29ac70c",
"dest": "cargo/vendor/gtk-0.14.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2eb51122dd3317e9327ec1e4faa151d1fa0d95664cd8fb8dcfacf4d4d29ac70c\", \"files\": {}}",
"dest": "cargo/vendor/gtk-0.14.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gtk-sys/gtk-sys-0.14.0.crate",
"sha256": "8c14c8d3da0545785a7c5a120345b3abb534010fb8ae0f2ef3f47c027fba303e",
"dest": "cargo/vendor/gtk-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8c14c8d3da0545785a7c5a120345b3abb534010fb8ae0f2ef3f47c027fba303e\", \"files\": {}}",
"dest": "cargo/vendor/gtk-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gtk3-macros/gtk3-macros-0.14.0.crate",
"sha256": "21de1da96dc117443fb03c2e270b2d34b7de98d0a79a19bbb689476173745b79",
"dest": "cargo/vendor/gtk3-macros-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"21de1da96dc117443fb03c2e270b2d34b7de98d0a79a19bbb689476173745b79\", \"files\": {}}",
"dest": "cargo/vendor/gtk3-macros-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/heck/heck-0.3.3.crate",
"sha256": "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c",
"dest": "cargo/vendor/heck-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/image/image-0.23.14.crate",
"sha256": "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1",
"dest": "cargo/vendor/image-0.23.14"
},
{
"type": "inline",
"contents": "{\"package\": \"24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1\", \"files\": {}}",
"dest": "cargo/vendor/image-0.23.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/itertools/itertools-0.10.3.crate",
"sha256": "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3",
"dest": "cargo/vendor/itertools-0.10.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3\", \"files\": {}}",
"dest": "cargo/vendor/itertools-0.10.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/jpeg-decoder/jpeg-decoder-0.1.22.crate",
"sha256": "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2",
"dest": "cargo/vendor/jpeg-decoder-0.1.22"
},
{
"type": "inline",
"contents": "{\"package\": \"229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2\", \"files\": {}}",
"dest": "cargo/vendor/jpeg-decoder-0.1.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lazy_static/lazy_static-1.4.0.crate",
"sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
"dest": "cargo/vendor/lazy_static-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646\", \"files\": {}}",
"dest": "cargo/vendor/lazy_static-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/libc/libc-0.2.112.crate",
"sha256": "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125",
"dest": "cargo/vendor/libc-0.2.112"
},
{
"type": "inline",
"contents": "{\"package\": \"1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125\", \"files\": {}}",
"dest": "cargo/vendor/libc-0.2.112",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/locale_config/locale_config-0.2.3.crate",
"sha256": "73ac19ebe45489e5d53b4346d8b90bb3dd03275c5fdf2ce22a982516d86b535c",
"dest": "cargo/vendor/locale_config-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"73ac19ebe45489e5d53b4346d8b90bb3dd03275c5fdf2ce22a982516d86b535c\", \"files\": {}}",
"dest": "cargo/vendor/locale_config-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/matrixmultiply/matrixmultiply-0.3.2.crate",
"sha256": "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84",
"dest": "cargo/vendor/matrixmultiply-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84\", \"files\": {}}",
"dest": "cargo/vendor/matrixmultiply-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/memchr/memchr-2.4.1.crate",
"sha256": "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a",
"dest": "cargo/vendor/memchr-2.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a\", \"files\": {}}",
"dest": "cargo/vendor/memchr-2.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/memoffset/memoffset-0.6.5.crate",
"sha256": "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce",
"dest": "cargo/vendor/memoffset-0.6.5"
},
{
"type": "inline",
"contents": "{\"package\": \"5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce\", \"files\": {}}",
"dest": "cargo/vendor/memoffset-0.6.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/miniz_oxide/miniz_oxide-0.3.7.crate",
"sha256": "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435",
"dest": "cargo/vendor/miniz_oxide-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435\", \"files\": {}}",
"dest": "cargo/vendor/miniz_oxide-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/miniz_oxide/miniz_oxide-0.4.4.crate",
"sha256": "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b",
"dest": "cargo/vendor/miniz_oxide-0.4.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b\", \"files\": {}}",
"dest": "cargo/vendor/miniz_oxide-0.4.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ndarray/ndarray-0.15.4.crate",
"sha256": "dec23e6762830658d2b3d385a75aa212af2f67a4586d4442907144f3bb6a1ca8",
"dest": "cargo/vendor/ndarray-0.15.4"
},
{
"type": "inline",
"contents": "{\"package\": \"dec23e6762830658d2b3d385a75aa212af2f67a4586d4442907144f3bb6a1ca8\", \"files\": {}}",
"dest": "cargo/vendor/ndarray-0.15.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num/num-0.4.0.crate",
"sha256": "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606",
"dest": "cargo/vendor/num-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606\", \"files\": {}}",
"dest": "cargo/vendor/num-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-bigint/num-bigint-0.4.3.crate",
"sha256": "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f",
"dest": "cargo/vendor/num-bigint-0.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f\", \"files\": {}}",
"dest": "cargo/vendor/num-bigint-0.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-complex/num-complex-0.4.0.crate",
"sha256": "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085",
"dest": "cargo/vendor/num-complex-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085\", \"files\": {}}",
"dest": "cargo/vendor/num-complex-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-integer/num-integer-0.1.44.crate",
"sha256": "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db",
"dest": "cargo/vendor/num-integer-0.1.44"
},
{
"type": "inline",
"contents": "{\"package\": \"d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db\", \"files\": {}}",
"dest": "cargo/vendor/num-integer-0.1.44",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-iter/num-iter-0.1.42.crate",
"sha256": "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59",
"dest": "cargo/vendor/num-iter-0.1.42"
},
{
"type": "inline",
"contents": "{\"package\": \"b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59\", \"files\": {}}",
"dest": "cargo/vendor/num-iter-0.1.42",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-rational/num-rational-0.3.2.crate",
"sha256": "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07",
"dest": "cargo/vendor/num-rational-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07\", \"files\": {}}",
"dest": "cargo/vendor/num-rational-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-rational/num-rational-0.4.0.crate",
"sha256": "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a",
"dest": "cargo/vendor/num-rational-0.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a\", \"files\": {}}",
"dest": "cargo/vendor/num-rational-0.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/num-traits/num-traits-0.2.14.crate",
"sha256": "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290",
"dest": "cargo/vendor/num-traits-0.2.14"
},
{
"type": "inline",
"contents": "{\"package\": \"9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290\", \"files\": {}}",
"dest": "cargo/vendor/num-traits-0.2.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/once_cell/once_cell-1.9.0.crate",
"sha256": "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5",
"dest": "cargo/vendor/once_cell-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5\", \"files\": {}}",
"dest": "cargo/vendor/once_cell-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pango/pango-0.14.8.crate",
"sha256": "546fd59801e5ca735af82839007edd226fe7d3bb06433ec48072be4439c28581",
"dest": "cargo/vendor/pango-0.14.8"
},
{
"type": "inline",
"contents": "{\"package\": \"546fd59801e5ca735af82839007edd226fe7d3bb06433ec48072be4439c28581\", \"files\": {}}",
"dest": "cargo/vendor/pango-0.14.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pango-sys/pango-sys-0.14.0.crate",
"sha256": "2367099ca5e761546ba1d501955079f097caa186bb53ce0f718dca99ac1942fe",
"dest": "cargo/vendor/pango-sys-0.14.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2367099ca5e761546ba1d501955079f097caa186bb53ce0f718dca99ac1942fe\", \"files\": {}}",
"dest": "cargo/vendor/pango-sys-0.14.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pest/pest-2.1.3.crate",
"sha256": "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53",
"dest": "cargo/vendor/pest-2.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53\", \"files\": {}}",
"dest": "cargo/vendor/pest-2.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pin-project-lite/pin-project-lite-0.2.7.crate",
"sha256": "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443",
"dest": "cargo/vendor/pin-project-lite-0.2.7"
},
{
"type": "inline",
"contents": "{\"package\": \"8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443\", \"files\": {}}",
"dest": "cargo/vendor/pin-project-lite-0.2.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pin-utils/pin-utils-0.1.0.crate",
"sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184",
"dest": "cargo/vendor/pin-utils-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184\", \"files\": {}}",
"dest": "cargo/vendor/pin-utils-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pkg-config/pkg-config-0.3.24.crate",
"sha256": "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe",
"dest": "cargo/vendor/pkg-config-0.3.24"
},
{
"type": "inline",
"contents": "{\"package\": \"58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe\", \"files\": {}}",
"dest": "cargo/vendor/pkg-config-0.3.24",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/png/png-0.16.8.crate",
"sha256": "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6",
"dest": "cargo/vendor/png-0.16.8"
},
{
"type": "inline",
"contents": "{\"package\": \"3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6\", \"files\": {}}",
"dest": "cargo/vendor/png-0.16.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-1.1.0.crate",
"sha256": "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83",
"dest": "cargo/vendor/proc-macro-crate-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-crate-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-error/proc-macro-error-1.0.4.crate",
"sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c",
"dest": "cargo/vendor/proc-macro-error-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-error-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-error-attr/proc-macro-error-attr-1.0.4.crate",
"sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869",
"dest": "cargo/vendor/proc-macro-error-attr-1.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-error-attr-1.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.36.crate",
"sha256": "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029",
"dest": "cargo/vendor/proc-macro2-1.0.36"
},
{
"type": "inline",
"contents": "{\"package\": \"c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro2-1.0.36",