forked from flathub/io.github.philipk.boilr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cargo-lock.json
4654 lines (4654 loc) · 193 KB
/
cargo-lock.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/philipk/image",
"commit": "55a668409b28fedcd6cd3dea25ae1b3cc9d25ec5",
"dest": "flatpak-cargo/git/image-55a6684"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ab_glyph/ab_glyph-0.2.15.crate",
"sha256": "24606928a235e73cdef55a0c909719cadd72fce573e5713d58cb2952d8f5794c",
"dest": "cargo/vendor/ab_glyph-0.2.15"
},
{
"type": "inline",
"contents": "{\"package\": \"24606928a235e73cdef55a0c909719cadd72fce573e5713d58cb2952d8f5794c\", \"files\": {}}",
"dest": "cargo/vendor/ab_glyph-0.2.15",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ab_glyph_rasterizer/ab_glyph_rasterizer-0.1.5.crate",
"sha256": "a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e\", \"files\": {}}",
"dest": "cargo/vendor/ab_glyph_rasterizer-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/addr2line/addr2line-0.17.0.crate",
"sha256": "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b",
"dest": "cargo/vendor/addr2line-0.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.17.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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/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/ahash/ahash-0.8.0.crate",
"sha256": "57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72",
"dest": "cargo/vendor/ahash-0.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.0",
"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.4.crate",
"sha256": "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e",
"dest": "cargo/vendor/android_system_properties-0.1.4"
},
{
"type": "inline",
"contents": "{\"package\": \"d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e\", \"files\": {}}",
"dest": "cargo/vendor/android_system_properties-0.1.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arboard/arboard-2.1.0.crate",
"sha256": "6045ca509e4abacde2b884ac4618a51d0c017b5d85a3ee84a7226eb33b3154a9",
"dest": "cargo/vendor/arboard-2.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6045ca509e4abacde2b884ac4618a51d0c017b5d85a3ee84a7226eb33b3154a9\", \"files\": {}}",
"dest": "cargo/vendor/arboard-2.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayref/arrayref-0.3.6.crate",
"sha256": "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544",
"dest": "cargo/vendor/arrayref-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.5.2.crate",
"sha256": "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b",
"dest": "cargo/vendor/arrayvec-0.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ascii/ascii-1.0.0.crate",
"sha256": "bbf56136a5198c7b01a49e3afcbef6cf84597273d298f54432926024107b0109",
"dest": "cargo/vendor/ascii-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bbf56136a5198c7b01a49e3afcbef6cf84597273d298f54432926024107b0109\", \"files\": {}}",
"dest": "cargo/vendor/ascii-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.56.crate",
"sha256": "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716",
"dest": "cargo/vendor/async-trait-0.1.56"
},
{
"type": "inline",
"contents": "{\"package\": \"96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.56",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic_refcell/atomic_refcell-0.1.8.crate",
"sha256": "73b5e5f48b927f04e952dedc932f31995a65a0bf65ec971c74436e51bf6e970d",
"dest": "cargo/vendor/atomic_refcell-0.1.8"
},
{
"type": "inline",
"contents": "{\"package\": \"73b5e5f48b927f04e952dedc932f31995a65a0bf65ec971c74436e51bf6e970d\", \"files\": {}}",
"dest": "cargo/vendor/atomic_refcell-0.1.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.1.0.crate",
"sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
"dest": "cargo/vendor/autocfg-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.66.crate",
"sha256": "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7",
"dest": "cargo/vendor/backtrace-0.3.66"
},
{
"type": "inline",
"contents": "{\"package\": \"cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.66",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.13.0.crate",
"sha256": "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd",
"dest": "cargo/vendor/base64-0.13.0"
},
{
"type": "inline",
"contents": "{\"package\": \"904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.13.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit_field/bit_field-0.10.1.crate",
"sha256": "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4",
"dest": "cargo/vendor/bit_field-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4\", \"files\": {}}",
"dest": "cargo/vendor/bit_field-0.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
"dest": "cargo/vendor/bitflags-1.3.2"
},
{
"type": "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/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.7.3.crate",
"sha256": "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b",
"dest": "cargo/vendor/block-buffer-0.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-padding/block-padding-0.1.5.crate",
"sha256": "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5",
"dest": "cargo/vendor/block-padding-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5\", \"files\": {}}",
"dest": "cargo/vendor/block-padding-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/build_const/build_const-0.2.2.crate",
"sha256": "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7",
"dest": "cargo/vendor/build_const-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7\", \"files\": {}}",
"dest": "cargo/vendor/build_const-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.9.1.crate",
"sha256": "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899",
"dest": "cargo/vendor/bumpalo-3.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byte-tools/byte-tools-0.3.1.crate",
"sha256": "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7",
"dest": "cargo/vendor/byte-tools-0.3.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7\", \"files\": {}}",
"dest": "cargo/vendor/byte-tools-0.3.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytecount/bytecount-0.6.2.crate",
"sha256": "72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e",
"dest": "cargo/vendor/bytecount-0.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e\", \"files\": {}}",
"dest": "cargo/vendor/bytecount-0.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.9.1.crate",
"sha256": "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc",
"dest": "cargo/vendor/bytemuck-1.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.1.0.crate",
"sha256": "562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e",
"dest": "cargo/vendor/bytemuck_derive-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck_derive-1.1.0",
"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/bytes/bytes-1.1.0.crate",
"sha256": "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8",
"dest": "cargo/vendor/bytes-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/calloop/calloop-0.10.1.crate",
"sha256": "a22a6a8f622f797120d452c630b0ab12e1331a1a753e2039ce7868d4ac77b4ee",
"dest": "cargo/vendor/calloop-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a22a6a8f622f797120d452c630b0ab12e1331a1a753e2039ce7868d4ac77b4ee\", \"files\": {}}",
"dest": "cargo/vendor/calloop-0.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.73.crate",
"sha256": "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11",
"dest": "cargo/vendor/cc-1.0.73"
},
{
"type": "inline",
"contents": "{\"package\": \"2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.73",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cesu8/cesu8-1.1.0.crate",
"sha256": "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c",
"dest": "cargo/vendor/cesu8-1.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\", \"files\": {}}",
"dest": "cargo/vendor/cesu8-1.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
"dest": "cargo/vendor/cfg-if-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cgl/cgl-0.3.2.crate",
"sha256": "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff",
"dest": "cargo/vendor/cgl-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff\", \"files\": {}}",
"dest": "cargo/vendor/cgl-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/chrono/chrono-0.4.22.crate",
"sha256": "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1",
"dest": "cargo/vendor/chrono-0.4.22"
},
{
"type": "inline",
"contents": "{\"package\": \"bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1\", \"files\": {}}",
"dest": "cargo/vendor/chrono-0.4.22",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clipboard-win/clipboard-win-3.1.1.crate",
"sha256": "9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342",
"dest": "cargo/vendor/clipboard-win-3.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342\", \"files\": {}}",
"dest": "cargo/vendor/clipboard-win-3.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clipboard-win/clipboard-win-4.4.1.crate",
"sha256": "2f3e1238132dc01f081e1cbb9dace14e5ef4c3a51ee244bd982275fb514605db",
"dest": "cargo/vendor/clipboard-win-4.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"2f3e1238132dc01f081e1cbb9dace14e5ef4c3a51ee244bd982275fb514605db\", \"files\": {}}",
"dest": "cargo/vendor/clipboard-win-4.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cmake/cmake-0.1.48.crate",
"sha256": "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a",
"dest": "cargo/vendor/cmake-0.1.48"
},
{
"type": "inline",
"contents": "{\"package\": \"e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a\", \"files\": {}}",
"dest": "cargo/vendor/cmake-0.1.48",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cocoa/cocoa-0.24.0.crate",
"sha256": "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832",
"dest": "cargo/vendor/cocoa-0.24.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832\", \"files\": {}}",
"dest": "cargo/vendor/cocoa-0.24.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cocoa-foundation/cocoa-foundation-0.1.0.crate",
"sha256": "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318",
"dest": "cargo/vendor/cocoa-foundation-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318\", \"files\": {}}",
"dest": "cargo/vendor/cocoa-foundation-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color-eyre/color-eyre-0.6.2.crate",
"sha256": "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204",
"dest": "cargo/vendor/color-eyre-0.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204\", \"files\": {}}",
"dest": "cargo/vendor/color-eyre-0.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/color-spantrace/color-spantrace-0.2.0.crate",
"sha256": "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce",
"dest": "cargo/vendor/color-spantrace-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce\", \"files\": {}}",
"dest": "cargo/vendor/color-spantrace-0.2.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/combine/combine-4.6.4.crate",
"sha256": "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948",
"dest": "cargo/vendor/combine-4.6.4"
},
{
"type": "inline",
"contents": "{\"package\": \"2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948\", \"files\": {}}",
"dest": "cargo/vendor/combine-4.6.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/config/config-0.13.2.crate",
"sha256": "11f1667b8320afa80d69d8bbe40830df2c8a06003d86f73d8e003b2c48df416d",
"dest": "cargo/vendor/config-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"11f1667b8320afa80d69d8bbe40830df2c8a06003d86f73d8e003b2c48df416d\", \"files\": {}}",
"dest": "cargo/vendor/config-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/copypasta/copypasta-0.8.1.crate",
"sha256": "d7216b5c1e9ad3867252505995b02d01c6fa7e6db0d8abd42634352ef377777e",
"dest": "cargo/vendor/copypasta-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d7216b5c1e9ad3867252505995b02d01c6fa7e6db0d8abd42634352ef377777e\", \"files\": {}}",
"dest": "cargo/vendor/copypasta-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation/core-foundation-0.9.3.crate",
"sha256": "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146",
"dest": "cargo/vendor/core-foundation-0.9.3"
},
{
"type": "inline",
"contents": "{\"package\": \"194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-0.9.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.3.crate",
"sha256": "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc",
"dest": "cargo/vendor/core-foundation-sys-0.8.3"
},
{
"type": "inline",
"contents": "{\"package\": \"5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc\", \"files\": {}}",
"dest": "cargo/vendor/core-foundation-sys-0.8.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics/core-graphics-0.22.3.crate",
"sha256": "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb",
"dest": "cargo/vendor/core-graphics-0.22.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-0.22.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.1.1.crate",
"sha256": "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b",
"dest": "cargo/vendor/core-graphics-types-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b\", \"files\": {}}",
"dest": "cargo/vendor/core-graphics-types-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/core-text/core-text-19.2.0.crate",
"sha256": "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25",
"dest": "cargo/vendor/core-text-19.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25\", \"files\": {}}",
"dest": "cargo/vendor/core-text-19.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc/crc-1.8.1.crate",
"sha256": "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb",
"dest": "cargo/vendor/crc-1.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb\", \"files\": {}}",
"dest": "cargo/vendor/crc-1.8.1",
"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/crossbeam-channel/crossbeam-channel-0.5.4.crate",
"sha256": "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53",
"dest": "cargo/vendor/crossbeam-channel-0.5.4"
},
{
"type": "inline",
"contents": "{\"package\": \"5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-channel-0.5.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.1.crate",
"sha256": "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e",
"dest": "cargo/vendor/crossbeam-deque-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.8.crate",
"sha256": "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c",
"dest": "cargo/vendor/crossbeam-epoch-0.9.8"
},
{
"type": "inline",
"contents": "{\"package\": \"1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.9.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.8.crate",
"sha256": "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38",
"dest": "cargo/vendor/crossbeam-utils-0.8.8"
},
{
"type": "inline",
"contents": "{\"package\": \"0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.8.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossfont/crossfont-0.5.0.crate",
"sha256": "f66b1c1979c4362323f03ab6bf7fb522902bfc418e0c37319ab347f9561d980f",
"dest": "cargo/vendor/crossfont-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"f66b1c1979c4362323f03ab6bf7fb522902bfc418e0c37319ab347f9561d980f\", \"files\": {}}",
"dest": "cargo/vendor/crossfont-0.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cty/cty-0.2.2.crate",
"sha256": "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35",
"dest": "cargo/vendor/cty-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35\", \"files\": {}}",
"dest": "cargo/vendor/cty-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling/darling-0.13.4.crate",
"sha256": "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c",
"dest": "cargo/vendor/darling-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c\", \"files\": {}}",
"dest": "cargo/vendor/darling-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_core/darling_core-0.13.4.crate",
"sha256": "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610",
"dest": "cargo/vendor/darling_core-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610\", \"files\": {}}",
"dest": "cargo/vendor/darling_core-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/darling_macro/darling_macro-0.13.4.crate",
"sha256": "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835",
"dest": "cargo/vendor/darling_macro-0.13.4"
},
{
"type": "inline",
"contents": "{\"package\": \"9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835\", \"files\": {}}",
"dest": "cargo/vendor/darling_macro-0.13.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dashmap/dashmap-5.3.4.crate",
"sha256": "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f",
"dest": "cargo/vendor/dashmap-5.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f\", \"files\": {}}",
"dest": "cargo/vendor/dashmap-5.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/deflate/deflate-1.0.0.crate",
"sha256": "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f",
"dest": "cargo/vendor/deflate-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f\", \"files\": {}}",
"dest": "cargo/vendor/deflate-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/digest/digest-0.8.1.crate",
"sha256": "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5",
"dest": "cargo/vendor/digest-0.8.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5\", \"files\": {}}",
"dest": "cargo/vendor/digest-0.8.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dispatch/dispatch-0.2.0.crate",
"sha256": "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b",
"dest": "cargo/vendor/dispatch-0.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b\", \"files\": {}}",
"dest": "cargo/vendor/dispatch-0.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dlib/dlib-0.5.0.crate",
"sha256": "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794",
"dest": "cargo/vendor/dlib-0.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794\", \"files\": {}}",
"dest": "cargo/vendor/dlib-0.5.0",
"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/downcast-rs/downcast-rs-1.2.0.crate",
"sha256": "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650",
"dest": "cargo/vendor/downcast-rs-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650\", \"files\": {}}",
"dest": "cargo/vendor/downcast-rs-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dwrote/dwrote-0.11.0.crate",
"sha256": "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b",
"dest": "cargo/vendor/dwrote-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b\", \"files\": {}}",
"dest": "cargo/vendor/dwrote-0.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dyn-clone/dyn-clone-1.0.9.crate",
"sha256": "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2",
"dest": "cargo/vendor/dyn-clone-1.0.9"
},
{
"type": "inline",
"contents": "{\"package\": \"4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2\", \"files\": {}}",
"dest": "cargo/vendor/dyn-clone-1.0.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/eframe/eframe-0.19.0.crate",
"sha256": "b0d49426c3e72a6728b0c790d22db8bf7bbcff10d83b8b6f3a01295be982302e",
"dest": "cargo/vendor/eframe-0.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b0d49426c3e72a6728b0c790d22db8bf7bbcff10d83b8b6f3a01295be982302e\", \"files\": {}}",
"dest": "cargo/vendor/eframe-0.19.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/egui/egui-0.19.0.crate",
"sha256": "fc9fcd393c3daaaf5909008a1d948319d538b79c51871e4df0993260260a94e4",
"dest": "cargo/vendor/egui-0.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"fc9fcd393c3daaaf5909008a1d948319d538b79c51871e4df0993260260a94e4\", \"files\": {}}",
"dest": "cargo/vendor/egui-0.19.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/egui-winit/egui-winit-0.19.0.crate",
"sha256": "07ddc525334c416e11580123e147b970f738507f427c9fb1cd09ea2dd7416a3a",
"dest": "cargo/vendor/egui-winit-0.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"07ddc525334c416e11580123e147b970f738507f427c9fb1cd09ea2dd7416a3a\", \"files\": {}}",
"dest": "cargo/vendor/egui-winit-0.19.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/egui_glow/egui_glow-0.19.0.crate",
"sha256": "ad77d4a00402bae9658ee64be148f4b2a0b38e4fc7874970575ca01ed1c5b75d",
"dest": "cargo/vendor/egui_glow-0.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ad77d4a00402bae9658ee64be148f4b2a0b38e4fc7874970575ca01ed1c5b75d\", \"files\": {}}",
"dest": "cargo/vendor/egui_glow-0.19.0",
"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",