-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeptree.json
996 lines (996 loc) · 41.1 KB
/
deptree.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
[
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.31.crate",
"sha256": "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f",
"dest": "cargo/vendor/anyhow-1.0.31"
},
{
"type": "inline",
"contents": "{\"package\": \"85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.31",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk/atk-0.9.0.crate",
"sha256": "812b4911e210bd51b24596244523c856ca749e6223c50a7fbbba3f89ee37c426",
"dest": "cargo/vendor/atk-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"812b4911e210bd51b24596244523c856ca749e6223c50a7fbbba3f89ee37c426\", \"files\": {}}",
"dest": "cargo/vendor/atk-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atk-sys/atk-sys-0.10.0.crate",
"sha256": "f530e4af131d94cc4fa15c5c9d0348f0ef28bac64ba660b6b2a1cf2605dedfce",
"dest": "cargo/vendor/atk-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f530e4af131d94cc4fa15c5c9d0348f0ef28bac64ba660b6b2a1cf2605dedfce\", \"files\": {}}",
"dest": "cargo/vendor/atk-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.2.1.crate",
"sha256": "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693",
"dest": "cargo/vendor/bitflags-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.3.4.crate",
"sha256": "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de",
"dest": "cargo/vendor/byteorder-1.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.9.1.crate",
"sha256": "c5c0f2e047e8ca53d0ff249c54ae047931d7a6ebe05d00af73e0ffeb6e34bdb8",
"dest": "cargo/vendor/cairo-rs-0.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"c5c0f2e047e8ca53d0ff249c54ae047931d7a6ebe05d00af73e0ffeb6e34bdb8\", \"files\": {}}",
"dest": "cargo/vendor/cairo-rs-0.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.10.0.crate",
"sha256": "2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7",
"dest": "cargo/vendor/cairo-sys-rs-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7\", \"files\": {}}",
"dest": "cargo/vendor/cairo-sys-rs-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.58.crate",
"sha256": "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518",
"dest": "cargo/vendor/cc-1.0.58"
},
{
"type": "inline",
"contents": "{\"package\": \"f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.58",
"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/derivative/derivative-2.1.1.crate",
"sha256": "cb582b60359da160a9477ee80f15c8d784c477e69c217ef2cdd4169c24ea380f",
"dest": "cargo/vendor/derivative-2.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cb582b60359da160a9477ee80f15c8d784c477e69c217ef2cdd4169c24ea380f\", \"files\": {}}",
"dest": "cargo/vendor/derivative-2.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.5.3.crate",
"sha256": "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3",
"dest": "cargo/vendor/either-1.5.3"
},
{
"type": "inline",
"contents": "{\"package\": \"bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3\", \"files\": {}}",
"dest": "cargo/vendor/either-1.5.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2/enumflags2-0.6.4.crate",
"sha256": "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0",
"dest": "cargo/vendor/enumflags2-0.6.4"
},
{
"type": "inline",
"contents": "{\"package\": \"83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2-0.6.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.6.4.crate",
"sha256": "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce",
"dest": "cargo/vendor/enumflags2_derive-0.6.4"
},
{
"type": "inline",
"contents": "{\"package\": \"946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce\", \"files\": {}}",
"dest": "cargo/vendor/enumflags2_derive-0.6.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fastrand/fastrand-1.3.5.crate",
"sha256": "5c85295147490b8fcf2ea3d104080a105a8b2c63f9c319e82c02d8e952388919",
"dest": "cargo/vendor/fastrand-1.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"5c85295147490b8fcf2ea3d104080a105a8b2c63f9c319e82c02d8e952388919\", \"files\": {}}",
"dest": "cargo/vendor/fastrand-1.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures/futures-0.3.5.crate",
"sha256": "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613",
"dest": "cargo/vendor/futures-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613\", \"files\": {}}",
"dest": "cargo/vendor/futures-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.5.crate",
"sha256": "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5",
"dest": "cargo/vendor/futures-channel-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5\", \"files\": {}}",
"dest": "cargo/vendor/futures-channel-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-core/futures-core-0.3.5.crate",
"sha256": "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399",
"dest": "cargo/vendor/futures-core-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399\", \"files\": {}}",
"dest": "cargo/vendor/futures-core-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-executor/futures-executor-0.3.5.crate",
"sha256": "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314",
"dest": "cargo/vendor/futures-executor-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314\", \"files\": {}}",
"dest": "cargo/vendor/futures-executor-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-io/futures-io-0.3.5.crate",
"sha256": "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789",
"dest": "cargo/vendor/futures-io-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789\", \"files\": {}}",
"dest": "cargo/vendor/futures-io-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-macro/futures-macro-0.3.5.crate",
"sha256": "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39",
"dest": "cargo/vendor/futures-macro-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39\", \"files\": {}}",
"dest": "cargo/vendor/futures-macro-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-sink/futures-sink-0.3.5.crate",
"sha256": "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc",
"dest": "cargo/vendor/futures-sink-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc\", \"files\": {}}",
"dest": "cargo/vendor/futures-sink-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-task/futures-task-0.3.5.crate",
"sha256": "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626",
"dest": "cargo/vendor/futures-task-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626\", \"files\": {}}",
"dest": "cargo/vendor/futures-task-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-util/futures-util-0.3.5.crate",
"sha256": "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6",
"dest": "cargo/vendor/futures-util-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6\", \"files\": {}}",
"dest": "cargo/vendor/futures-util-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk/gdk-0.13.0.crate",
"sha256": "7764140c1246a19ce9b5f7e8b760f7d11644651a8e18a64873e9980cd68ba558",
"dest": "cargo/vendor/gdk-0.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7764140c1246a19ce9b5f7e8b760f7d11644651a8e18a64873e9980cd68ba558\", \"files\": {}}",
"dest": "cargo/vendor/gdk-0.13.0",
"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-sys/gdk-pixbuf-sys-0.10.0.crate",
"sha256": "3bfe468a7f43e97b8d193a762b6c5cf67a7d36cacbc0b9291dbcae24bfea1e8f",
"dest": "cargo/vendor/gdk-pixbuf-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3bfe468a7f43e97b8d193a762b6c5cf67a7d36cacbc0b9291dbcae24bfea1e8f\", \"files\": {}}",
"dest": "cargo/vendor/gdk-pixbuf-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gdk-sys/gdk-sys-0.10.0.crate",
"sha256": "0a9653cfc500fd268015b1ac055ddbc3df7a5c9ea3f4ccef147b3957bd140d69",
"dest": "cargo/vendor/gdk-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0a9653cfc500fd268015b1ac055ddbc3df7a5c9ea3f4ccef147b3957bd140d69\", \"files\": {}}",
"dest": "cargo/vendor/gdk-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gio/gio-0.9.0.crate",
"sha256": "3c5492e80b45e6c56214894a9a0cbe1340ab5066eb44a2dbe151393b6d7942c0",
"dest": "cargo/vendor/gio-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3c5492e80b45e6c56214894a9a0cbe1340ab5066eb44a2dbe151393b6d7942c0\", \"files\": {}}",
"dest": "cargo/vendor/gio-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gio-sys/gio-sys-0.10.0.crate",
"sha256": "35993626299fbcaa73c0a19be8fdd01c950f9f3d3ac9cb4fb5532b924ab1a5d7",
"dest": "cargo/vendor/gio-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"35993626299fbcaa73c0a19be8fdd01c950f9f3d3ac9cb4fb5532b924ab1a5d7\", \"files\": {}}",
"dest": "cargo/vendor/gio-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib/glib-0.10.1.crate",
"sha256": "a5e0533f48640d86e8e2f3cee778a9f97588d4a0bec8be065ee51ea52346d6c1",
"dest": "cargo/vendor/glib-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a5e0533f48640d86e8e2f3cee778a9f97588d4a0bec8be065ee51ea52346d6c1\", \"files\": {}}",
"dest": "cargo/vendor/glib-0.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib-macros/glib-macros-0.10.1.crate",
"sha256": "41486a26d1366a8032b160b59065a59fb528530a46a49f627e7048fb8c064039",
"dest": "cargo/vendor/glib-macros-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"41486a26d1366a8032b160b59065a59fb528530a46a49f627e7048fb8c064039\", \"files\": {}}",
"dest": "cargo/vendor/glib-macros-0.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/glib-sys/glib-sys-0.10.0.crate",
"sha256": "b6cda4af5c2f4507b7a3535b798dca2135293f4bc3a17f399ce244ef15841c4c",
"dest": "cargo/vendor/glib-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b6cda4af5c2f4507b7a3535b798dca2135293f4bc3a17f399ce244ef15841c4c\", \"files\": {}}",
"dest": "cargo/vendor/glib-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gobject-sys/gobject-sys-0.10.0.crate",
"sha256": "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c",
"dest": "cargo/vendor/gobject-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c\", \"files\": {}}",
"dest": "cargo/vendor/gobject-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gtk/gtk-0.9.0.crate",
"sha256": "3adf6adf7ba686d5e4f4dae32edfa12118af9469f67425f0afd075bf4a58ea9d",
"dest": "cargo/vendor/gtk-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"3adf6adf7ba686d5e4f4dae32edfa12118af9469f67425f0afd075bf4a58ea9d\", \"files\": {}}",
"dest": "cargo/vendor/gtk-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gtk-sys/gtk-sys-0.10.0.crate",
"sha256": "89acda6f084863307d948ba64a4b1ef674e8527dddab147ee4cdcc194c880457",
"dest": "cargo/vendor/gtk-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"89acda6f084863307d948ba64a4b1ef674e8527dddab147ee4cdcc194c880457\", \"files\": {}}",
"dest": "cargo/vendor/gtk-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/heck/heck-0.3.1.crate",
"sha256": "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205",
"dest": "cargo/vendor/heck-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/itertools/itertools-0.9.0.crate",
"sha256": "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b",
"dest": "cargo/vendor/itertools-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b\", \"files\": {}}",
"dest": "cargo/vendor/itertools-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/libc/libc-0.2.74.crate",
"sha256": "a2f02823cf78b754822df5f7f268fb59822e7296276d3e069d8e8cb26a14bd10",
"dest": "cargo/vendor/libc-0.2.74"
},
{
"type": "inline",
"contents": "{\"package\": \"a2f02823cf78b754822df5f7f268fb59822e7296276d3e069d8e8cb26a14bd10\", \"files\": {}}",
"dest": "cargo/vendor/libc-0.2.74",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/memchr/memchr-2.3.3.crate",
"sha256": "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400",
"dest": "cargo/vendor/memchr-2.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400\", \"files\": {}}",
"dest": "cargo/vendor/memchr-2.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/nix/nix-0.17.0.crate",
"sha256": "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363",
"dest": "cargo/vendor/nix-0.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363\", \"files\": {}}",
"dest": "cargo/vendor/nix-0.17.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/once_cell/once_cell-1.4.0.crate",
"sha256": "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d",
"dest": "cargo/vendor/once_cell-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d\", \"files\": {}}",
"dest": "cargo/vendor/once_cell-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pango/pango-0.9.0.crate",
"sha256": "460dbe5ad850c46780ba61f142e966beacf5eebb09822830f796c91d7d4fec31",
"dest": "cargo/vendor/pango-0.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"460dbe5ad850c46780ba61f142e966beacf5eebb09822830f796c91d7d4fec31\", \"files\": {}}",
"dest": "cargo/vendor/pango-0.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pango-sys/pango-sys-0.10.0.crate",
"sha256": "24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890",
"dest": "cargo/vendor/pango-sys-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890\", \"files\": {}}",
"dest": "cargo/vendor/pango-sys-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pin-project/pin-project-0.4.22.crate",
"sha256": "12e3a6cdbfe94a5e4572812a0201f8c0ed98c1c452c7b8563ce2276988ef9c17",
"dest": "cargo/vendor/pin-project-0.4.22"
},
{
"type": "inline",
"contents": "{\"package\": \"12e3a6cdbfe94a5e4572812a0201f8c0ed98c1c452c7b8563ce2276988ef9c17\", \"files\": {}}",
"dest": "cargo/vendor/pin-project-0.4.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/pin-project-internal/pin-project-internal-0.4.22.crate",
"sha256": "6a0ffd45cf79d88737d7cc85bfd5d2894bee1139b356e616fe85dc389c61aaf7",
"dest": "cargo/vendor/pin-project-internal-0.4.22"
},
{
"type": "inline",
"contents": "{\"package\": \"6a0ffd45cf79d88737d7cc85bfd5d2894bee1139b356e616fe85dc389c61aaf7\", \"files\": {}}",
"dest": "cargo/vendor/pin-project-internal-0.4.22",
"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.18.crate",
"sha256": "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33",
"dest": "cargo/vendor/pkg-config-0.3.18"
},
{
"type": "inline",
"contents": "{\"package\": \"d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33\", \"files\": {}}",
"dest": "cargo/vendor/pkg-config-0.3.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-0.1.5.crate",
"sha256": "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785",
"dest": "cargo/vendor/proc-macro-crate-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-crate-0.1.5",
"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.3.crate",
"sha256": "fc175e9777c3116627248584e8f8b3e2987405cabe1c0adf7d1dd28f09dc7880",
"dest": "cargo/vendor/proc-macro-error-1.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"fc175e9777c3116627248584e8f8b3e2987405cabe1c0adf7d1dd28f09dc7880\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-error-1.0.3",
"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.3.crate",
"sha256": "3cc9795ca17eb581285ec44936da7fc2335a3f34f2ddd13118b6f4d515435c50",
"dest": "cargo/vendor/proc-macro-error-attr-1.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"3cc9795ca17eb581285ec44936da7fc2335a3f34f2ddd13118b6f4d515435c50\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-error-attr-1.0.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-hack/proc-macro-hack-0.5.16.crate",
"sha256": "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4",
"dest": "cargo/vendor/proc-macro-hack-0.5.16"
},
{
"type": "inline",
"contents": "{\"package\": \"7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-hack-0.5.16",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro-nested/proc-macro-nested-0.1.6.crate",
"sha256": "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a",
"dest": "cargo/vendor/proc-macro-nested-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro-nested-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.18.crate",
"sha256": "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa",
"dest": "cargo/vendor/proc-macro2-1.0.18"
},
{
"type": "inline",
"contents": "{\"package\": \"beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa\", \"files\": {}}",
"dest": "cargo/vendor/proc-macro2-1.0.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/quote/quote-1.0.7.crate",
"sha256": "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37",
"dest": "cargo/vendor/quote-1.0.7"
},
{
"type": "inline",
"contents": "{\"package\": \"aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37\", \"files\": {}}",
"dest": "cargo/vendor/quote-1.0.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/scoped-tls/scoped-tls-1.0.0.crate",
"sha256": "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2",
"dest": "cargo/vendor/scoped-tls-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2\", \"files\": {}}",
"dest": "cargo/vendor/scoped-tls-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/serde/serde-1.0.114.crate",
"sha256": "5317f7588f0a5078ee60ef675ef96735a1442132dc645eb1d12c018620ed8cd3",
"dest": "cargo/vendor/serde-1.0.114"
},
{
"type": "inline",
"contents": "{\"package\": \"5317f7588f0a5078ee60ef675ef96735a1442132dc645eb1d12c018620ed8cd3\", \"files\": {}}",
"dest": "cargo/vendor/serde-1.0.114",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/serde_derive/serde_derive-1.0.114.crate",
"sha256": "2a0be94b04690fbaed37cddffc5c134bf537c8e3329d53e982fe04c374978f8e",
"dest": "cargo/vendor/serde_derive-1.0.114"
},
{
"type": "inline",
"contents": "{\"package\": \"2a0be94b04690fbaed37cddffc5c134bf537c8e3329d53e982fe04c374978f8e\", \"files\": {}}",
"dest": "cargo/vendor/serde_derive-1.0.114",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/serde_repr/serde_repr-0.1.6.crate",
"sha256": "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76",
"dest": "cargo/vendor/serde_repr-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76\", \"files\": {}}",
"dest": "cargo/vendor/serde_repr-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/slab/slab-0.4.2.crate",
"sha256": "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8",
"dest": "cargo/vendor/slab-0.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8\", \"files\": {}}",
"dest": "cargo/vendor/slab-0.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/strum/strum-0.18.0.crate",
"sha256": "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b",
"dest": "cargo/vendor/strum-0.18.0"
},
{
"type": "inline",
"contents": "{\"package\": \"57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b\", \"files\": {}}",
"dest": "cargo/vendor/strum-0.18.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/strum_macros/strum_macros-0.18.0.crate",
"sha256": "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c",
"dest": "cargo/vendor/strum_macros-0.18.0"
},
{
"type": "inline",
"contents": "{\"package\": \"87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c\", \"files\": {}}",
"dest": "cargo/vendor/strum_macros-0.18.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/syn/syn-1.0.39.crate",
"sha256": "891d8d6567fe7c7f8835a3a98af4208f3846fba258c1bc3c31d6e506239f11f9",
"dest": "cargo/vendor/syn-1.0.39"
},
{
"type": "inline",
"contents": "{\"package\": \"891d8d6567fe7c7f8835a3a98af4208f3846fba258c1bc3c31d6e506239f11f9\", \"files\": {}}",
"dest": "cargo/vendor/syn-1.0.39",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/syn-mid/syn-mid-0.5.0.crate",
"sha256": "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a",
"dest": "cargo/vendor/syn-mid-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a\", \"files\": {}}",
"dest": "cargo/vendor/syn-mid-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/system-deps/system-deps-1.3.2.crate",
"sha256": "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b",
"dest": "cargo/vendor/system-deps-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b\", \"files\": {}}",
"dest": "cargo/vendor/system-deps-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/thiserror/thiserror-1.0.20.crate",
"sha256": "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08",
"dest": "cargo/vendor/thiserror-1.0.20"
},
{
"type": "inline",
"contents": "{\"package\": \"7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08\", \"files\": {}}",
"dest": "cargo/vendor/thiserror-1.0.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/thiserror-impl/thiserror-impl-1.0.20.crate",
"sha256": "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793",
"dest": "cargo/vendor/thiserror-impl-1.0.20"
},
{
"type": "inline",
"contents": "{\"package\": \"bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793\", \"files\": {}}",
"dest": "cargo/vendor/thiserror-impl-1.0.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/toml/toml-0.5.6.crate",
"sha256": "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a",
"dest": "cargo/vendor/toml-0.5.6"
},
{
"type": "inline",
"contents": "{\"package\": \"ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a\", \"files\": {}}",
"dest": "cargo/vendor/toml-0.5.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/unicode-segmentation/unicode-segmentation-1.6.0.crate",
"sha256": "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0",
"dest": "cargo/vendor/unicode-segmentation-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0\", \"files\": {}}",
"dest": "cargo/vendor/unicode-segmentation-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/unicode-xid/unicode-xid-0.2.1.crate",
"sha256": "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564",
"dest": "cargo/vendor/unicode-xid-0.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564\", \"files\": {}}",
"dest": "cargo/vendor/unicode-xid-0.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/version-compare/version-compare-0.0.10.crate",
"sha256": "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1",
"dest": "cargo/vendor/version-compare-0.0.10"
},
{
"type": "inline",
"contents": "{\"package\": \"d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1\", \"files\": {}}",
"dest": "cargo/vendor/version-compare-0.0.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/version_check/version_check-0.9.2.crate",
"sha256": "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed",
"dest": "cargo/vendor/version_check-0.9.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed\", \"files\": {}}",
"dest": "cargo/vendor/version_check-0.9.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/void/void-1.0.2.crate",
"sha256": "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d",
"dest": "cargo/vendor/void-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d\", \"files\": {}}",
"dest": "cargo/vendor/void-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/zbus/zbus-1.1.1.crate",
"sha256": "e941349efbc28a22449be1e7bdaac074c9f9d96b465f855af018aa1a4e99d0a6",
"dest": "cargo/vendor/zbus-1.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e941349efbc28a22449be1e7bdaac074c9f9d96b465f855af018aa1a4e99d0a6\", \"files\": {}}",
"dest": "cargo/vendor/zbus-1.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/zbus_macros/zbus_macros-1.1.0.crate",
"sha256": "a153562b600280af9eaf6aff75132e1781e04bdcbb37ae03ebcc8286bb0ede42",
"dest": "cargo/vendor/zbus_macros-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a153562b600280af9eaf6aff75132e1781e04bdcbb37ae03ebcc8286bb0ede42\", \"files\": {}}",
"dest": "cargo/vendor/zbus_macros-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/zvariant/zvariant-2.1.0.crate",
"sha256": "5628bf9623b31a69f4c13c0c31b65fd5639786b73df2294827356d67ed022a9a",
"dest": "cargo/vendor/zvariant-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"5628bf9623b31a69f4c13c0c31b65fd5639786b73df2294827356d67ed022a9a\", \"files\": {}}",
"dest": "cargo/vendor/zvariant-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/zvariant_derive/zvariant_derive-2.1.0.crate",
"sha256": "c1374bdb542bd9041dc64e0d653e1fd40f4ac799da18d141446480827b025759",
"dest": "cargo/vendor/zvariant_derive-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c1374bdb542bd9041dc64e0d653e1fd40f4ac799da18d141446480827b025759\", \"files\": {}}",
"dest": "cargo/vendor/zvariant_derive-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "inline",
"contents": "[source.vendored-sources]\ndirectory = \"cargo/vendor\"\n\n[source.crates-io]\nreplace-with = \"vendored-sources\"\n",
"dest": "cargo",
"dest-filename": "config"
}
]