-
Notifications
You must be signed in to change notification settings - Fork 13
/
cargo-sources.json
8870 lines (8870 loc) · 371 KB
/
cargo-sources.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "git",
"url": "https://github.com/ankitects/linkcheck",
"commit": "184b2ca50ed39ca43da13f0b830a463861adb9ca",
"dest": "flatpak-cargo/git/linkcheck-184b2ca"
},
{
"type": "git",
"url": "https://github.com/ankitects/rust-url",
"commit": "bb930b8d089f4d30d7d19c12e54e66191de47b88",
"dest": "flatpak-cargo/git/rust-url-bb930b8"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/addr2line/addr2line-0.24.2.crate",
"sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1",
"dest": "cargo/vendor/addr2line-0.24.2"
},
{
"type": "inline",
"contents": "{\"package\": \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.24.2",
"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/adler2/adler2-2.0.0.crate",
"sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627",
"dest": "cargo/vendor/adler2-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627\", \"files\": {}}",
"dest": "cargo/vendor/adler2-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aes/aes-0.8.4.crate",
"sha256": "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0",
"dest": "cargo/vendor/aes-0.8.4"
},
{
"type": "inline",
"contents": "{\"package\": \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\", \"files\": {}}",
"dest": "cargo/vendor/aes-0.8.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ahash/ahash-0.8.11.crate",
"sha256": "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011",
"dest": "cargo/vendor/ahash-0.8.11"
},
{
"type": "inline",
"contents": "{\"package\": \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.11",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.3.crate",
"sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916",
"dest": "cargo/vendor/aho-corasick-1.1.3"
},
{
"type": "inline",
"contents": "{\"package\": \"8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.18.crate",
"sha256": "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f",
"dest": "cargo/vendor/allocator-api2-0.2.18"
},
{
"type": "inline",
"contents": "{\"package\": \"5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f\", \"files\": {}}",
"dest": "cargo/vendor/allocator-api2-0.2.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ammonia/ammonia-4.0.0.crate",
"sha256": "1ab99eae5ee58501ab236beb6f20f6ca39be615267b014899c89b2f0bc18a459",
"dest": "cargo/vendor/ammonia-4.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1ab99eae5ee58501ab236beb6f20f6ca39be615267b014899c89b2f0bc18a459\", \"files\": {}}",
"dest": "cargo/vendor/ammonia-4.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android-tzdata/android-tzdata-0.1.1.crate",
"sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
"dest": "cargo/vendor/android-tzdata-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0\", \"files\": {}}",
"dest": "cargo/vendor/android-tzdata-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate",
"sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
"dest": "cargo/vendor/android_system_properties-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}",
"dest": "cargo/vendor/android_system_properties-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anes/anes-0.1.6.crate",
"sha256": "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299",
"dest": "cargo/vendor/anes-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\", \"files\": {}}",
"dest": "cargo/vendor/anes-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstream/anstream-0.6.15.crate",
"sha256": "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526",
"dest": "cargo/vendor/anstream-0.6.15"
},
{
"type": "inline",
"contents": "{\"package\": \"64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.15",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.8.crate",
"sha256": "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1",
"dest": "cargo/vendor/anstyle-1.0.8"
},
{
"type": "inline",
"contents": "{\"package\": \"1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.5.crate",
"sha256": "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb",
"dest": "cargo/vendor/anstyle-parse-0.2.5"
},
{
"type": "inline",
"contents": "{\"package\": \"eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.1.1.crate",
"sha256": "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a",
"dest": "cargo/vendor/anstyle-query-1.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.4.crate",
"sha256": "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8",
"dest": "cargo/vendor/anstyle-wincon-3.0.4"
},
{
"type": "inline",
"contents": "{\"package\": \"5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.90.crate",
"sha256": "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95",
"dest": "cargo/vendor/anyhow-1.0.90"
},
{
"type": "inline",
"contents": "{\"package\": \"37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.90",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/apple-bundles/apple-bundles-0.17.0.crate",
"sha256": "716b8a7bacf7325eb3e7a1a7f5ead4da91e1e16d9b56a25edea0e1e4ba21fd8e",
"dest": "cargo/vendor/apple-bundles-0.17.0"
},
{
"type": "inline",
"contents": "{\"package\": \"716b8a7bacf7325eb3e7a1a7f5ead4da91e1e16d9b56a25edea0e1e4ba21fd8e\", \"files\": {}}",
"dest": "cargo/vendor/apple-bundles-0.17.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayref/arrayref-0.3.9.crate",
"sha256": "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb",
"dest": "cargo/vendor/arrayref-0.3.9"
},
{
"type": "inline",
"contents": "{\"package\": \"76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.6.crate",
"sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50",
"dest": "cargo/vendor/arrayvec-0.7.6"
},
{
"type": "inline",
"contents": "{\"package\": \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ash/ash-0.37.3+1.3.251.crate",
"sha256": "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a",
"dest": "cargo/vendor/ash-0.37.3+1.3.251"
},
{
"type": "inline",
"contents": "{\"package\": \"39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a\", \"files\": {}}",
"dest": "cargo/vendor/ash-0.37.3+1.3.251",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/assert-json-diff/assert-json-diff-2.0.2.crate",
"sha256": "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12",
"dest": "cargo/vendor/assert-json-diff-2.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12\", \"files\": {}}",
"dest": "cargo/vendor/assert-json-diff-2.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-compression/async-compression-0.4.17.crate",
"sha256": "0cb8f1d480b0ea3783ab015936d2a55c87e219676f0c0b7dec61494043f21857",
"dest": "cargo/vendor/async-compression-0.4.17"
},
{
"type": "inline",
"contents": "{\"package\": \"0cb8f1d480b0ea3783ab015936d2a55c87e219676f0c0b7dec61494043f21857\", \"files\": {}}",
"dest": "cargo/vendor/async-compression-0.4.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-stream/async-stream-0.3.6.crate",
"sha256": "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476",
"dest": "cargo/vendor/async-stream-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-stream-impl/async-stream-impl-0.3.6.crate",
"sha256": "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d",
"dest": "cargo/vendor/async-stream-impl-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-impl-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.83.crate",
"sha256": "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd",
"dest": "cargo/vendor/async-trait-0.1.83"
},
{
"type": "inline",
"contents": "{\"package\": \"721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.83",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atomic-waker/atomic-waker-1.1.2.crate",
"sha256": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0",
"dest": "cargo/vendor/atomic-waker-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\", \"files\": {}}",
"dest": "cargo/vendor/atomic-waker-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.4.0.crate",
"sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26",
"dest": "cargo/vendor/autocfg-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum/axum-0.7.7.crate",
"sha256": "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae",
"dest": "cargo/vendor/axum-0.7.7"
},
{
"type": "inline",
"contents": "{\"package\": \"504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae\", \"files\": {}}",
"dest": "cargo/vendor/axum-0.7.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-client-ip/axum-client-ip-0.6.1.crate",
"sha256": "9eefda7e2b27e1bda4d6fa8a06b50803b8793769045918bc37ad062d48a6efac",
"dest": "cargo/vendor/axum-client-ip-0.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9eefda7e2b27e1bda4d6fa8a06b50803b8793769045918bc37ad062d48a6efac\", \"files\": {}}",
"dest": "cargo/vendor/axum-client-ip-0.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-core/axum-core-0.4.5.crate",
"sha256": "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199",
"dest": "cargo/vendor/axum-core-0.4.5"
},
{
"type": "inline",
"contents": "{\"package\": \"09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199\", \"files\": {}}",
"dest": "cargo/vendor/axum-core-0.4.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-extra/axum-extra-0.9.4.crate",
"sha256": "73c3220b188aea709cf1b6c5f9b01c3bd936bb08bd2b5184a12b35ac8131b1f9",
"dest": "cargo/vendor/axum-extra-0.9.4"
},
{
"type": "inline",
"contents": "{\"package\": \"73c3220b188aea709cf1b6c5f9b01c3bd936bb08bd2b5184a12b35ac8131b1f9\", \"files\": {}}",
"dest": "cargo/vendor/axum-extra-0.9.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-macros/axum-macros-0.4.2.crate",
"sha256": "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce",
"dest": "cargo/vendor/axum-macros-0.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce\", \"files\": {}}",
"dest": "cargo/vendor/axum-macros-0.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.74.crate",
"sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a",
"dest": "cargo/vendor/backtrace-0.3.74"
},
{
"type": "inline",
"contents": "{\"package\": \"8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.74",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.13.1.crate",
"sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8",
"dest": "cargo/vendor/base64-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.21.7.crate",
"sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567",
"dest": "cargo/vendor/base64-0.21.7"
},
{
"type": "inline",
"contents": "{\"package\": \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.21.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.22.1.crate",
"sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6",
"dest": "cargo/vendor/base64-0.22.1"
},
{
"type": "inline",
"contents": "{\"package\": \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.22.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64ct/base64ct-1.6.0.crate",
"sha256": "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b",
"dest": "cargo/vendor/base64ct-1.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b\", \"files\": {}}",
"dest": "cargo/vendor/base64ct-1.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bincode/bincode-2.0.0-rc.3.crate",
"sha256": "f11ea1a0346b94ef188834a65c068a03aec181c94896d481d7a0a40d85b0ce95",
"dest": "cargo/vendor/bincode-2.0.0-rc.3"
},
{
"type": "inline",
"contents": "{\"package\": \"f11ea1a0346b94ef188834a65c068a03aec181c94896d481d7a0a40d85b0ce95\", \"files\": {}}",
"dest": "cargo/vendor/bincode-2.0.0-rc.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-set/bit-set-0.5.3.crate",
"sha256": "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1",
"dest": "cargo/vendor/bit-set-0.5.3"
},
{
"type": "inline",
"contents": "{\"package\": \"0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1\", \"files\": {}}",
"dest": "cargo/vendor/bit-set-0.5.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit-vec/bit-vec-0.6.3.crate",
"sha256": "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb",
"dest": "cargo/vendor/bit-vec-0.6.3"
},
{
"type": "inline",
"contents": "{\"package\": \"349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb\", \"files\": {}}",
"dest": "cargo/vendor/bit-vec-0.6.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bit_field/bit_field-0.10.2.crate",
"sha256": "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61",
"dest": "cargo/vendor/bit_field-0.10.2"
},
{
"type": "inline",
"contents": "{\"package\": \"dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61\", \"files\": {}}",
"dest": "cargo/vendor/bit_field-0.10.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
"dest": "cargo/vendor/bitflags-1.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-2.6.0.crate",
"sha256": "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de",
"dest": "cargo/vendor/bitflags-2.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blake3/blake3-1.5.4.crate",
"sha256": "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7",
"dest": "cargo/vendor/blake3-1.5.4"
},
{
"type": "inline",
"contents": "{\"package\": \"d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7\", \"files\": {}}",
"dest": "cargo/vendor/blake3-1.5.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block/block-0.1.6.crate",
"sha256": "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a",
"dest": "cargo/vendor/block-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a\", \"files\": {}}",
"dest": "cargo/vendor/block-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
"dest": "cargo/vendor/block-buffer-0.10.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-padding/block-padding-0.3.3.crate",
"sha256": "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93",
"dest": "cargo/vendor/block-padding-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93\", \"files\": {}}",
"dest": "cargo/vendor/block-padding-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bstr/bstr-1.10.0.crate",
"sha256": "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c",
"dest": "cargo/vendor/bstr-1.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.16.0.crate",
"sha256": "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c",
"dest": "cargo/vendor/bumpalo-3.16.0"
},
{
"type": "inline",
"contents": "{\"package\": \"79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.16.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn/burn-0.13.2.crate",
"sha256": "3960b57a6ad4baf54d1dba766965e4559c4b9a8f391107fee5de29db57265840",
"dest": "cargo/vendor/burn-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3960b57a6ad4baf54d1dba766965e4559c4b9a8f391107fee5de29db57265840\", \"files\": {}}",
"dest": "cargo/vendor/burn-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-autodiff/burn-autodiff-0.13.2.crate",
"sha256": "cf9479c28bdce3f2b1541f0a9215628f6256b5f3d66871192a3c56d55171d28e",
"dest": "cargo/vendor/burn-autodiff-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"cf9479c28bdce3f2b1541f0a9215628f6256b5f3d66871192a3c56d55171d28e\", \"files\": {}}",
"dest": "cargo/vendor/burn-autodiff-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-candle/burn-candle-0.13.2.crate",
"sha256": "d811c54fa6d9beb38808a1aabd9515c39090720cae572d54f25c041b1702e8fd",
"dest": "cargo/vendor/burn-candle-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"d811c54fa6d9beb38808a1aabd9515c39090720cae572d54f25c041b1702e8fd\", \"files\": {}}",
"dest": "cargo/vendor/burn-candle-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-common/burn-common-0.13.2.crate",
"sha256": "8d9540b2f45a2d337220e702d7a87572c8e1c78db91a200b22924a8c4a6e9be4",
"dest": "cargo/vendor/burn-common-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8d9540b2f45a2d337220e702d7a87572c8e1c78db91a200b22924a8c4a6e9be4\", \"files\": {}}",
"dest": "cargo/vendor/burn-common-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-compute/burn-compute-0.13.2.crate",
"sha256": "3e890d8999b25a1a090c2afe198243fc79f0a299efb531a4871c084b0ab9fa11",
"dest": "cargo/vendor/burn-compute-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3e890d8999b25a1a090c2afe198243fc79f0a299efb531a4871c084b0ab9fa11\", \"files\": {}}",
"dest": "cargo/vendor/burn-compute-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-core/burn-core-0.13.2.crate",
"sha256": "8af6bc0afe55a57ff0b08f52302df4e3d09f96805a4f1e15c521f1082cb02b4f",
"dest": "cargo/vendor/burn-core-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8af6bc0afe55a57ff0b08f52302df4e3d09f96805a4f1e15c521f1082cb02b4f\", \"files\": {}}",
"dest": "cargo/vendor/burn-core-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-dataset/burn-dataset-0.13.2.crate",
"sha256": "3feae7766b56e947d38ac4d6903388270d848609339a147a513145703426f6db",
"dest": "cargo/vendor/burn-dataset-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3feae7766b56e947d38ac4d6903388270d848609339a147a513145703426f6db\", \"files\": {}}",
"dest": "cargo/vendor/burn-dataset-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-derive/burn-derive-0.13.2.crate",
"sha256": "8618ac2c171c7054ffd3ce8da15c3d4b11dc805eb393065c74c05882ef79d931",
"dest": "cargo/vendor/burn-derive-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8618ac2c171c7054ffd3ce8da15c3d4b11dc805eb393065c74c05882ef79d931\", \"files\": {}}",
"dest": "cargo/vendor/burn-derive-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-fusion/burn-fusion-0.13.2.crate",
"sha256": "8d77b882d131a67d15f91b915fb3e0a5add73547e7352310d33c877fbe77c79e",
"dest": "cargo/vendor/burn-fusion-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8d77b882d131a67d15f91b915fb3e0a5add73547e7352310d33c877fbe77c79e\", \"files\": {}}",
"dest": "cargo/vendor/burn-fusion-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-jit/burn-jit-0.13.2.crate",
"sha256": "0cb62a93030a690c329b95c01b43e3064a4bd36031e9111d537641d36e42f3ac",
"dest": "cargo/vendor/burn-jit-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0cb62a93030a690c329b95c01b43e3064a4bd36031e9111d537641d36e42f3ac\", \"files\": {}}",
"dest": "cargo/vendor/burn-jit-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-ndarray/burn-ndarray-0.13.2.crate",
"sha256": "05f40bb0b5938937a721045752f1ec1baee8a873429fd17e6e6f2155c6cdf33a",
"dest": "cargo/vendor/burn-ndarray-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"05f40bb0b5938937a721045752f1ec1baee8a873429fd17e6e6f2155c6cdf33a\", \"files\": {}}",
"dest": "cargo/vendor/burn-ndarray-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-tch/burn-tch-0.13.2.crate",
"sha256": "8cb9c2b547499a3d990e93b950965b9a478edfec4a7bf98d5d4412ff8c897129",
"dest": "cargo/vendor/burn-tch-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"8cb9c2b547499a3d990e93b950965b9a478edfec4a7bf98d5d4412ff8c897129\", \"files\": {}}",
"dest": "cargo/vendor/burn-tch-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-tensor/burn-tensor-0.13.2.crate",
"sha256": "bfa19c21f54e1a189be3bbaec45efafdf1c89b2763710b381c9f32ae25e7dbe8",
"dest": "cargo/vendor/burn-tensor-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"bfa19c21f54e1a189be3bbaec45efafdf1c89b2763710b381c9f32ae25e7dbe8\", \"files\": {}}",
"dest": "cargo/vendor/burn-tensor-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-train/burn-train-0.13.2.crate",
"sha256": "0a0014ee82ef967bd82dda378cfaf340f255c39c729e29ac3bc65d3107e4c7ee",
"dest": "cargo/vendor/burn-train-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"0a0014ee82ef967bd82dda378cfaf340f255c39c729e29ac3bc65d3107e4c7ee\", \"files\": {}}",
"dest": "cargo/vendor/burn-train-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-wgpu/burn-wgpu-0.13.2.crate",
"sha256": "1575890471123109c6aeb725c52ac649fa9e0013e2303f57dc534d5e0cb857e5",
"dest": "cargo/vendor/burn-wgpu-0.13.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1575890471123109c6aeb725c52ac649fa9e0013e2303f57dc534d5e0cb857e5\", \"files\": {}}",
"dest": "cargo/vendor/burn-wgpu-0.13.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.19.0.crate",
"sha256": "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d",
"dest": "cargo/vendor/bytemuck-1.19.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.19.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.8.0.crate",
"sha256": "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec",
"dest": "cargo/vendor/bytemuck_derive-1.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck_derive-1.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.5.0.crate",
"sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b",
"dest": "cargo/vendor/byteorder-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytes/bytes-1.7.2.crate",
"sha256": "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3",
"dest": "cargo/vendor/bytes-1.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.7.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2/bzip2-0.4.4.crate",
"sha256": "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8",
"dest": "cargo/vendor/bzip2-0.4.4"
},
{
"type": "inline",
"contents": "{\"package\": \"bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-0.4.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2-sys/bzip2-sys-0.1.11+1.0.8.crate",
"sha256": "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc",
"dest": "cargo/vendor/bzip2-sys-0.1.11+1.0.8"
},
{
"type": "inline",
"contents": "{\"package\": \"736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-sys-0.1.11+1.0.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/camino/camino-1.1.9.crate",
"sha256": "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3",
"dest": "cargo/vendor/camino-1.1.9"
},
{
"type": "inline",
"contents": "{\"package\": \"8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3\", \"files\": {}}",
"dest": "cargo/vendor/camino-1.1.9",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/candle-core/candle-core-0.4.1.crate",
"sha256": "6f1b20174c1707e20f4cb364a355b449803c03e9b0c9193324623cf9787a4e00",
"dest": "cargo/vendor/candle-core-0.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6f1b20174c1707e20f4cb364a355b449803c03e9b0c9193324623cf9787a4e00\", \"files\": {}}",
"dest": "cargo/vendor/candle-core-0.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cast/cast-0.3.0.crate",
"sha256": "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5",
"dest": "cargo/vendor/cast-0.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\", \"files\": {}}",
"dest": "cargo/vendor/cast-0.3.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cbc/cbc-0.1.2.crate",
"sha256": "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6",
"dest": "cargo/vendor/cbc-0.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6\", \"files\": {}}",
"dest": "cargo/vendor/cbc-0.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.1.31.crate",
"sha256": "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f",
"dest": "cargo/vendor/cc-1.1.31"
},
{
"type": "inline",
"contents": "{\"package\": \"c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.1.31",
"dest-filename": ".cargo-checksum.json"