html-to-markdown 2.14.2__tar.gz → 2.19.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/Cargo.lock +321 -418
  2. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/Cargo.toml +13 -4
  3. html_to_markdown-2.19.8/PKG-INFO +345 -0
  4. html_to_markdown-2.19.8/README.md +311 -0
  5. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/Cargo.toml +6 -14
  6. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/README.md +14 -8
  7. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/converter.rs +3600 -907
  8. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/error.rs +9 -0
  9. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/converter.rs +80 -42
  10. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/extractor.rs +15 -17
  11. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/parser.rs +18 -32
  12. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/spatial.rs +17 -141
  13. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/inline_images.rs +58 -0
  14. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/lib.rs +393 -20
  15. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/metadata.rs +246 -36
  16. html_to_markdown-2.19.8/crates/html-to-markdown/src/options.rs +532 -0
  17. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/safety.rs +7 -0
  18. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/text.rs +85 -0
  19. html_to_markdown-2.19.8/crates/html-to-markdown/src/visitor.rs +949 -0
  20. html_to_markdown-2.19.8/crates/html-to-markdown/src/visitor_helpers.rs +795 -0
  21. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/wrapper.rs +142 -0
  22. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/hocr_compliance_test.rs +14 -14
  23. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/integration_test.rs +43 -0
  24. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_145_regressions.rs +15 -9
  25. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_146_regressions.rs +15 -9
  26. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_176_regressions.rs +52 -0
  27. html_to_markdown-2.19.8/crates/html-to-markdown/tests/json_ld_script_extraction.rs +44 -0
  28. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/tables_test.rs +60 -0
  29. html_to_markdown-2.19.8/crates/html-to-markdown/tests/test_script_style_stripping.rs +405 -0
  30. html_to_markdown-2.19.8/crates/html-to-markdown/tests/visitor_code_integration_test.rs +108 -0
  31. html_to_markdown-2.19.8/crates/html-to-markdown/tests/visitor_integration_test.rs +628 -0
  32. html_to_markdown-2.19.8/crates/html-to-markdown/tests/xml_tables_test.rs +336 -0
  33. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/Cargo.toml +12 -1
  34. html_to_markdown-2.19.8/crates/html-to-markdown-py/README.md +148 -0
  35. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +6 -0
  36. html_to_markdown-2.19.8/crates/html-to-markdown-py/src/lib.rs +2764 -0
  37. html_to_markdown-2.19.8/crates/html-to-markdown-py/src/profiling.rs +224 -0
  38. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/__init__.py +19 -8
  39. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/_html_to_markdown.pyi +63 -1
  40. html_to_markdown-2.19.8/html_to_markdown/api.py +338 -0
  41. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/cli_proxy.py +71 -13
  42. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/pyproject.toml +13 -6
  43. html_to_markdown-2.14.2/PKG-INFO +0 -634
  44. html_to_markdown-2.14.2/README.md +0 -600
  45. html_to_markdown-2.14.2/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -302
  46. html_to_markdown-2.14.2/crates/html-to-markdown/benches/micro_benchmark.rs +0 -189
  47. html_to_markdown-2.14.2/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -133
  48. html_to_markdown-2.14.2/crates/html-to-markdown/src/options.rs +0 -237
  49. html_to_markdown-2.14.2/crates/html-to-markdown-py/README.md +0 -670
  50. html_to_markdown-2.14.2/crates/html-to-markdown-py/src/lib.rs +0 -1020
  51. html_to_markdown-2.14.2/html_to_markdown/api.py +0 -196
  52. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/LICENSE +0 -0
  53. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/basic.rs +0 -0
  54. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/table.rs +0 -0
  55. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_escape.rs +0 -0
  56. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
  57. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_lists.rs +0 -0
  58. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
  59. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_tables.rs +0 -0
  60. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
  61. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
  62. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
  63. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/types.rs +0 -0
  64. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/br_in_inline_test.rs +0 -0
  65. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -0
  66. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_121_regressions.rs +0 -0
  67. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_127_regressions.rs +0 -0
  68. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_128_regressions.rs +0 -0
  69. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_131_regressions.rs +0 -0
  70. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_134_regressions.rs +0 -0
  71. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_139_regressions.rs +0 -0
  72. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_140_regressions.rs +0 -0
  73. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/issue_143_regressions.rs +0 -0
  74. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/lists_test.rs +0 -0
  75. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/preprocessing_tests.rs +0 -0
  76. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
  77. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/uv.lock +0 -0
  78. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/__main__.py +0 -0
  79. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/cli.py +0 -0
  80. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/exceptions.py +0 -0
  81. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/options.py +0 -0
  82. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/py.typed +0 -0
  83. {html_to_markdown-2.14.2 → html_to_markdown-2.19.8}/html_to_markdown/v1_compat.py +0 -0
@@ -80,12 +80,6 @@ version = "0.2.21"
80
80
  source = "registry+https://github.com/rust-lang/crates.io-index"
81
81
  checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
82
82
 
83
- [[package]]
84
- name = "anes"
85
- version = "0.1.6"
86
- source = "registry+https://github.com/rust-lang/crates.io-index"
87
- checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
88
-
89
83
  [[package]]
90
84
  name = "anstream"
91
85
  version = "0.6.21"
@@ -240,9 +234,26 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
240
234
 
241
235
  [[package]]
242
236
  name = "base64ct"
243
- version = "1.8.1"
237
+ version = "1.8.2"
244
238
  source = "registry+https://github.com/rust-lang/crates.io-index"
245
- checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
239
+ checksum = "7d809780667f4410e7c41b07f52439b94d2bdf8528eeedc287fa38d3b7f95d82"
240
+
241
+ [[package]]
242
+ name = "benchmark-harness"
243
+ version = "2.19.8"
244
+ dependencies = [
245
+ "clap",
246
+ "html-to-markdown-rs",
247
+ "minijinja",
248
+ "pprof",
249
+ "serde",
250
+ "serde_json",
251
+ "sysinfo",
252
+ "thiserror 2.0.17",
253
+ "tikv-jemalloc-ctl",
254
+ "tikv-jemallocator",
255
+ "toml",
256
+ ]
246
257
 
247
258
  [[package]]
248
259
  name = "bindgen"
