-
Notifications
You must be signed in to change notification settings - Fork 13
/
cargo-sources.json
8688 lines (8688 loc) · 363 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.21.0.crate",
"sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb",
"dest": "cargo/vendor/addr2line-0.21.0"
},
{
"type": "inline",
"contents": "{\"package\": \"8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.21.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/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.10.crate",
"sha256": "8b79b82693f705137f8fb9b37871d99e4f9a7df12b917eed79c3d3954830a60b",
"dest": "cargo/vendor/ahash-0.8.10"
},
{
"type": "inline",
"contents": "{\"package\": \"8b79b82693f705137f8fb9b37871d99e4f9a7df12b917eed79c3d3954830a60b\", \"files\": {}}",
"dest": "cargo/vendor/ahash-0.8.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.2.crate",
"sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0",
"dest": "cargo/vendor/aho-corasick-1.1.2"
},
{
"type": "inline",
"contents": "{\"package\": \"b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-1.1.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.16.crate",
"sha256": "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5",
"dest": "cargo/vendor/allocator-api2-0.2.16"
},
{
"type": "inline",
"contents": "{\"package\": \"0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5\", \"files\": {}}",
"dest": "cargo/vendor/allocator-api2-0.2.16",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ammonia/ammonia-3.3.0.crate",
"sha256": "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170",
"dest": "cargo/vendor/ammonia-3.3.0"
},
{
"type": "inline",
"contents": "{\"package\": \"64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170\", \"files\": {}}",
"dest": "cargo/vendor/ammonia-3.3.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.13.crate",
"sha256": "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb",
"dest": "cargo/vendor/anstream-0.6.13"
},
{
"type": "inline",
"contents": "{\"package\": \"d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb\", \"files\": {}}",
"dest": "cargo/vendor/anstream-0.6.13",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle/anstyle-1.0.6.crate",
"sha256": "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc",
"dest": "cargo/vendor/anstyle-1.0.6"
},
{
"type": "inline",
"contents": "{\"package\": \"8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-1.0.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.3.crate",
"sha256": "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c",
"dest": "cargo/vendor/anstyle-parse-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-parse-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.0.2.crate",
"sha256": "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648",
"dest": "cargo/vendor/anstyle-query-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-query-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.2.crate",
"sha256": "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7",
"dest": "cargo/vendor/anstyle-wincon-3.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7\", \"files\": {}}",
"dest": "cargo/vendor/anstyle-wincon-3.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.80.crate",
"sha256": "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1",
"dest": "cargo/vendor/anyhow-1.0.80"
},
{
"type": "inline",
"contents": "{\"package\": \"5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.80",
"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.7.crate",
"sha256": "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545",
"dest": "cargo/vendor/arrayref-0.3.7"
},
{
"type": "inline",
"contents": "{\"package\": \"6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545\", \"files\": {}}",
"dest": "cargo/vendor/arrayref-0.3.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.4.crate",
"sha256": "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711",
"dest": "cargo/vendor/arrayvec-0.7.4"
},
{
"type": "inline",
"contents": "{\"package\": \"96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.7.4",
"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-channel/async-channel-1.9.0.crate",
"sha256": "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35",
"dest": "cargo/vendor/async-channel-1.9.0"
},
{
"type": "inline",
"contents": "{\"package\": \"81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35\", \"files\": {}}",
"dest": "cargo/vendor/async-channel-1.9.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-compression/async-compression-0.4.6.crate",
"sha256": "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c",
"dest": "cargo/vendor/async-compression-0.4.6"
},
{
"type": "inline",
"contents": "{\"package\": \"a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c\", \"files\": {}}",
"dest": "cargo/vendor/async-compression-0.4.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-stream/async-stream-0.3.5.crate",
"sha256": "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51",
"dest": "cargo/vendor/async-stream-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-0.3.5",
"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.5.crate",
"sha256": "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193",
"dest": "cargo/vendor/async-stream-impl-0.3.5"
},
{
"type": "inline",
"contents": "{\"package\": \"16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193\", \"files\": {}}",
"dest": "cargo/vendor/async-stream-impl-0.3.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/async-trait/async-trait-0.1.80.crate",
"sha256": "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca",
"dest": "cargo/vendor/async-trait-0.1.80"
},
{
"type": "inline",
"contents": "{\"package\": \"c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca\", \"files\": {}}",
"dest": "cargo/vendor/async-trait-0.1.80",
"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/axum/axum-0.6.20.crate",
"sha256": "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf",
"dest": "cargo/vendor/axum-0.6.20"
},
{
"type": "inline",
"contents": "{\"package\": \"3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf\", \"files\": {}}",
"dest": "cargo/vendor/axum-0.6.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-client-ip/axum-client-ip-0.4.2.crate",
"sha256": "1ef117890a418b7832678d9ea1e1c08456dd7b2fd1dadb9676cd6f0fe7eb4b21",
"dest": "cargo/vendor/axum-client-ip-0.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"1ef117890a418b7832678d9ea1e1c08456dd7b2fd1dadb9676cd6f0fe7eb4b21\", \"files\": {}}",
"dest": "cargo/vendor/axum-client-ip-0.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-core/axum-core-0.3.4.crate",
"sha256": "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c",
"dest": "cargo/vendor/axum-core-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c\", \"files\": {}}",
"dest": "cargo/vendor/axum-core-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/axum-macros/axum-macros-0.3.8.crate",
"sha256": "cdca6a10ecad987bda04e95606ef85a5417dcaac1a78455242d72e031e2b6b62",
"dest": "cargo/vendor/axum-macros-0.3.8"
},
{
"type": "inline",
"contents": "{\"package\": \"cdca6a10ecad987bda04e95606ef85a5417dcaac1a78455242d72e031e2b6b62\", \"files\": {}}",
"dest": "cargo/vendor/axum-macros-0.3.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.69.crate",
"sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837",
"dest": "cargo/vendor/backtrace-0.3.69"
},
{
"type": "inline",
"contents": "{\"package\": \"2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.69",
"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.4.2.crate",
"sha256": "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf",
"dest": "cargo/vendor/bitflags-2.4.2"
},
{
"type": "inline",
"contents": "{\"package\": \"ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-2.4.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/blake3/blake3-1.5.0.crate",
"sha256": "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87",
"dest": "cargo/vendor/blake3-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87\", \"files\": {}}",
"dest": "cargo/vendor/blake3-1.5.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block/block-0.1.6.crate",
"sha256": "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a",
"dest": "cargo/vendor/block-0.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a\", \"files\": {}}",
"dest": "cargo/vendor/block-0.1.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
"dest": "cargo/vendor/block-buffer-0.10.4"
},
{
"type": "inline",
"contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}",
"dest": "cargo/vendor/block-buffer-0.10.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/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.9.1.crate",
"sha256": "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706",
"dest": "cargo/vendor/bstr-1.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706\", \"files\": {}}",
"dest": "cargo/vendor/bstr-1.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.15.3.crate",
"sha256": "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b",
"dest": "cargo/vendor/bumpalo-3.15.3"
},
{
"type": "inline",
"contents": "{\"package\": \"8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.15.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn/burn-0.13.1.crate",
"sha256": "e041d5f4eef703500763e599050cba419cd90d464172d71e3d5397baebbf1d8a",
"dest": "cargo/vendor/burn-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e041d5f4eef703500763e599050cba419cd90d464172d71e3d5397baebbf1d8a\", \"files\": {}}",
"dest": "cargo/vendor/burn-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-autodiff/burn-autodiff-0.13.1.crate",
"sha256": "1e23c815bc728ac60343b8820fb71e9b4a2c0cb283bfd58828246caacabe6eff",
"dest": "cargo/vendor/burn-autodiff-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"1e23c815bc728ac60343b8820fb71e9b4a2c0cb283bfd58828246caacabe6eff\", \"files\": {}}",
"dest": "cargo/vendor/burn-autodiff-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-candle/burn-candle-0.13.1.crate",
"sha256": "5d319a88254df7e9740154c32e862d721d29e5f782c0fdf7004f6b9ed5c8369f",
"dest": "cargo/vendor/burn-candle-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5d319a88254df7e9740154c32e862d721d29e5f782c0fdf7004f6b9ed5c8369f\", \"files\": {}}",
"dest": "cargo/vendor/burn-candle-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-common/burn-common-0.13.1.crate",
"sha256": "a14cddb7f93dc985637e21f068a343acdfc4d62232fb11101f88c2739abad249",
"dest": "cargo/vendor/burn-common-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a14cddb7f93dc985637e21f068a343acdfc4d62232fb11101f88c2739abad249\", \"files\": {}}",
"dest": "cargo/vendor/burn-common-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-compute/burn-compute-0.13.1.crate",
"sha256": "cbe641bbe653d04fb070a80946f3db13485e04d7d12104aab9287a1d55b3493c",
"dest": "cargo/vendor/burn-compute-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cbe641bbe653d04fb070a80946f3db13485e04d7d12104aab9287a1d55b3493c\", \"files\": {}}",
"dest": "cargo/vendor/burn-compute-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-core/burn-core-0.13.1.crate",
"sha256": "9f3532e2f722bca39aefa69aea2b8e6cf2c3bf70f95ba8421b557082d89ea476",
"dest": "cargo/vendor/burn-core-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"9f3532e2f722bca39aefa69aea2b8e6cf2c3bf70f95ba8421b557082d89ea476\", \"files\": {}}",
"dest": "cargo/vendor/burn-core-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-dataset/burn-dataset-0.13.1.crate",
"sha256": "ebb03147d7c50f31c673ee7f672543caddd56bc5de906810db23e396ca062054",
"dest": "cargo/vendor/burn-dataset-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"ebb03147d7c50f31c673ee7f672543caddd56bc5de906810db23e396ca062054\", \"files\": {}}",
"dest": "cargo/vendor/burn-dataset-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-derive/burn-derive-0.13.1.crate",
"sha256": "7dbf7e7f4154821f1a74c709ed2191304701e6f56b6221aec8585b8a16d16ae5",
"dest": "cargo/vendor/burn-derive-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"7dbf7e7f4154821f1a74c709ed2191304701e6f56b6221aec8585b8a16d16ae5\", \"files\": {}}",
"dest": "cargo/vendor/burn-derive-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-fusion/burn-fusion-0.13.1.crate",
"sha256": "934015329ca3b41a6a6bc7b6a4eedcda04d899085e0b3273e7fb330358c15cf8",
"dest": "cargo/vendor/burn-fusion-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"934015329ca3b41a6a6bc7b6a4eedcda04d899085e0b3273e7fb330358c15cf8\", \"files\": {}}",
"dest": "cargo/vendor/burn-fusion-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-jit/burn-jit-0.13.1.crate",
"sha256": "d257cec36c1b4404c79355492a0c32d0775ed5d7826241051323eb88f1e633dc",
"dest": "cargo/vendor/burn-jit-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d257cec36c1b4404c79355492a0c32d0775ed5d7826241051323eb88f1e633dc\", \"files\": {}}",
"dest": "cargo/vendor/burn-jit-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-ndarray/burn-ndarray-0.13.1.crate",
"sha256": "4f3a7d13e0116b4e442bda45aa9eb8a4cc3b70cf7d67197b13d539753275428c",
"dest": "cargo/vendor/burn-ndarray-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"4f3a7d13e0116b4e442bda45aa9eb8a4cc3b70cf7d67197b13d539753275428c\", \"files\": {}}",
"dest": "cargo/vendor/burn-ndarray-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-tch/burn-tch-0.13.1.crate",
"sha256": "3ee78099b81128ba1122c645344cb7126c1fadfc05b284150efd94731001f0a7",
"dest": "cargo/vendor/burn-tch-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"3ee78099b81128ba1122c645344cb7126c1fadfc05b284150efd94731001f0a7\", \"files\": {}}",
"dest": "cargo/vendor/burn-tch-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-tensor/burn-tensor-0.13.1.crate",
"sha256": "b9395b25136b8fff2ca293dc30e8ca915cc811ed48ffbb147063b6c9c7fcba6a",
"dest": "cargo/vendor/burn-tensor-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"b9395b25136b8fff2ca293dc30e8ca915cc811ed48ffbb147063b6c9c7fcba6a\", \"files\": {}}",
"dest": "cargo/vendor/burn-tensor-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-train/burn-train-0.13.1.crate",
"sha256": "da95f83ed597cdb313fb0e18b389f88b96d5bcd1a37620adc969fe2934d486ff",
"dest": "cargo/vendor/burn-train-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"da95f83ed597cdb313fb0e18b389f88b96d5bcd1a37620adc969fe2934d486ff\", \"files\": {}}",
"dest": "cargo/vendor/burn-train-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/burn-wgpu/burn-wgpu-0.13.1.crate",
"sha256": "6377670147b65387c807938b4f77a0b149b154ecc8b749f66ad068d345efac14",
"dest": "cargo/vendor/burn-wgpu-0.13.1"
},
{
"type": "inline",
"contents": "{\"package\": \"6377670147b65387c807938b4f77a0b149b154ecc8b749f66ad068d345efac14\", \"files\": {}}",
"dest": "cargo/vendor/burn-wgpu-0.13.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck/bytemuck-1.14.3.crate",
"sha256": "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f",
"dest": "cargo/vendor/bytemuck-1.14.3"
},
{
"type": "inline",
"contents": "{\"package\": \"a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck-1.14.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.5.0.crate",
"sha256": "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1",
"dest": "cargo/vendor/bytemuck_derive-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1\", \"files\": {}}",
"dest": "cargo/vendor/bytemuck_derive-1.5.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.5.0.crate",
"sha256": "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223",
"dest": "cargo/vendor/bytes-1.5.0"
},
{
"type": "inline",
"contents": "{\"package\": \"a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223\", \"files\": {}}",
"dest": "cargo/vendor/bytes-1.5.0",
"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.6.crate",
"sha256": "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c",
"dest": "cargo/vendor/camino-1.1.6"
},
{
"type": "inline",
"contents": "{\"package\": \"c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c\", \"files\": {}}",
"dest": "cargo/vendor/camino-1.1.6",
"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.0.88.crate",
"sha256": "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc",
"dest": "cargo/vendor/cc-1.0.88"
},
{
"type": "inline",
"contents": "{\"package\": \"02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.88",
"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/cfg_aliases/cfg_aliases-0.1.1.crate",
"sha256": "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e",
"dest": "cargo/vendor/cfg_aliases-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e\", \"files\": {}}",
"dest": "cargo/vendor/cfg_aliases-0.1.1",
"dest-filename": ".cargo-checksum.json"