@@ -348,9 +359,9 @@ dependencies = [
348
359
 
349
360
  [[package]]
350
361
  name = "bumpalo"
351
- version = "3.19.0"
362
+ version = "3.19.1"
352
363
  source = "registry+https://github.com/rust-lang/crates.io-index"
353
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
364
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
354
365
  dependencies = [
355
366
  "allocator-api2",
356
367
  ]
@@ -390,9 +401,9 @@ dependencies = [
390
401
 
391
402
  [[package]]
392
403
  name = "camino"
393
- version = "1.2.1"
404
+ version = "1.2.2"
394
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
395
- checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
406
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
396
407
  dependencies = [
397
408
  "serde_core",
398
409
  ]
@@ -432,7 +443,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
432
443
  checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
433
444
  dependencies = [
434
445
  "clap",
435
- "heck 0.5.0",
446
+ "heck",
436
447
  "indexmap",
437
448
  "log",
438
449
  "proc-macro2",
@@ -446,9 +457,9 @@ dependencies = [
446
457
 
447
458
  [[package]]
448
459
  name = "cc"
449
- version = "1.2.49"
460
+ version = "1.2.51"
450
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
451
- checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
462
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
452
463
  dependencies = [
453
464
  "find-msvc-tools",
454
465
  "jobserver",
@@ -477,33 +488,6 @@ version = "0.2.1"
477
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
478
489
  checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
479
490
 
480
- [[package]]
481
- name = "ciborium"
482
- version = "0.2.2"
483
- source = "registry+https://github.com/rust-lang/crates.io-index"
484
- checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
485
- dependencies = [
486
- "ciborium-io",
487
- "ciborium-ll",
488
- "serde",
489
- ]
490
-
491
- [[package]]
492
- name = "ciborium-io"
493
- version = "0.2.2"
494
- source = "registry+https://github.com/rust-lang/crates.io-index"
495
- checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
496
-
497
- [[package]]
498
- name = "ciborium-ll"
499
- version = "0.2.2"
500
- source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
502
- dependencies = [
503
- "ciborium-io",
504
- "half",
505
- ]
506
-
507
491
  [[package]]
508
492
  name = "cipher"
509
493
  version = "0.4.4"
@@ -527,9 +511,9 @@ dependencies = [
527
511
 
528
512
  [[package]]
529
513
  name = "clap"
530
- version = "4.5.53"
514
+ version = "4.5.54"
531
515
  source = "registry+https://github.com/rust-lang/crates.io-index"
532
- checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
516
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
533
517
  dependencies = [
534
518
  "clap_builder",
535
519
  "clap_derive",
@@ -537,9 +521,9 @@ dependencies = [
537
521
 
538
522
  [[package]]
539
523
  name = "clap_builder"
540
- version = "4.5.53"
524
+ version = "4.5.54"
541
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
542
- checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
526
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
543
527
  dependencies = [
544
528
  "anstream",
545
529
  "anstyle",
@@ -549,9 +533,9 @@ dependencies = [
549
533
 
550
534
  [[package]]
551
535
  name = "clap_complete"
552
- version = "4.5.61"
536
+ version = "4.5.64"
553
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
554
- checksum = "39615915e2ece2550c0149addac32fb5bd312c657f43845bb9088cb9c8a7c992"
538
+ checksum = "4c0da80818b2d95eca9aa614a30783e42f62bf5fdfee24e68cfb960b071ba8d1"
555
539
  dependencies = [
556
540
  "clap",
557
541
  ]
@@ -562,7 +546,7 @@ version = "4.5.49"
562
546
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
547
  checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
564
548
  dependencies = [
565
- "heck 0.5.0",
549
+ "heck",
566
550
  "proc-macro2",
567
551
  "quote",
568
552
  "syn",
@@ -694,36 +678,36 @@ dependencies = [
694
678
 
695
679
  [[package]]
696
680
  name = "cranelift-assembler-x64"
697
- version = "0.126.1"
681
+ version = "0.127.0"
698
682
  source = "registry+https://github.com/rust-lang/crates.io-index"
699
- checksum = "30054f4aef4d614d37f27d5b77e36e165f0b27a71563be348e7c9fcfac41eed8"
683
+ checksum = "8bd963a645179fa33834ba61fa63353998543b07f877e208da9eb47d4a70d1e7"
700
684
  dependencies = [
701
685
  "cranelift-assembler-x64-meta",
702
686
  ]
703
687
 
704
688
  [[package]]
705
689
  name = "cranelift-assembler-x64-meta"
706
- version = "0.126.1"
690
+ version = "0.127.0"
707
691
  source = "registry+https://github.com/rust-lang/crates.io-index"
708
- checksum = "0beab56413879d4f515e08bcf118b1cb85f294129bb117057f573d37bfbb925a"
692
+ checksum = "3f6d5739c9dc6b5553ca758d78d87d127dd19f397f776efecf817b8ba8d0bb01"
709
693
  dependencies = [
710
694
  "cranelift-srcgen",
711
695
  ]
712
696
 
713
697
  [[package]]
714
698
  name = "cranelift-bforest"
715
- version = "0.126.1"
699
+ version = "0.127.0"
716
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
717
- checksum = "6d054747549a69b264d5299c8ca1b0dd45dc6bd0ee43f1edfcc42a8b12952c7a"
701
+ checksum = "ff402c11bb1c9652b67a3e885e84b1b8d00c13472c8fd85211e06a41a63c3e03"
718
702
  dependencies = [
719
703
  "cranelift-entity",
720
704
  ]
721
705
 
722
706
  [[package]]
723
707
  name = "cranelift-bitset"
724
- version = "0.126.1"
708
+ version = "0.127.0"
725
709
  source = "registry+https://github.com/rust-lang/crates.io-index"
726
- checksum = "98b92d481b77a7dc9d07c96e24a16f29e0c9c27d042828fdf7e49e54ee9819bf"
710
+ checksum = "769a0d88c2f5539e9c5536a93a7bf164b0dc68d91e3d00723e5b4ffc1440afdc"
727
711
  dependencies = [
728
712
  "serde",
729
713
  "serde_derive",
@@ -731,9 +715,9 @@ dependencies = [
731
715
 
732
716
  [[package]]
733
717
  name = "cranelift-codegen"
734
- version = "0.126.1"
718
+ version = "0.127.0"
735
719
  source = "registry+https://github.com/rust-lang/crates.io-index"
736
- checksum = "6eeccfc043d599b0ef1806942707fc51cdd1c3965c343956dc975a55d82a920f"
720
+ checksum = "d4351f721fb3b26add1c180f0a75c7474bab2f903c8b777c6ca65238ded59a78"
737
721
  dependencies = [
738
722
  "bumpalo",
739
723
  "cranelift-assembler-x64",
@@ -758,37 +742,37 @@ dependencies = [
758
742
 
759
743
  [[package]]
760
744
  name = "cranelift-codegen-meta"
761
- version = "0.126.1"
745
+ version = "0.127.0"
762
746
  source = "registry+https://github.com/rust-lang/crates.io-index"
763
- checksum = "1174cdb9d9d43b2bdaa612a07ed82af13db9b95526bc2c286c2aec4689bcc038"
747
+ checksum = "61f86c0ba5b96713643f4dd0de0df12844de9c7bb137d6829b174b706939aa74"
764
748
  dependencies = [
765
749
  "cranelift-assembler-x64-meta",
766
750
  "cranelift-codegen-shared",
767
751
  "cranelift-srcgen",
768
- "heck 0.5.0",
752
+ "heck",
769
753
  "pulley-interpreter",
770
754
  ]
771
755
 
772
756
  [[package]]
773
757
  name = "cranelift-codegen-shared"
774
- version = "0.126.1"
758
+ version = "0.127.0"
775
759
  source = "registry+https://github.com/rust-lang/crates.io-index"
776
- checksum = "7d572be73fae802eb115f45e7e67a9ed16acb4ee683b67c4086768786545419a"
760
+ checksum = "f08605eee8d51fd976a970bd5b16c9529b51b624f8af68f80649ffb172eb85a4"
777
761
 
778
762
  [[package]]
779
763
  name = "cranelift-control"
780
- version = "0.126.1"
764
+ version = "0.127.0"
781
765
  source = "registry+https://github.com/rust-lang/crates.io-index"
782
- checksum = "e1587465cc84c5cc793b44add928771945f3132bbf6b3621ee9473c631a87156"
766
+ checksum = "623aab0a09e40f0cf0b5d35eb7832bae4c4f13e3768228e051a6c1a60e88ef5f"
783
767
  dependencies = [
784
768
  "arbitrary",
785
769
  ]
786
770
 
787
771
  [[package]]
788
772
  name = "cranelift-entity"
789
- version = "0.126.1"
773
+ version = "0.127.0"
790
774
  source = "registry+https://github.com/rust-lang/crates.io-index"
791
- checksum = "063b83448b1343e79282c3c7cbda7ed5f0816f0b763a4c15f7cecb0a17d87ea6"
775
+ checksum = "ea0f066e07e3bcbe38884cc5c94c32c7a90267d69df80f187d9dfe421adaa7c4"
792
776
  dependencies = [
793
777
  "cranelift-bitset",
794
778
  "serde",
@@ -797,9 +781,9 @@ dependencies = [
797
781
 
798
782
  [[package]]
799
783
  name = "cranelift-frontend"
800
- version = "0.126.1"
784
+ version = "0.127.0"
801
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
802
- checksum = "aa4461c2d2ca48bc72883f5f5c3129d9aefac832df1db824af9db8db3efee109"
786
+ checksum = "40865b02a0e52ca8e580ad64feef530cb1d05f6bb4972b4eef05e3eaeae81701"
803
787
  dependencies = [
804
788
  "cranelift-codegen",
805
789
  "log",
@@ -809,15 +793,15 @@ dependencies = [
809
793
 
810
794
  [[package]]
811
795
  name = "cranelift-isle"
812
- version = "0.126.1"
796
+ version = "0.127.0"
813
797
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
- checksum = "acd811b25e18f14810d09c504e06098acc1d9dbfa24879bf0d6b6fb44415fc66"
798
+ checksum = "104b3c117ae513e9af1d90679842101193a5ccb96ac9f997966d85ea25be2852"
815
799
 
816
800
  [[package]]
817
801
  name = "cranelift-native"
818
- version = "0.126.1"
802
+ version = "0.127.0"
819
803
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
- checksum = "2417046989d8d6367a55bbab2e406a9195d176f4779be4aa484d645887217d37"
804
+ checksum = "e5c54e0a358bc05b48f2032e1c320e7f468da068604f2869b77052eab68eb0fe"
821
805
  dependencies = [
822
806
  "cranelift-codegen",
823
807
  "libc",
@@ -826,9 +810,9 @@ dependencies = [
826
810
 
827
811
  [[package]]
828
812
  name = "cranelift-srcgen"
829
- version = "0.126.1"
813
+ version = "0.127.0"
830
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "8d039de901c8d928222b8128e1b9a9ab27b82a7445cb749a871c75d9cb25c57d"
815
+ checksum = "cc6f4b039f453b66c75e9f7886e5a2af96276e151f44dc19b24b58f9a0c98009"
832
816
 
833
817
  [[package]]
834
818
  name = "crc"
@@ -854,39 +838,6 @@ dependencies = [
854
838
  "cfg-if",
855
839
  ]
856
840
 
857
- [[package]]
858
- name = "criterion"
859
- version = "0.7.0"
860
- source = "registry+https://github.com/rust-lang/crates.io-index"
861
- checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
862
- dependencies = [
863
- "anes",
864
- "cast",
865
- "ciborium",
866
- "clap",
867
- "criterion-plot",
868
- "itertools 0.13.0",
869
- "num-traits",
870
- "oorandom",
871
- "plotters",
872
- "rayon",
873
- "regex",
874
- "serde",
875
- "serde_json",
876
- "tinytemplate",
877
- "walkdir",
878
- ]
879
-
880
- [[package]]
881
- name = "criterion-plot"
882
- version = "0.6.0"
883
- source = "registry+https://github.com/rust-lang/crates.io-index"
884
- checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
885
- dependencies = [
886
- "cast",
887
- "itertools 0.13.0",
888
- ]
889
-
890
841
  [[package]]
891
842
  name = "crossbeam-deque"
892
843
  version = "0.8.6"
@@ -912,12 +863,6 @@ version = "0.8.21"
912
863
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
864
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
914
865
 
915
- [[package]]
916
- name = "crunchy"
917
- version = "0.2.4"
918
- source = "registry+https://github.com/rust-lang/crates.io-index"
919
- checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
920
-
921
866
  [[package]]
922
867
  name = "crypto-common"
923
868
  version = "0.1.7"
@@ -1229,9 +1174,9 @@ dependencies = [
1229
1174
 
1230
1175
  [[package]]
1231
1176
  name = "find-msvc-tools"
1232
- version = "0.1.5"
1177
+ version = "0.1.6"
1233
1178
  source = "registry+https://github.com/rust-lang/crates.io-index"
1234
- checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
1179
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
1235
1180
 
1236
1181
  [[package]]
1237
1182
  name = "findshlibs"
@@ -1283,6 +1228,12 @@ version = "0.1.5"
1283
1228
  source = "registry+https://github.com/rust-lang/crates.io-index"
1284
1229
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1285
1230
 
1231
+ [[package]]
1232
+ name = "foldhash"
1233
+ version = "0.2.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1236
+
1286
1237
  [[package]]
1287
1238
  name = "foreign-types"
1288
1239
  version = "0.3.2"
@@ -1484,24 +1435,13 @@ version = "0.3.3"
1484
1435
  source = "registry+https://github.com/rust-lang/crates.io-index"
1485
1436
  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1486
1437
 
1487
- [[package]]
1488
- name = "half"
1489
- version = "2.7.1"
1490
- source = "registry+https://github.com/rust-lang/crates.io-index"
1491
- checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1492
- dependencies = [
1493
- "cfg-if",
1494
- "crunchy",
1495
- "zerocopy",
1496
- ]
1497
-
1498
1438
  [[package]]
1499
1439
  name = "hashbrown"
1500
1440
  version = "0.15.5"
1501
1441
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
1442
  checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1503
1443
  dependencies = [
1504
- "foldhash",
1444
+ "foldhash 0.1.5",
1505
1445
  "serde",
1506
1446
  ]
1507
1447
 
@@ -1510,12 +1450,11 @@ name = "hashbrown"
1510
1450
  version = "0.16.1"
1511
1451
  source = "registry+https://github.com/rust-lang/crates.io-index"
1512
1452
  checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1513
-
1514
- [[package]]
1515
- name = "heck"
1516
- version = "0.4.1"
1517
- source = "registry+https://github.com/rust-lang/crates.io-index"
1518
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1453
+ dependencies = [
1454
+ "allocator-api2",
1455
+ "equivalent",
1456
+ "foldhash 0.2.0",
1457
+ ]
1519
1458
 
1520
1459
  [[package]]
1521
1460
  name = "heck"
@@ -1549,7 +1488,7 @@ dependencies = [
1549
1488
 
1550
1489
  [[package]]
1551
1490
  name = "html-to-markdown-cli"
1552
- version = "2.14.2"
1491
+ version = "2.19.8"
1553
1492
  dependencies = [
1554
1493
  "assert_cmd",
1555
1494
  "clap",
@@ -1565,61 +1504,76 @@ dependencies = [
1565
1504
 
1566
1505
  [[package]]
1567
1506
  name = "html-to-markdown-ffi"
1568
- version = "2.14.2"
1507
+ version = "2.19.8"
1569
1508
  dependencies = [
1570
1509
  "cbindgen",
1571
1510
  "html-to-markdown-rs",
1511
+ "libc",
1512
+ "pprof",
1572
1513
  "serde_json",
1573
1514
  ]
1574
1515
 
1575
1516
  [[package]]
1576
1517
  name = "html-to-markdown-node"
1577
- version = "2.14.2"
1518
+ version = "2.19.8"
1578
1519
  dependencies = [
1520
+ "async-trait",
1579
1521
  "html-to-markdown-rs",
1580
1522
  "mimalloc-rust",
1581
1523
  "napi",
1582
1524
  "napi-build",
1583
1525
  "napi-derive",
1526
+ "pprof",
1527
+ "serde",
1528
+ "serde_json",
1529
+ "tokio",
1584
1530
  ]
1585
1531
 
1586
1532
  [[package]]
1587
1533
  name = "html-to-markdown-php"
1588
- version = "2.14.2"
1534
+ version = "2.19.8"
1589
1535
  dependencies = [
1590
1536
  "ext-php-rs",
1591
1537
  "html-to-markdown-rs",
1538
+ "pprof",
1592
1539
  ]
1593
1540
 
1594
1541
  [[package]]
1595
1542
  name = "html-to-markdown-py"
1596
- version = "2.14.2"
1543
+ version = "2.19.8"
1597
1544
  dependencies = [
1545
+ "async-trait",
1598
1546
  "base64",
1599
1547
  "html-to-markdown-rs",
1600
1548
  "image",
1549
+ "once_cell",
1550
+ "pprof",
1601
1551
  "pyo3",
1552
+ "pyo3-async-runtimes",
1553
+ "tokio",
1602
1554
  ]
1603
1555
 
1604
1556
  [[package]]
1605
1557
  name = "html-to-markdown-rb"
1606
- version = "2.14.2"
1558
+ version = "2.19.8"
1607
1559
  dependencies = [
1608
1560
  "html-to-markdown-rs",
1609
1561
  "magnus",
1562
+ "pprof",
1610
1563
  "pretty_assertions",
1611
1564
  ]
1612
1565
 
1613
1566
  [[package]]
1614
1567
  name = "html-to-markdown-rs"
1615
- version = "2.14.2"
1568
+ version = "2.19.8"
1616
1569
  dependencies = [
1617
1570
  "astral-tl",
1571
+ "async-trait",
1618
1572
  "base64",
1619
- "criterion",
1620
1573
  "html-escape",
1621
1574
  "html5ever",
1622
1575
  "image",
1576
+ "lru",
1623
1577
  "markup5ever_rcdom",
1624
1578
  "once_cell",
1625
1579
  "regex",
@@ -1630,7 +1584,7 @@ dependencies = [
1630
1584
 
1631
1585
  [[package]]
1632
1586
  name = "html-to-markdown-wasm"
1633
- version = "2.14.2"
1587
+ version = "2.19.8"
1634
1588
  dependencies = [
1635
1589
  "console_error_panic_hook",
1636
1590
  "html-to-markdown-rs",
@@ -1644,7 +1598,7 @@ dependencies = [
1644
1598
 
1645
1599
  [[package]]
1646
1600
  name = "html-to-markdown-wasm-wasmtime-tests"
1647
- version = "2.14.2"
1601
+ version = "2.19.8"
1648
1602
  dependencies = [
1649
1603
  "anyhow",
1650
1604
  "html-to-markdown-rs",
@@ -1661,14 +1615,6 @@ dependencies = [
1661
1615
  "markup5ever",
1662
1616
  ]
1663
1617
 
1664
- [[package]]
1665
- name = "html_to_markdown_elixir"
1666
- version = "2.14.2"
1667
- dependencies = [
1668
- "html-to-markdown-rs",
1669
- "rustler",
1670
- ]
1671
-
1672
1618
  [[package]]
1673
1619
  name = "http"
1674
1620
  version = "1.4.0"
@@ -1708,15 +1654,6 @@ version = "1.10.1"
1708
1654
  source = "registry+https://github.com/rust-lang/crates.io-index"
1709
1655
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1710
1656
 
1711
- [[package]]
1712
- name = "humansize"
1713
- version = "2.1.3"
1714
- source = "registry+https://github.com/rust-lang/crates.io-index"
1715
- checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
1716
- dependencies = [
1717
- "libm",
1718
- ]
1719
-
1720
1657
  [[package]]
1721
1658
  name = "hyper"
1722
1659
  version = "1.8.1"
@@ -1983,15 +1920,6 @@ dependencies = [
1983
1920
  "generic-array",
1984
1921
  ]
1985
1922
 
1986
- [[package]]
1987
- name = "inventory"
1988
- version = "0.3.21"
1989
- source = "registry+https://github.com/rust-lang/crates.io-index"
1990
- checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1991
- dependencies = [
1992
- "rustversion",
1993
- ]
1994
-
1995
1923
  [[package]]
1996
1924
  name = "ipnet"
1997
1925
  version = "2.11.0"
@@ -2000,9 +1928,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2000
1928
 
2001
1929
  [[package]]
2002
1930
  name = "iri-string"
2003
- version = "0.7.9"
1931
+ version = "0.7.10"
2004
1932
  source = "registry+https://github.com/rust-lang/crates.io-index"
2005
- checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1933
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
2006
1934
  dependencies = [
2007
1935
  "memchr",
2008
1936
  "serde",
@@ -2054,9 +1982,9 @@ dependencies = [
2054
1982
 
2055
1983
  [[package]]
2056
1984
  name = "itoa"
2057
- version = "1.0.15"
1985
+ version = "1.0.17"
2058
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2059
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1987
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
2060
1988
 
2061
1989
  [[package]]
2062
1990
  name = "ittapi"
@@ -2124,9 +2052,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
2124
2052
 
2125
2053
  [[package]]
2126
2054
  name = "libc"
2127
- version = "0.2.178"
2055
+ version = "0.2.179"
2128
2056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
- checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
2057
+ checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
2130
2058
 
2131
2059
  [[package]]
2132
2060
  name = "libloading"
@@ -2156,9 +2084,9 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2156
2084
 
2157
2085
  [[package]]
2158
2086
  name = "libredox"
2159
- version = "0.1.10"
2087
+ version = "0.1.12"
2160
2088
  source = "registry+https://github.com/rust-lang/crates.io-index"
2161
- checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2089
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
2162
2090
  dependencies = [
2163
2091
  "bitflags 2.10.0",
2164
2092
  "libc",
@@ -2166,9 +2094,9 @@ dependencies = [
2166
2094
 
2167
2095
  [[package]]
2168
2096
  name = "libz-rs-sys"
2169
- version = "0.5.4"
2097
+ version = "0.5.5"
2170
2098
  source = "registry+https://github.com/rust-lang/crates.io-index"
2171
- checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c"
2099
+ checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415"
2172
2100
  dependencies = [
2173
2101
  "zlib-rs",
2174
2102
  ]
@@ -2200,6 +2128,15 @@ version = "0.4.29"
2200
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
2201
2129
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2202
2130
 
2131
+ [[package]]
2132
+ name = "lru"
2133
+ version = "0.16.2"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
2136
+ dependencies = [
2137
+ "hashbrown 0.16.1",
2138
+ ]
2139
+
2203
2140
  [[package]]
2204
2141
  name = "lru-slab"
2205
2142
  version = "0.1.2"
@@ -2344,6 +2281,16 @@ dependencies = [
2344
2281
  "walkdir",
2345
2282
  ]
2346
2283
 
2284
+ [[package]]
2285
+ name = "minijinja"
2286
+ version = "2.14.0"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "12ea9ac0a51fb5112607099560fdf0f90366ab088a2a9e6e8ae176794e9806aa"
2289
+ dependencies = [
2290
+ "serde",
2291
+ "serde_json",
2292
+ ]
2293
+
2347
2294
  [[package]]
2348
2295
  name = "minimal-lexical"
2349
2296
  version = "0.2.1"
@@ -2373,9 +2320,9 @@ dependencies = [
2373
2320
 
2374
2321
  [[package]]
2375
2322
  name = "moxcms"
2376
- version = "0.7.10"
2323
+ version = "0.7.11"
2377
2324
  source = "registry+https://github.com/rust-lang/crates.io-index"
2378
- checksum = "80986bbbcf925ebd3be54c26613d861255284584501595cf418320c078945608"
2325
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
2379
2326
  dependencies = [
2380
2327
  "num-traits",
2381
2328
  "pxfm",
@@ -2383,9 +2330,9 @@ dependencies = [
2383
2330
 
2384
2331
  [[package]]
2385
2332
  name = "napi"
2386
- version = "3.7.0"
2333
+ version = "3.8.1"
2387
2334
  source = "registry+https://github.com/rust-lang/crates.io-index"
2388
- checksum = "f27a163b545fd2184d2efdccf3d3df56acdb63465f2fcfebcaee0463c1e91783"
2335
+ checksum = "000f205daae6646003fdc38517be6232af2b150bad4b67bdaf4c5aadb119d738"
2389
2336
  dependencies = [
2390
2337
  "bitflags 2.10.0",
2391
2338
  "ctor",
@@ -2404,9 +2351,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
2404
2351
 
2405
2352
  [[package]]
2406
2353
  name = "napi-derive"
2407
- version = "3.4.0"
2354
+ version = "3.5.0"
2408
2355
  source = "registry+https://github.com/rust-lang/crates.io-index"
2409
- checksum = "47cffa09ea668c4cc5d7b1198780882e28780ed1804a903b80680725426223d9"
2356
+ checksum = "97ef4e39564b008771df9a4983e4ea6c1f7fa6ad5252347b6dbf7f347a8f689a"
2410
2357
  dependencies = [
2411
2358
  "convert_case",
2412
2359
  "ctor",
@@ -2418,9 +2365,9 @@ dependencies = [
2418
2365
 
2419
2366
  [[package]]
2420
2367
  name = "napi-derive-backend"
2421
- version = "4.0.0"
2368
+ version = "5.0.0"
2422
2369
  source = "registry+https://github.com/rust-lang/crates.io-index"
2423
- checksum = "5e186227ec22f4675267a176d98dffecb27e6cc88926cbb7efb5427268565c0f"
2370
+ checksum = "eb0d9a16e3fbfd6397f97e4eaafe9fbefb888a6120dd289dd12869fdb16af372"
2424
2371
  dependencies = [
2425
2372
  "convert_case",
2426
2373
  "proc-macro2",
@@ -2447,7 +2394,7 @@ dependencies = [
2447
2394
  "libc",
2448
2395
  "log",
2449
2396
  "openssl",
2450
- "openssl-probe",
2397
+ "openssl-probe 0.1.6",
2451
2398
  "openssl-sys",
2452
2399
  "schannel",
2453
2400
  "security-framework 2.11.1",
@@ -2496,9 +2443,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2496
2443
 
2497
2444
  [[package]]
2498
2445
  name = "ntapi"
2499
- version = "0.4.1"
2446
+ version = "0.4.2"
2500
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
2501
- checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
2448
+ checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081"
2502
2449
  dependencies = [
2503
2450
  "winapi",
2504
2451
  ]
@@ -2619,6 +2566,12 @@ version = "0.1.6"
2619
2566
  source = "registry+https://github.com/rust-lang/crates.io-index"
2620
2567
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2621
2568
 
2569
+ [[package]]
2570
+ name = "openssl-probe"
2571
+ version = "0.2.0"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
2574
+
2622
2575
  [[package]]
2623
2576
  name = "openssl-sys"
2624
2577
  version = "0.9.111"
@@ -2654,6 +2607,12 @@ dependencies = [
2654
2607
  "windows-link 0.2.1",
2655
2608
  ]
2656
2609
 
2610
+ [[package]]
2611
+ name = "paste"
2612
+ version = "1.0.15"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2615
+
2657
2616
  [[package]]
2658
2617
  name = "pbkdf2"
2659
2618
  version = "0.12.2"
@@ -2746,34 +2705,6 @@ version = "0.3.32"
2746
2705
  source = "registry+https://github.com/rust-lang/crates.io-index"
2747
2706
  checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2748
2707
 
2749
- [[package]]
2750
- name = "plotters"
2751
- version = "0.3.7"
2752
- source = "registry+https://github.com/rust-lang/crates.io-index"
2753
- checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2754
- dependencies = [
2755
- "num-traits",
2756
- "plotters-backend",
2757
- "plotters-svg",
2758
- "wasm-bindgen",
2759
- "web-sys",
2760
- ]
2761
-
2762
- [[package]]
2763
- name = "plotters-backend"
2764
- version = "0.3.7"
2765
- source = "registry+https://github.com/rust-lang/crates.io-index"
2766
- checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2767
-
2768
- [[package]]
2769
- name = "plotters-svg"
2770
- version = "0.3.7"
2771
- source = "registry+https://github.com/rust-lang/crates.io-index"
2772
- checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2773
- dependencies = [
2774
- "plotters-backend",
2775
- ]
2776
-
2777
2708
  [[package]]
2778
2709
  name = "png"
2779
2710
  version = "0.18.0"
@@ -2789,9 +2720,9 @@ dependencies = [
2789
2720
 
2790
2721
  [[package]]
2791
2722
  name = "portable-atomic"
2792
- version = "1.11.1"
2723
+ version = "1.13.0"
2793
2724
  source = "registry+https://github.com/rust-lang/crates.io-index"
2794
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2725
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
2795
2726
 
2796
2727
  [[package]]
2797
2728
  name = "postcard"
@@ -2915,9 +2846,9 @@ dependencies = [
2915
2846
 
2916
2847
  [[package]]
2917
2848
  name = "proc-macro2"
2918
- version = "1.0.103"
2849
+ version = "1.0.104"
2919
2850
  source = "registry+https://github.com/rust-lang/crates.io-index"
2920
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2851
+ checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
2921
2852
  dependencies = [
2922
2853
  "unicode-ident",
2923
2854
  ]
@@ -2935,9 +2866,9 @@ dependencies = [
2935
2866
 
2936
2867
  [[package]]
2937
2868
  name = "pulley-interpreter"
2938
- version = "39.0.1"
2869
+ version = "40.0.0"
2939
2870
  source = "registry+https://github.com/rust-lang/crates.io-index"
2940
- checksum = "0a09eb45f768f3a0396e85822790d867000c8b5f11551e7268c279e991457b16"
2871
+ checksum = "95562714f3512eb70752e9becafe28b2992cf6ce619591a73d30f6261282d770"
2941
2872
  dependencies = [
2942
2873
  "cranelift-bitset",
2943
2874
  "log",
@@ -2947,9 +2878,9 @@ dependencies = [
2947
2878
 
2948
2879
  [[package]]
2949
2880
  name = "pulley-macros"
2950
- version = "39.0.1"
2881
+ version = "40.0.0"
2951
2882
  source = "registry+https://github.com/rust-lang/crates.io-index"
2952
- checksum = "e29368432b8b7a8a343b75a6914621fad905c95d5c5297449a6546c127224f7a"
2883
+ checksum = "d0a918361fd35ca1542d0cbc57481fe6f8c39d2241372643e869d6c621e83c02"
2953
2884
  dependencies = [
2954
2885
  "proc-macro2",
2955
2886
  "quote",
@@ -2982,6 +2913,19 @@ dependencies = [
2982
2913
  "unindent",
2983
2914
  ]
2984
2915
 
2916
+ [[package]]
2917
+ name = "pyo3-async-runtimes"
2918
+ version = "0.27.0"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
2921
+ dependencies = [
2922
+ "futures",
2923
+ "once_cell",
2924
+ "pin-project-lite",
2925
+ "pyo3",
2926
+ "tokio",
2927
+ ]
2928
+
2985
2929
  [[package]]
2986
2930
  name = "pyo3-build-config"
2987
2931
  version = "0.27.2"
@@ -3019,7 +2963,7 @@ version = "0.27.2"
3019
2963
  source = "registry+https://github.com/rust-lang/crates.io-index"
3020
2964
  checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
3021
2965
  dependencies = [
3022
- "heck 0.5.0",
2966
+ "heck",
3023
2967
  "proc-macro2",
3024
2968
  "pyo3-build-config",
3025
2969
  "quote",
@@ -3177,18 +3121,18 @@ dependencies = [
3177
3121
 
3178
3122
  [[package]]
3179
3123
  name = "rb-sys"
3180
- version = "0.9.119"
3124
+ version = "0.9.123"
3181
3125
  source = "registry+https://github.com/rust-lang/crates.io-index"
3182
- checksum = "4519fc8de033923105f512c504a8f27714ef38648ccc30969362194c50b2ed08"
3126
+ checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
3183
3127
  dependencies = [
3184
3128
  "rb-sys-build",
3185
3129
  ]
3186
3130
 
3187
3131
  [[package]]
3188
3132
  name = "rb-sys-build"
3189
- version = "0.9.119"
3133
+ version = "0.9.123"
3190
3134
  source = "registry+https://github.com/rust-lang/crates.io-index"
3191
- checksum = "2e0109499e06c85f56df4abad7d9c642ea8a2dd821d1d7132b4d1b69534677f3"
3135
+ checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
3192
3136
  dependencies = [
3193
3137
  "bindgen 0.69.5",
3194
3138
  "lazy_static",
@@ -3262,12 +3206,6 @@ dependencies = [
3262
3206
  "regex-syntax",
3263
3207
  ]
3264
3208
 
3265
- [[package]]
3266
- name = "regex-lite"
3267
- version = "0.1.8"
3268
- source = "registry+https://github.com/rust-lang/crates.io-index"
3269
- checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
3270
-
3271
3209
  [[package]]
3272
3210
  name = "regex-syntax"
3273
3211
  version = "0.8.8"
@@ -3276,9 +3214,9 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3276
3214
 
3277
3215
  [[package]]
3278
3216
  name = "reqwest"
3279
- version = "0.12.25"
3217
+ version = "0.12.28"
3280
3218
  source = "registry+https://github.com/rust-lang/crates.io-index"
3281
- checksum = "b6eff9328d40131d43bd911d42d79eb6a47312002a4daefc9e37f17e74a7701a"
3219
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3282
3220
  dependencies = [
3283
3221
  "base64",
3284
3222
  "bytes",
@@ -3345,22 +3283,6 @@ version = "0.2.2"
3345
3283
  source = "registry+https://github.com/rust-lang/crates.io-index"
3346
3284
  checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
3347
3285
 
3348
- [[package]]
3349
- name = "runtime-bench"
3350
- version = "2.14.2"
3351
- dependencies = [
3352
- "anyhow",
3353
- "clap",
3354
- "html-to-markdown-rs",
3355
- "humansize",
3356
- "pprof",
3357
- "serde",
3358
- "serde_json",
3359
- "sysinfo",
3360
- "thiserror 2.0.17",
3361
- "toml",
3362
- ]
3363
-
3364
3286
  [[package]]
3365
3287
  name = "rustc-demangle"
3366
3288
  version = "0.1.26"
@@ -3381,9 +3303,9 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3381
3303
 
3382
3304
  [[package]]
3383
3305
  name = "rustix"
3384
- version = "1.1.2"
3306
+ version = "1.1.3"
3385
3307
  source = "registry+https://github.com/rust-lang/crates.io-index"
3386
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3308
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
3387
3309
  dependencies = [
3388
3310
  "bitflags 2.10.0",
3389
3311
  "errno",
@@ -3392,31 +3314,6 @@ dependencies = [
3392
3314
  "windows-sys 0.61.2",
3393
3315
  ]
3394
3316
 
3395
- [[package]]
3396
- name = "rustler"
3397
- version = "0.37.2"
3398
- source = "registry+https://github.com/rust-lang/crates.io-index"
3399
- checksum = "a5c708d8b686a8d426681908369f835af90349f7ebb92ab87ddf14a851efd556"
3400
- dependencies = [
3401
- "inventory",
3402
- "libloading 0.9.0",
3403
- "regex-lite",
3404
- "rustler_codegen",
3405
- ]
3406
-
3407
- [[package]]
3408
- name = "rustler_codegen"
3409
- version = "0.37.2"
3410
- source = "registry+https://github.com/rust-lang/crates.io-index"
3411
- checksum = "da3f478ec72581782a7dd62a5adb406aa076af7cedd7de63fa3676c927eb216a"
3412
- dependencies = [
3413
- "heck 0.5.0",
3414
- "inventory",
3415
- "proc-macro2",
3416
- "quote",
3417
- "syn",
3418
- ]
3419
-
3420
3317
  [[package]]
3421
3318
  name = "rustls"
3422
3319
  version = "0.23.35"
@@ -3433,11 +3330,11 @@ dependencies = [
3433
3330
 
3434
3331
  [[package]]
3435
3332
  name = "rustls-native-certs"
3436
- version = "0.8.2"
3333
+ version = "0.8.3"
3437
3334
  source = "registry+https://github.com/rust-lang/crates.io-index"
3438
- checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
3335
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3439
3336
  dependencies = [
3440
- "openssl-probe",
3337
+ "openssl-probe 0.2.0",
3441
3338
  "rustls-pki-types",
3442
3339
  "schannel",
3443
3340
  "security-framework 3.5.1",
@@ -3445,9 +3342,9 @@ dependencies = [
3445
3342
 
3446
3343
  [[package]]
3447
3344
  name = "rustls-pki-types"
3448
- version = "1.13.1"
3345
+ version = "1.13.2"
3449
3346
  source = "registry+https://github.com/rust-lang/crates.io-index"
3450
- checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
3347
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
3451
3348
  dependencies = [
3452
3349
  "web-time",
3453
3350
  "zeroize",
@@ -3472,9 +3369,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3472
3369
 
3473
3370
  [[package]]
3474
3371
  name = "ryu"
3475
- version = "1.0.20"
3372
+ version = "1.0.22"
3476
3373
  source = "registry+https://github.com/rust-lang/crates.io-index"
3477
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3374
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
3478
3375
 
3479
3376
  [[package]]
3480
3377
  name = "same-file"
@@ -3595,22 +3492,22 @@ dependencies = [
3595
3492
 
3596
3493
  [[package]]
3597
3494
  name = "serde_json"
3598
- version = "1.0.145"
3495
+ version = "1.0.148"
3599
3496
  source = "registry+https://github.com/rust-lang/crates.io-index"
3600
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3497
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
3601
3498
  dependencies = [
3602
3499
  "itoa",
3603
3500
  "memchr",
3604
- "ryu",
3605
3501
  "serde",
3606
3502
  "serde_core",
3503
+ "zmij",
3607
3504
  ]
3608
3505
 
3609
3506
  [[package]]
3610
3507
  name = "serde_spanned"
3611
- version = "1.0.3"
3508
+ version = "1.0.4"
3612
3509
  source = "registry+https://github.com/rust-lang/crates.io-index"
3613
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
3510
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
3614
3511
  dependencies = [
3615
3512
  "serde_core",
3616
3513
  ]
@@ -3819,9 +3716,9 @@ dependencies = [
3819
3716
 
3820
3717
  [[package]]
3821
3718
  name = "syn"
3822
- version = "2.0.111"
3719
+ version = "2.0.113"
3823
3720
  source = "registry+https://github.com/rust-lang/crates.io-index"
3824
- checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
3721
+ checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
3825
3722
  dependencies = [
3826
3723
  "proc-macro2",
3827
3724
  "quote",
@@ -3850,9 +3747,9 @@ dependencies = [
3850
3747
 
3851
3748
  [[package]]
3852
3749
  name = "sysinfo"
3853
- version = "0.37.2"
3750
+ version = "0.36.1"
3854
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3855
- checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
3752
+ checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d"
3856
3753
  dependencies = [
3857
3754
  "libc",
3858
3755
  "memchr",
@@ -3864,15 +3761,15 @@ dependencies = [
3864
3761
 
3865
3762
  [[package]]
3866
3763
  name = "target-lexicon"
3867
- version = "0.13.3"
3764
+ version = "0.13.4"
3868
3765
  source = "registry+https://github.com/rust-lang/crates.io-index"
3869
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3766
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
3870
3767
 
3871
3768
  [[package]]
3872
3769
  name = "tempfile"
3873
- version = "3.23.0"
3770
+ version = "3.24.0"
3874
3771
  source = "registry+https://github.com/rust-lang/crates.io-index"
3875
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3772
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
3876
3773
  dependencies = [
3877
3774
  "fastrand",
3878
3775
  "getrandom 0.3.4",
@@ -3947,6 +3844,37 @@ dependencies = [
3947
3844
  "syn",
3948
3845
  ]
3949
3846
 
3847
+ [[package]]
3848
+ name = "tikv-jemalloc-ctl"
3849
+ version = "0.6.1"
3850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3851
+ checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c"
3852
+ dependencies = [
3853
+ "libc",
3854
+ "paste",
3855
+ "tikv-jemalloc-sys",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "tikv-jemalloc-sys"
3860
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
3863
+ dependencies = [
3864
+ "cc",
3865
+ "libc",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "tikv-jemallocator"
3870
+ version = "0.6.1"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
3873
+ dependencies = [
3874
+ "libc",
3875
+ "tikv-jemalloc-sys",
3876
+ ]
3877
+
3950
3878
  [[package]]
3951
3879
  name = "time"
3952
3880
  version = "0.3.44"
@@ -3976,16 +3904,6 @@ dependencies = [
3976
3904
  "zerovec",
3977
3905
  ]
3978
3906
 
3979
- [[package]]
3980
- name = "tinytemplate"
3981
- version = "1.2.1"
3982
- source = "registry+https://github.com/rust-lang/crates.io-index"
3983
- checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3984
- dependencies = [
3985
- "serde",
3986
- "serde_json",
3987
- ]
3988
-
3989
3907
  [[package]]
3990
3908
  name = "tinyvec"
3991
3909
  version = "1.10.0"
@@ -4003,9 +3921,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4003
3921
 
4004
3922
  [[package]]
4005
3923
  name = "tokio"
4006
- version = "1.48.0"
3924
+ version = "1.49.0"
4007
3925
  source = "registry+https://github.com/rust-lang/crates.io-index"
4008
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3926
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
4009
3927
  dependencies = [
4010
3928
  "bytes",
4011
3929
  "libc",
@@ -4027,9 +3945,9 @@ dependencies = [
4027
3945
 
4028
3946
  [[package]]
4029
3947
  name = "tokio-util"
4030
- version = "0.7.17"
3948
+ version = "0.7.18"
4031
3949
  source = "registry+https://github.com/rust-lang/crates.io-index"
4032
- checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3950
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
4033
3951
  dependencies = [
4034
3952
  "bytes",
4035
3953
  "futures-core",
@@ -4040,9 +3958,9 @@ dependencies = [
4040
3958
 
4041
3959
  [[package]]
4042
3960
  name = "toml"
4043
- version = "0.9.8"
3961
+ version = "0.9.10+spec-1.1.0"
4044
3962
  source = "registry+https://github.com/rust-lang/crates.io-index"
4045
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
3963
+ checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
4046
3964
  dependencies = [
4047
3965
  "indexmap",
4048
3966
  "serde_core",
@@ -4055,27 +3973,27 @@ dependencies = [
4055
3973
 
4056
3974
  [[package]]
4057
3975
  name = "toml_datetime"
4058
- version = "0.7.3"
3976
+ version = "0.7.5+spec-1.1.0"
4059
3977
  source = "registry+https://github.com/rust-lang/crates.io-index"
4060
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3978
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
4061
3979
  dependencies = [
4062
3980
  "serde_core",
4063
3981
  ]
4064
3982
 
4065
3983
  [[package]]
4066
3984
  name = "toml_parser"
4067
- version = "1.0.4"
3985
+ version = "1.0.6+spec-1.1.0"
4068
3986
  source = "registry+https://github.com/rust-lang/crates.io-index"
4069
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3987
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
4070
3988
  dependencies = [
4071
3989
  "winnow",
4072
3990
  ]
4073
3991
 
4074
3992
  [[package]]
4075
3993
  name = "toml_writer"
4076
- version = "1.0.4"
3994
+ version = "1.0.6+spec-1.1.0"
4077
3995
  source = "registry+https://github.com/rust-lang/crates.io-index"
4078
- checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
3996
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
4079
3997
 
4080
3998
  [[package]]
4081
3999
  name = "tower"
@@ -4129,9 +4047,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4129
4047
 
4130
4048
  [[package]]
4131
4049
  name = "tracing"
4132
- version = "0.1.43"
4050
+ version = "0.1.44"
4133
4051
  source = "registry+https://github.com/rust-lang/crates.io-index"
4134
- checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
4052
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4135
4053
  dependencies = [
4136
4054
  "pin-project-lite",
4137
4055
  "tracing-core",
@@ -4139,9 +4057,9 @@ dependencies = [
4139
4057
 
4140
4058
  [[package]]
4141
4059
  name = "tracing-core"
4142
- version = "0.1.35"
4060
+ version = "0.1.36"
4143
4061
  source = "registry+https://github.com/rust-lang/crates.io-index"
4144
- checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
4062
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4145
4063
  dependencies = [
4146
4064
  "once_cell",
4147
4065
  ]
@@ -4429,12 +4347,12 @@ dependencies = [
4429
4347
 
4430
4348
  [[package]]
4431
4349
  name = "wasm-compose"
4432
- version = "0.240.0"
4350
+ version = "0.243.0"
4433
4351
  source = "registry+https://github.com/rust-lang/crates.io-index"
4434
- checksum = "feeb9a231e63bd5d5dfe07e9f8daa53d5c85e4f7de5ef756d3b4e6a5f501c578"
4352
+ checksum = "af801b6f36459023eaec63fdbaedad2fd5a4ab7dc74ecc110a8b5d375c5775e4"
4435
4353
  dependencies = [
4436
4354
  "anyhow",
4437
- "heck 0.4.1",
4355
+ "heck",
4438
4356
  "im-rc",
4439
4357
  "indexmap",
4440
4358
  "log",
@@ -4443,21 +4361,11 @@ dependencies = [
4443
4361
  "serde_derive",
4444
4362
  "serde_yaml",
4445
4363
  "smallvec",
4446
- "wasm-encoder 0.240.0",
4447
- "wasmparser 0.240.0",
4364
+ "wasm-encoder",
4365
+ "wasmparser",
4448
4366
  "wat",
4449
4367
  ]
4450
4368
 
4451
- [[package]]
4452
- name = "wasm-encoder"
4453
- version = "0.240.0"
4454
- source = "registry+https://github.com/rust-lang/crates.io-index"
4455
- checksum = "06d642d8c5ecc083aafe9ceb32809276a304547a3a6eeecceb5d8152598bc71f"
4456
- dependencies = [
4457
- "leb128fmt",
4458
- "wasmparser 0.240.0",
4459
- ]
4460
-
4461
4369
  [[package]]
4462
4370
  name = "wasm-encoder"
4463
4371
  version = "0.243.0"
@@ -4465,20 +4373,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4465
4373
  checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
4466
4374
  dependencies = [
4467
4375
  "leb128fmt",
4468
- "wasmparser 0.243.0",
4469
- ]
4470
-
4471
- [[package]]
4472
- name = "wasmparser"
4473
- version = "0.240.0"
4474
- source = "registry+https://github.com/rust-lang/crates.io-index"
4475
- checksum = "b722dcf61e0ea47440b53ff83ccb5df8efec57a69d150e4f24882e4eba7e24a4"
4476
- dependencies = [
4477
- "bitflags 2.10.0",
4478
- "hashbrown 0.15.5",
4479
- "indexmap",
4480
- "semver",
4481
- "serde",
4376
+ "wasmparser",
4482
4377
  ]
4483
4378
 
4484
4379
  [[package]]
@@ -4488,26 +4383,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
4383
  checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
4489
4384
  dependencies = [
4490
4385
  "bitflags 2.10.0",
4386
+ "hashbrown 0.15.5",
4491
4387
  "indexmap",
4492
4388
  "semver",
4389
+ "serde",
4493
4390
  ]
4494
4391
 
4495
4392
  [[package]]
4496
4393
  name = "wasmprinter"
4497
- version = "0.240.0"
4394
+ version = "0.243.0"
4498
4395
  source = "registry+https://github.com/rust-lang/crates.io-index"
4499
- checksum = "a84d6e25c198da67d0150ee7c2c62d33d784f0a565d1e670bdf1eeccca8158bc"
4396
+ checksum = "eb2b6035559e146114c29a909a3232928ee488d6507a1504d8934e8607b36d7b"
4500
4397
  dependencies = [
4501
4398
  "anyhow",
4502
4399
  "termcolor",
4503
- "wasmparser 0.240.0",
4400
+ "wasmparser",
4504
4401
  ]
4505
4402
 
4506
4403
  [[package]]
4507
4404
  name = "wasmtime"
4508
- version = "39.0.1"
4405
+ version = "40.0.0"
4509
4406
  source = "registry+https://github.com/rust-lang/crates.io-index"
4510
- checksum = "511bc19c2d48f338007dc941cb40c833c4707023fdaf9ec9b97cf1d5a62d26bb"
4407
+ checksum = "0d8038fc29ab714a96f20ed900295981aeffb9ccd2438a0fe82a751e51c3f282"
4511
4408
  dependencies = [
4512
4409
  "addr2line",
4513
4410
  "anyhow",
@@ -4541,8 +4438,8 @@ dependencies = [
4541
4438
  "target-lexicon",
4542
4439
  "tempfile",
4543
4440
  "wasm-compose",
4544
- "wasm-encoder 0.240.0",
4545
- "wasmparser 0.240.0",
4441
+ "wasm-encoder",
4442
+ "wasmparser",
4546
4443
  "wasmtime-environ",
4547
4444
  "wasmtime-internal-cache",
4548
4445
  "wasmtime-internal-component-macro",
@@ -4557,14 +4454,14 @@ dependencies = [
4557
4454
  "wasmtime-internal-versioned-export-macros",
4558
4455
  "wasmtime-internal-winch",
4559
4456
  "wat",
4560
- "windows-sys 0.60.2",
4457
+ "windows-sys 0.61.2",
4561
4458
  ]
4562
4459
 
4563
4460
  [[package]]
4564
4461
  name = "wasmtime-environ"
4565
- version = "39.0.1"
4462
+ version = "40.0.0"
4566
4463
  source = "registry+https://github.com/rust-lang/crates.io-index"
4567
- checksum = "c3b0d53657fea2a8cee8ed1866ad45d2e5bc21be958a626a1dd9b7de589851b3"
4464
+ checksum = "17ecada9136ed45524c9bf9cbd7e374109158784292eeb7c27dfaef6c9ccaaff"
4568
4465
  dependencies = [
4569
4466
  "anyhow",
4570
4467
  "cpp_demangle",
@@ -4581,17 +4478,17 @@ dependencies = [
4581
4478
  "serde_derive",
4582
4479
  "smallvec",
4583
4480
  "target-lexicon",
4584
- "wasm-encoder 0.240.0",
4585
- "wasmparser 0.240.0",
4481
+ "wasm-encoder",
4482
+ "wasmparser",
4586
4483
  "wasmprinter",
4587
4484
  "wasmtime-internal-component-util",
4588
4485
  ]
4589
4486
 
4590
4487
  [[package]]
4591
4488
  name = "wasmtime-internal-cache"
4592
- version = "39.0.1"
4489
+ version = "40.0.0"
4593
4490
  source = "registry+https://github.com/rust-lang/crates.io-index"
4594
- checksum = "35e065628d2a6eccb722de71c6d9b58771f5c3c4f9d35f6cb6d9d92370f4c2b4"
4491
+ checksum = "64c9f3c34d3f225ad991829cfad84a3628a6e1abf94052701664de381100bd24"
4595
4492
  dependencies = [
4596
4493
  "anyhow",
4597
4494
  "base64",
@@ -4603,15 +4500,15 @@ dependencies = [
4603
4500
  "serde_derive",
4604
4501
  "sha2",
4605
4502
  "toml",
4606
- "windows-sys 0.60.2",
4503
+ "windows-sys 0.61.2",
4607
4504
  "zstd",
4608
4505
  ]
4609
4506
 
4610
4507
  [[package]]
4611
4508
  name = "wasmtime-internal-component-macro"
4612
- version = "39.0.1"
4509
+ version = "40.0.0"
4613
4510
  source = "registry+https://github.com/rust-lang/crates.io-index"
4614
- checksum = "c933104f57d27dd1e6c7bd9ee5df3242bdd1962d9381bc08fa5d4e60e1f5ebdf"
4511
+ checksum = "00ecdcd4417556399d2361edd6743d82ce4e1d08b40b623d517a1a34e095c3b4"
4615
4512
  dependencies = [
4616
4513
  "anyhow",
4617
4514
  "proc-macro2",
@@ -4624,15 +4521,15 @@ dependencies = [
4624
4521
 
4625
4522
  [[package]]
4626
4523
  name = "wasmtime-internal-component-util"
4627
- version = "39.0.1"
4524
+ version = "40.0.0"
4628
4525
  source = "registry+https://github.com/rust-lang/crates.io-index"
4629
- checksum = "63ef2a95a5dbaa70fc3ef682ea8997e51cdd819b4d157a1100477cf43949d454"
4526
+ checksum = "db62a8ac301de47248cf2f95c5b4ea524e21b3870508a2922ac58366300707f4"
4630
4527
 
4631
4528
  [[package]]
4632
4529
  name = "wasmtime-internal-cranelift"
4633
- version = "39.0.1"
4530
+ version = "40.0.0"
4634
4531
  source = "registry+https://github.com/rust-lang/crates.io-index"
4635
- checksum = "73122df6a8cf417ce486a94e844d3a60797217ce7ae69653e0ee9e28269e0fa5"
4532
+ checksum = "44fb5e6999cee5ae8dce4e2d34b17ff28304823ed286096c9855a3ceea6c8a55"
4636
4533
  dependencies = [
4637
4534
  "anyhow",
4638
4535
  "cfg-if",
@@ -4649,7 +4546,7 @@ dependencies = [
4649
4546
  "smallvec",
4650
4547
  "target-lexicon",
4651
4548
  "thiserror 2.0.17",
4652
- "wasmparser 0.240.0",
4549
+ "wasmparser",
4653
4550
  "wasmtime-environ",
4654
4551
  "wasmtime-internal-math",
4655
4552
  "wasmtime-internal-unwinder",
@@ -4658,9 +4555,9 @@ dependencies = [
4658
4555
 
4659
4556
  [[package]]
4660
4557
  name = "wasmtime-internal-fiber"
4661
- version = "39.0.1"
4558
+ version = "40.0.0"
4662
4559
  source = "registry+https://github.com/rust-lang/crates.io-index"
4663
- checksum = "54ead059e58b54a7abbe0bfb9457b3833ebd2ad84326c248a835ff76d64c7c6f"
4560
+ checksum = "2c04da43e52907cc1db86d72447b3a0f990461f4dbac222987b526c3762a2590"
4664
4561
  dependencies = [
4665
4562
  "anyhow",
4666
4563
  "cc",
@@ -4668,14 +4565,14 @@ dependencies = [
4668
4565
  "libc",
4669
4566
  "rustix",
4670
4567
  "wasmtime-internal-versioned-export-macros",
4671
- "windows-sys 0.60.2",
4568
+ "windows-sys 0.61.2",
4672
4569
  ]
4673
4570
 
4674
4571
  [[package]]
4675
4572
  name = "wasmtime-internal-jit-debug"
4676
- version = "39.0.1"
4573
+ version = "40.0.0"
4677
4574
  source = "registry+https://github.com/rust-lang/crates.io-index"
4678
- checksum = "3af620a4ac1623298c90d3736644e12d66974951d1e38d0464798de85c984e17"
4575
+ checksum = "f7bf6ce9524b19ddb0012c5c29810907db85e0fbb515f891381bd2eca88271f9"
4679
4576
  dependencies = [
4680
4577
  "cc",
4681
4578
  "object",
@@ -4685,36 +4582,36 @@ dependencies = [
4685
4582
 
4686
4583
  [[package]]
4687
4584
  name = "wasmtime-internal-jit-icache-coherence"
4688
- version = "39.0.1"
4585
+ version = "40.0.0"
4689
4586
  source = "registry+https://github.com/rust-lang/crates.io-index"
4690
- checksum = "b97ccd36e25390258ce6720add639ffe5a7d81a5c904350aa08f5bbc60433d22"
4587
+ checksum = "0858b470463f3e7c73acd6049046049e64be17b98901c2db5047450cf83df1fe"
4691
4588
  dependencies = [
4692
4589
  "anyhow",
4693
4590
  "cfg-if",
4694
4591
  "libc",
4695
- "windows-sys 0.60.2",
4592
+ "windows-sys 0.61.2",
4696
4593
  ]
4697
4594
 
4698
4595
  [[package]]
4699
4596
  name = "wasmtime-internal-math"
4700
- version = "39.0.1"
4597
+ version = "40.0.0"
4701
4598
  source = "registry+https://github.com/rust-lang/crates.io-index"
4702
- checksum = "cd1b856e1bbf0230ab560ba4204e944b141971adc4e6cdf3feb6979c1a7b7953"
4599
+ checksum = "222e1a590ece4e898f20af1e541b61d2cb803f2557e7eaff23e6c1db5434454a"
4703
4600
  dependencies = [
4704
4601
  "libm",
4705
4602
  ]
4706
4603
 
4707
4604
  [[package]]
4708
4605
  name = "wasmtime-internal-slab"
4709
- version = "39.0.1"
4606
+ version = "40.0.0"
4710
4607
  source = "registry+https://github.com/rust-lang/crates.io-index"
4711
- checksum = "8908e71a780b97cbd3d8f3a0c446ac8df963069e0f3f38c9eace4f199d4d3e65"
4608
+ checksum = "b96f87ca0e5dcbfd22e2b3082bc2e1d3aca6acdf72c5a6be6a367c5d3bec0e29"
4712
4609
 
4713
4610
  [[package]]
4714
4611
  name = "wasmtime-internal-unwinder"
4715
- version = "39.0.1"
4612
+ version = "40.0.0"
4716
4613
  source = "registry+https://github.com/rust-lang/crates.io-index"
4717
- checksum = "fb9c2f8223a0ef96527f0446b80c7d0d9bb0577c7b918e3104bd6d4cdba1d101"
4614
+ checksum = "4f5dec57ee2271b882124510af63bf3cc56c8f0679e11d3aeea6b0e3ba3bc47a"
4718
4615
  dependencies = [
4719
4616
  "anyhow",
4720
4617
  "cfg-if",
@@ -4725,9 +4622,9 @@ dependencies = [
4725
4622
 
4726
4623
  [[package]]
4727
4624
  name = "wasmtime-internal-versioned-export-macros"
4728
- version = "39.0.1"
4625
+ version = "40.0.0"
4729
4626
  source = "registry+https://github.com/rust-lang/crates.io-index"
4730
- checksum = "2b0fb82cdbffd6cafc812c734a22fa753102888b8760ecf6a08cbb50367a458a"
4627
+ checksum = "1432b46abe11180edc881ef6a79691c5c58395a70ae0294294489210d4270ca3"
4731
4628
  dependencies = [
4732
4629
  "proc-macro2",
4733
4630
  "quote",
@@ -4736,9 +4633,9 @@ dependencies = [
4736
4633
 
4737
4634
  [[package]]
4738
4635
  name = "wasmtime-internal-winch"
4739
- version = "39.0.1"
4636
+ version = "40.0.0"
4740
4637
  source = "registry+https://github.com/rust-lang/crates.io-index"
4741
- checksum = "f1cfd68149cef86afd9a6c9b51e461266dfa66b37b4c6fdf1201ddbf7f906271"
4638
+ checksum = "1294790b47fbaba7b520c3ada973ac3738d7ecf4e64edf16748b4029689c771d"
4742
4639
  dependencies = [
4743
4640
  "anyhow",
4744
4641
  "cranelift-codegen",
@@ -4746,7 +4643,7 @@ dependencies = [
4746
4643
  "log",
4747
4644
  "object",
4748
4645
  "target-lexicon",
4749
- "wasmparser 0.240.0",
4646
+ "wasmparser",
4750
4647
  "wasmtime-environ",
4751
4648
  "wasmtime-internal-cranelift",
4752
4649
  "winch-codegen",
@@ -4754,13 +4651,13 @@ dependencies = [
4754
4651
 
4755
4652
  [[package]]
4756
4653
  name = "wasmtime-internal-wit-bindgen"
4757
- version = "39.0.1"
4654
+ version = "40.0.0"
4758
4655
  source = "registry+https://github.com/rust-lang/crates.io-index"
4759
- checksum = "a628437073400148f1ba2b55beb60eb376dc5ca538745994c83332b037d1f3fa"
4656
+ checksum = "000e28204c017228ba8e98bb1960ecf71f2c3ff7cf9ae1f7b179d8581f062b60"
4760
4657
  dependencies = [
4761
4658
  "anyhow",
4762
4659
  "bitflags 2.10.0",
4763
- "heck 0.5.0",
4660
+ "heck",
4764
4661
  "indexmap",
4765
4662
  "wit-parser",
4766
4663
  ]
@@ -4775,7 +4672,7 @@ dependencies = [
4775
4672
  "leb128fmt",
4776
4673
  "memchr",
4777
4674
  "unicode-width",
4778
- "wasm-encoder 0.243.0",
4675
+ "wasm-encoder",
4779
4676
  ]
4780
4677
 
4781
4678
  [[package]]
@@ -4821,9 +4718,9 @@ dependencies = [
4821
4718
 
4822
4719
  [[package]]
4823
4720
  name = "webpki-root-certs"
4824
- version = "1.0.4"
4721
+ version = "1.0.5"
4825
4722
  source = "registry+https://github.com/rust-lang/crates.io-index"
4826
- checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b"
4723
+ checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
4827
4724
  dependencies = [
4828
4725
  "rustls-pki-types",
4829
4726
  ]
@@ -4867,9 +4764,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4867
4764
 
4868
4765
  [[package]]
4869
4766
  name = "winch-codegen"
4870
- version = "39.0.1"
4767
+ version = "40.0.0"
4871
4768
  source = "registry+https://github.com/rust-lang/crates.io-index"
4872
- checksum = "b1de5a648102e39c8e817ed25e3820f4b9772f3c9c930984f32737be60e3156b"
4769
+ checksum = "d4dacafbbae4a4540b2c802745445ed47b5ddfdcb85c6580e2feac178361f1b5"
4873
4770
  dependencies = [
4874
4771
  "anyhow",
4875
4772
  "cranelift-assembler-x64",
@@ -4879,7 +4776,7 @@ dependencies = [
4879
4776
  "smallvec",
4880
4777
  "target-lexicon",
4881
4778
  "thiserror 2.0.17",
4882
- "wasmparser 0.240.0",
4779
+ "wasmparser",
4883
4780
  "wasmtime-environ",
4884
4781
  "wasmtime-internal-cranelift",
4885
4782
  "wasmtime-internal-math",
@@ -5172,9 +5069,9 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
5172
5069
 
5173
5070
  [[package]]
5174
5071
  name = "wit-parser"
5175
- version = "0.240.0"
5072
+ version = "0.243.0"
5176
5073
  source = "registry+https://github.com/rust-lang/crates.io-index"
5177
- checksum = "9875ea3fa272f57cc1fc50f225a7b94021a7878c484b33792bccad0d93223439"
5074
+ checksum = "df983a8608e513d8997f435bb74207bf0933d0e49ca97aa9d8a6157164b9b7fc"
5178
5075
  dependencies = [
5179
5076
  "anyhow",
5180
5077
  "id-arena",
@@ -5185,7 +5082,7 @@ dependencies = [
5185
5082
  "serde_derive",
5186
5083
  "serde_json",
5187
5084
  "unicode-xid",
5188
- "wasmparser 0.240.0",
5085
+ "wasmparser",
5189
5086
  ]
5190
5087
 
5191
5088
  [[package]]
@@ -5285,9 +5182,9 @@ dependencies = [
5285
5182
 
5286
5183
  [[package]]
5287
5184
  name = "zeroize_derive"
5288
- version = "1.4.2"
5185
+ version = "1.4.3"
5289
5186
  source = "registry+https://github.com/rust-lang/crates.io-index"
5290
- checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5187
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
5291
5188
  dependencies = [
5292
5189
  "proc-macro2",
5293
5190
  "quote",
@@ -5356,9 +5253,15 @@ dependencies = [
5356
5253
 
5357
5254
  [[package]]
5358
5255
  name = "zlib-rs"
5359
- version = "0.5.4"
5256
+ version = "0.5.5"
5257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5258
+ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
5259
+
5260
+ [[package]]
5261
+ name = "zmij"
5262
+ version = "1.0.10"
5360
5263
  source = "registry+https://github.com/rust-lang/crates.io-index"
5361
- checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
5264
+ checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868"
5362
5265
 
5363
5266
  [[package]]
5364
5267
  name = "zopfli"
@@ -5408,9 +5311,9 @@ checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773"
5408
5311
 
5409
5312
  [[package]]
5410
5313
  name = "zune-jpeg"
5411
- version = "0.5.6"
5314
+ version = "0.5.8"
5412
5315
  source = "registry+https://github.com/rust-lang/crates.io-index"
5413
- checksum = "f520eebad972262a1dde0ec455bce4f8b298b1e5154513de58c114c4c54303e8"
5316
+ checksum = "e35aee689668bf9bd6f6f3a6c60bb29ba1244b3b43adfd50edd554a371da37d5"
5414
5317
  dependencies = [
5415
5318
  "zune-core",
5416
5319
  ]