html-to-markdown 3.4.0 → 3.6.0.pre.rc.23

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 (188) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -0
  3. data/README.md +347 -0
  4. data/Steepfile +10 -2
  5. data/ext/html_to_markdown_rb/Cargo.toml +3 -2
  6. data/ext/html_to_markdown_rb/extconf.rb +5 -5
  7. data/ext/html_to_markdown_rb/native/Cargo.lock +962 -0
  8. data/ext/html_to_markdown_rb/native/Cargo.toml +6 -11
  9. data/ext/html_to_markdown_rb/native/extconf.rb +14 -0
  10. data/ext/html_to_markdown_rb/src/lib.rs +1715 -646
  11. data/lib/html_to_markdown/native.rb +913 -37
  12. data/lib/html_to_markdown/version.rb +3 -3
  13. data/lib/html_to_markdown.rb +9 -4
  14. data/lib/html_to_markdown_rb.so +0 -0
  15. data/sig/types.rbs +59 -292
  16. metadata +32 -179
  17. data/ext/html_to_markdown_rb/Makefile +0 -592
  18. data/lib/bin/html-to-markdown +0 -0
  19. data/vendor/Cargo.toml +0 -33
  20. data/vendor/html-to-markdown-rs/Cargo.toml +0 -54
  21. data/vendor/html-to-markdown-rs/README.md +0 -278
  22. data/vendor/html-to-markdown-rs/examples/basic.rs +0 -24
  23. data/vendor/html-to-markdown-rs/examples/table.rs +0 -25
  24. data/vendor/html-to-markdown-rs/examples/test_deser.rs +0 -12
  25. data/vendor/html-to-markdown-rs/examples/test_escape.rs +0 -58
  26. data/vendor/html-to-markdown-rs/examples/test_inline_formatting.rs +0 -113
  27. data/vendor/html-to-markdown-rs/examples/test_lists.rs +0 -39
  28. data/vendor/html-to-markdown-rs/examples/test_semantic_tags.rs +0 -89
  29. data/vendor/html-to-markdown-rs/examples/test_tables.rs +0 -100
  30. data/vendor/html-to-markdown-rs/examples/test_task_lists.rs +0 -61
  31. data/vendor/html-to-markdown-rs/examples/test_whitespace.rs +0 -34
  32. data/vendor/html-to-markdown-rs/src/convert_api.rs +0 -349
  33. data/vendor/html-to-markdown-rs/src/converter/block/blockquote.rs +0 -178
  34. data/vendor/html-to-markdown-rs/src/converter/block/container.rs +0 -114
  35. data/vendor/html-to-markdown-rs/src/converter/block/div.rs +0 -149
  36. data/vendor/html-to-markdown-rs/src/converter/block/heading.rs +0 -428
  37. data/vendor/html-to-markdown-rs/src/converter/block/horizontal_rule.rs +0 -103
  38. data/vendor/html-to-markdown-rs/src/converter/block/line_break.rs +0 -89
  39. data/vendor/html-to-markdown-rs/src/converter/block/mod.rs +0 -10
  40. data/vendor/html-to-markdown-rs/src/converter/block/paragraph.rs +0 -140
  41. data/vendor/html-to-markdown-rs/src/converter/block/preformatted.rs +0 -298
  42. data/vendor/html-to-markdown-rs/src/converter/block/table/builder.rs +0 -453
  43. data/vendor/html-to-markdown-rs/src/converter/block/table/caption.rs +0 -44
  44. data/vendor/html-to-markdown-rs/src/converter/block/table/cell.rs +0 -276
  45. data/vendor/html-to-markdown-rs/src/converter/block/table/cells.rs +0 -336
  46. data/vendor/html-to-markdown-rs/src/converter/block/table/layout.rs +0 -58
  47. data/vendor/html-to-markdown-rs/src/converter/block/table/mod.rs +0 -266
  48. data/vendor/html-to-markdown-rs/src/converter/block/table/scanner.rs +0 -146
  49. data/vendor/html-to-markdown-rs/src/converter/block/table/utils.rs +0 -34
  50. data/vendor/html-to-markdown-rs/src/converter/block/unknown.rs +0 -138
  51. data/vendor/html-to-markdown-rs/src/converter/context.rs +0 -208
  52. data/vendor/html-to-markdown-rs/src/converter/dom_context.rs +0 -337
  53. data/vendor/html-to-markdown-rs/src/converter/form/elements.rs +0 -770
  54. data/vendor/html-to-markdown-rs/src/converter/form/mod.rs +0 -82
  55. data/vendor/html-to-markdown-rs/src/converter/format/djot.rs +0 -64
  56. data/vendor/html-to-markdown-rs/src/converter/format/markdown.rs +0 -59
  57. data/vendor/html-to-markdown-rs/src/converter/format/mod.rs +0 -43
  58. data/vendor/html-to-markdown-rs/src/converter/handlers/blockquote.rs +0 -173
  59. data/vendor/html-to-markdown-rs/src/converter/handlers/code_block.rs +0 -434
  60. data/vendor/html-to-markdown-rs/src/converter/handlers/graphic.rs +0 -234
  61. data/vendor/html-to-markdown-rs/src/converter/handlers/image.rs +0 -282
  62. data/vendor/html-to-markdown-rs/src/converter/handlers/link.rs +0 -316
  63. data/vendor/html-to-markdown-rs/src/converter/handlers/mod.rs +0 -26
  64. data/vendor/html-to-markdown-rs/src/converter/inline/code.rs +0 -306
  65. data/vendor/html-to-markdown-rs/src/converter/inline/emphasis.rs +0 -345
  66. data/vendor/html-to-markdown-rs/src/converter/inline/link.rs +0 -428
  67. data/vendor/html-to-markdown-rs/src/converter/inline/mod.rs +0 -237
  68. data/vendor/html-to-markdown-rs/src/converter/inline/ruby.rs +0 -337
  69. data/vendor/html-to-markdown-rs/src/converter/inline/semantic/marks.rs +0 -566
  70. data/vendor/html-to-markdown-rs/src/converter/inline/semantic/mod.rs +0 -86
  71. data/vendor/html-to-markdown-rs/src/converter/inline/semantic/typography.rs +0 -558
  72. data/vendor/html-to-markdown-rs/src/converter/list/definition.rs +0 -232
  73. data/vendor/html-to-markdown-rs/src/converter/list/item.rs +0 -332
  74. data/vendor/html-to-markdown-rs/src/converter/list/mod.rs +0 -70
  75. data/vendor/html-to-markdown-rs/src/converter/list/ordered.rs +0 -201
  76. data/vendor/html-to-markdown-rs/src/converter/list/unordered.rs +0 -195
  77. data/vendor/html-to-markdown-rs/src/converter/list/utils.rs +0 -314
  78. data/vendor/html-to-markdown-rs/src/converter/main.rs +0 -710
  79. data/vendor/html-to-markdown-rs/src/converter/main_helpers.rs +0 -452
  80. data/vendor/html-to-markdown-rs/src/converter/media/embedded.rs +0 -393
  81. data/vendor/html-to-markdown-rs/src/converter/media/graphic.rs +0 -4
  82. data/vendor/html-to-markdown-rs/src/converter/media/image.rs +0 -183
  83. data/vendor/html-to-markdown-rs/src/converter/media/mod.rs +0 -87
  84. data/vendor/html-to-markdown-rs/src/converter/media/svg.rs +0 -280
  85. data/vendor/html-to-markdown-rs/src/converter/metadata.rs +0 -220
  86. data/vendor/html-to-markdown-rs/src/converter/mod.rs +0 -156
  87. data/vendor/html-to-markdown-rs/src/converter/plain_text.rs +0 -516
  88. data/vendor/html-to-markdown-rs/src/converter/preprocessing_helpers.rs +0 -201
  89. data/vendor/html-to-markdown-rs/src/converter/reference_collector.rs +0 -69
  90. data/vendor/html-to-markdown-rs/src/converter/semantic/attributes.rs +0 -269
  91. data/vendor/html-to-markdown-rs/src/converter/semantic/definition_list.rs +0 -266
  92. data/vendor/html-to-markdown-rs/src/converter/semantic/figure.rs +0 -391
  93. data/vendor/html-to-markdown-rs/src/converter/semantic/mod.rs +0 -112
  94. data/vendor/html-to-markdown-rs/src/converter/semantic/sectioning.rs +0 -85
  95. data/vendor/html-to-markdown-rs/src/converter/semantic/summary.rs +0 -324
  96. data/vendor/html-to-markdown-rs/src/converter/text/mod.rs +0 -8
  97. data/vendor/html-to-markdown-rs/src/converter/text/processing.rs +0 -56
  98. data/vendor/html-to-markdown-rs/src/converter/text_node.rs +0 -269
  99. data/vendor/html-to-markdown-rs/src/converter/utility/attributes.rs +0 -151
  100. data/vendor/html-to-markdown-rs/src/converter/utility/caching.rs +0 -74
  101. data/vendor/html-to-markdown-rs/src/converter/utility/content.rs +0 -271
  102. data/vendor/html-to-markdown-rs/src/converter/utility/mod.rs +0 -17
  103. data/vendor/html-to-markdown-rs/src/converter/utility/preprocessing.rs +0 -1002
  104. data/vendor/html-to-markdown-rs/src/converter/utility/serialization.rs +0 -126
  105. data/vendor/html-to-markdown-rs/src/converter/utility/siblings.rs +0 -97
  106. data/vendor/html-to-markdown-rs/src/converter/visitor_hooks.rs +0 -189
  107. data/vendor/html-to-markdown-rs/src/error.rs +0 -43
  108. data/vendor/html-to-markdown-rs/src/exports.rs +0 -24
  109. data/vendor/html-to-markdown-rs/src/inline_images.rs +0 -336
  110. data/vendor/html-to-markdown-rs/src/lib.rs +0 -139
  111. data/vendor/html-to-markdown-rs/src/metadata/collector.rs +0 -457
  112. data/vendor/html-to-markdown-rs/src/metadata/config.rs +0 -394
  113. data/vendor/html-to-markdown-rs/src/metadata/extraction.rs +0 -398
  114. data/vendor/html-to-markdown-rs/src/metadata/mod.rs +0 -288
  115. data/vendor/html-to-markdown-rs/src/metadata/types.rs +0 -477
  116. data/vendor/html-to-markdown-rs/src/options/conversion.rs +0 -559
  117. data/vendor/html-to-markdown-rs/src/options/inline_image.rs +0 -111
  118. data/vendor/html-to-markdown-rs/src/options/mod.rs +0 -20
  119. data/vendor/html-to-markdown-rs/src/options/preprocessing.rs +0 -201
  120. data/vendor/html-to-markdown-rs/src/options/validation.rs +0 -416
  121. data/vendor/html-to-markdown-rs/src/prelude.rs +0 -1
  122. data/vendor/html-to-markdown-rs/src/rcdom.rs +0 -487
  123. data/vendor/html-to-markdown-rs/src/text.rs +0 -358
  124. data/vendor/html-to-markdown-rs/src/types/document.rs +0 -191
  125. data/vendor/html-to-markdown-rs/src/types/mod.rs +0 -17
  126. data/vendor/html-to-markdown-rs/src/types/result.rs +0 -54
  127. data/vendor/html-to-markdown-rs/src/types/structure_builder.rs +0 -791
  128. data/vendor/html-to-markdown-rs/src/types/structure_collector.rs +0 -483
  129. data/vendor/html-to-markdown-rs/src/types/tables.rs +0 -52
  130. data/vendor/html-to-markdown-rs/src/types/warnings.rs +0 -33
  131. data/vendor/html-to-markdown-rs/src/validation.rs +0 -158
  132. data/vendor/html-to-markdown-rs/src/visitor/default_impl.rs +0 -63
  133. data/vendor/html-to-markdown-rs/src/visitor/mod.rs +0 -41
  134. data/vendor/html-to-markdown-rs/src/visitor/traits.rs +0 -370
  135. data/vendor/html-to-markdown-rs/src/visitor/types.rs +0 -319
  136. data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/callbacks/mod.rs +0 -1
  137. data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/content.rs +0 -126
  138. data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/mod.rs +0 -27
  139. data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/state.rs +0 -110
  140. data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/traversal.rs +0 -250
  141. data/vendor/html-to-markdown-rs/src/visitor_helpers.rs +0 -597
  142. data/vendor/html-to-markdown-rs/src/wrapper/sync.rs +0 -413
  143. data/vendor/html-to-markdown-rs/src/wrapper/utils.rs +0 -290
  144. data/vendor/html-to-markdown-rs/src/wrapper.rs +0 -9
  145. data/vendor/html-to-markdown-rs/tests/br_in_inline_test.rs +0 -87
  146. data/vendor/html-to-markdown-rs/tests/commonmark_compliance_test.rs +0 -297
  147. data/vendor/html-to-markdown-rs/tests/djot_output_test.rs +0 -153
  148. data/vendor/html-to-markdown-rs/tests/exclude_selectors_test.rs +0 -132
  149. data/vendor/html-to-markdown-rs/tests/integration_test.rs +0 -631
  150. data/vendor/html-to-markdown-rs/tests/issue_121_regressions.rs +0 -49
  151. data/vendor/html-to-markdown-rs/tests/issue_127_regressions.rs +0 -58
  152. data/vendor/html-to-markdown-rs/tests/issue_128_regressions.rs +0 -17
  153. data/vendor/html-to-markdown-rs/tests/issue_131_regressions.rs +0 -41
  154. data/vendor/html-to-markdown-rs/tests/issue_134_regressions.rs +0 -40
  155. data/vendor/html-to-markdown-rs/tests/issue_139_regressions.rs +0 -26
  156. data/vendor/html-to-markdown-rs/tests/issue_140_regressions.rs +0 -185
  157. data/vendor/html-to-markdown-rs/tests/issue_143_regressions.rs +0 -100
  158. data/vendor/html-to-markdown-rs/tests/issue_145_regressions.rs +0 -133
  159. data/vendor/html-to-markdown-rs/tests/issue_146_regressions.rs +0 -144
  160. data/vendor/html-to-markdown-rs/tests/issue_176_regressions.rs +0 -62
  161. data/vendor/html-to-markdown-rs/tests/issue_190_regressions.rs +0 -128
  162. data/vendor/html-to-markdown-rs/tests/issue_199_regressions.rs +0 -20
  163. data/vendor/html-to-markdown-rs/tests/issue_200_regressions.rs +0 -62
  164. data/vendor/html-to-markdown-rs/tests/issue_212_regressions.rs +0 -68
  165. data/vendor/html-to-markdown-rs/tests/issue_216_217_regressions.rs +0 -87
  166. data/vendor/html-to-markdown-rs/tests/issue_336_regressions.rs +0 -74
  167. data/vendor/html-to-markdown-rs/tests/issue_339_regressions.rs +0 -92
  168. data/vendor/html-to-markdown-rs/tests/issue_347_regressions.rs +0 -154
  169. data/vendor/html-to-markdown-rs/tests/issue_348_visitor_plain.rs +0 -93
  170. data/vendor/html-to-markdown-rs/tests/json_ld_script_extraction.rs +0 -44
  171. data/vendor/html-to-markdown-rs/tests/lists_test.rs +0 -199
  172. data/vendor/html-to-markdown-rs/tests/plain_output_test.rs +0 -273
  173. data/vendor/html-to-markdown-rs/tests/preprocessing_tests.rs +0 -61
  174. data/vendor/html-to-markdown-rs/tests/reference_links_test.rs +0 -169
  175. data/vendor/html-to-markdown-rs/tests/sectioning_elements_test.rs +0 -137
  176. data/vendor/html-to-markdown-rs/tests/skip_images_test.rs +0 -522
  177. data/vendor/html-to-markdown-rs/tests/tables_test.rs +0 -743
  178. data/vendor/html-to-markdown-rs/tests/test_custom_elements.rs +0 -41
  179. data/vendor/html-to-markdown-rs/tests/test_issue_187.rs +0 -204
  180. data/vendor/html-to-markdown-rs/tests/test_issue_218.rs +0 -68
  181. data/vendor/html-to-markdown-rs/tests/test_issue_277.rs +0 -77
  182. data/vendor/html-to-markdown-rs/tests/test_max_depth.rs +0 -82
  183. data/vendor/html-to-markdown-rs/tests/test_nested_simple.rs +0 -45
  184. data/vendor/html-to-markdown-rs/tests/test_script_style_stripping.rs +0 -396
  185. data/vendor/html-to-markdown-rs/tests/test_spa_bisect.rs +0 -34
  186. data/vendor/html-to-markdown-rs/tests/visitor_code_integration_test.rs +0 -121
  187. data/vendor/html-to-markdown-rs/tests/visitor_integration_test.rs +0 -1190
  188. data/vendor/html-to-markdown-rs/tests/xml_tables_test.rs +0 -372
@@ -0,0 +1,962 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "once_cell",
20
+ "version_check",
21
+ "zerocopy",
22
+ ]
23
+
24
+ [[package]]
25
+ name = "aho-corasick"
26
+ version = "1.1.4"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
29
+ dependencies = [
30
+ "memchr",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "allocator-api2"
35
+ version = "0.2.21"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
38
+
39
+ [[package]]
40
+ name = "astral-tl"
41
+ version = "0.7.11"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
44
+ dependencies = [
45
+ "memchr",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "async-trait"
50
+ version = "0.1.89"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
53
+ dependencies = [
54
+ "proc-macro2",
55
+ "quote",
56
+ "syn",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "autocfg"
61
+ version = "1.5.1"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
64
+
65
+ [[package]]
66
+ name = "base64"
67
+ version = "0.22.1"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
70
+
71
+ [[package]]
72
+ name = "bindgen"
73
+ version = "0.72.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
76
+ dependencies = [
77
+ "bitflags",
78
+ "cexpr",
79
+ "clang-sys",
80
+ "itertools",
81
+ "proc-macro2",
82
+ "quote",
83
+ "regex",
84
+ "rustc-hash",
85
+ "shlex",
86
+ "syn",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "bitflags"
91
+ version = "2.13.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
94
+
95
+ [[package]]
96
+ name = "bytemuck"
97
+ version = "1.25.0"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
100
+
101
+ [[package]]
102
+ name = "byteorder-lite"
103
+ version = "0.1.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
106
+
107
+ [[package]]
108
+ name = "cexpr"
109
+ version = "0.6.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
112
+ dependencies = [
113
+ "nom",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "cfg-if"
118
+ version = "1.0.4"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
121
+
122
+ [[package]]
123
+ name = "clang-sys"
124
+ version = "1.8.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
127
+ dependencies = [
128
+ "glob",
129
+ "libc",
130
+ "libloading",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "color_quant"
135
+ version = "1.1.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
138
+
139
+ [[package]]
140
+ name = "const-random"
141
+ version = "0.1.18"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
144
+ dependencies = [
145
+ "const-random-macro",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "const-random-macro"
150
+ version = "0.1.16"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
153
+ dependencies = [
154
+ "getrandom",
155
+ "once_cell",
156
+ "tiny-keccak",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "crc32fast"
161
+ version = "1.5.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
164
+ dependencies = [
165
+ "cfg-if",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "crunchy"
170
+ version = "0.2.4"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
173
+
174
+ [[package]]
175
+ name = "either"
176
+ version = "1.16.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
179
+
180
+ [[package]]
181
+ name = "equivalent"
182
+ version = "1.0.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
185
+
186
+ [[package]]
187
+ name = "fastrand"
188
+ version = "2.4.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
191
+
192
+ [[package]]
193
+ name = "fdeflate"
194
+ version = "0.3.7"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
197
+ dependencies = [
198
+ "simd-adler32",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "flate2"
203
+ version = "1.1.9"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
206
+ dependencies = [
207
+ "crc32fast",
208
+ "miniz_oxide",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "foldhash"
213
+ version = "0.2.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
216
+
217
+ [[package]]
218
+ name = "getrandom"
219
+ version = "0.2.17"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
222
+ dependencies = [
223
+ "cfg-if",
224
+ "libc",
225
+ "wasi",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "gif"
230
+ version = "0.14.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
233
+ dependencies = [
234
+ "color_quant",
235
+ "weezl",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "glob"
240
+ version = "0.3.3"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
243
+
244
+ [[package]]
245
+ name = "hashbrown"
246
+ version = "0.17.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
249
+ dependencies = [
250
+ "allocator-api2",
251
+ "equivalent",
252
+ "foldhash",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "html-escape"
257
+ version = "0.2.13"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
260
+ dependencies = [
261
+ "utf8-width",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "html-to-markdown-rb"
266
+ version = "3.6.0-rc.23"
267
+ dependencies = [
268
+ "async-trait",
269
+ "html-to-markdown-rs",
270
+ "magnus",
271
+ "rb-sys",
272
+ "serde",
273
+ "serde_json",
274
+ "tokio",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "html-to-markdown-rs"
279
+ version = "3.6.0-rc.23"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "415c5d53b7405c6813f5e187477600b87df617377527d20a8cc91e3b0fd93a92"
282
+ dependencies = [
283
+ "ahash",
284
+ "astral-tl",
285
+ "base64",
286
+ "bitflags",
287
+ "html-escape",
288
+ "html5ever",
289
+ "image",
290
+ "lru",
291
+ "memchr",
292
+ "once_cell",
293
+ "phf",
294
+ "regex",
295
+ "serde",
296
+ "serde_json",
297
+ "thiserror",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "html5ever"
302
+ version = "0.39.0"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
305
+ dependencies = [
306
+ "log",
307
+ "markup5ever",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "image"
312
+ version = "0.25.10"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
315
+ dependencies = [
316
+ "bytemuck",
317
+ "byteorder-lite",
318
+ "color_quant",
319
+ "gif",
320
+ "image-webp",
321
+ "moxcms",
322
+ "num-traits",
323
+ "png",
324
+ "zune-core",
325
+ "zune-jpeg",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "image-webp"
330
+ version = "0.2.4"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
333
+ dependencies = [
334
+ "byteorder-lite",
335
+ "quick-error",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "itertools"
340
+ version = "0.13.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
343
+ dependencies = [
344
+ "either",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "itoa"
349
+ version = "1.0.18"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
352
+
353
+ [[package]]
354
+ name = "lazy_static"
355
+ version = "1.5.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
358
+
359
+ [[package]]
360
+ name = "libc"
361
+ version = "0.2.186"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
364
+
365
+ [[package]]
366
+ name = "libloading"
367
+ version = "0.8.9"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
370
+ dependencies = [
371
+ "cfg-if",
372
+ "windows-link",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "lock_api"
377
+ version = "0.4.14"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
380
+ dependencies = [
381
+ "scopeguard",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "log"
386
+ version = "0.4.32"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
389
+
390
+ [[package]]
391
+ name = "lru"
392
+ version = "0.18.0"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
395
+ dependencies = [
396
+ "hashbrown",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "magnus"
401
+ version = "0.8.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
404
+ dependencies = [
405
+ "magnus-macros",
406
+ "rb-sys",
407
+ "rb-sys-env",
408
+ "seq-macro",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "magnus-macros"
413
+ version = "0.8.0"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
416
+ dependencies = [
417
+ "proc-macro2",
418
+ "quote",
419
+ "syn",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "markup5ever"
424
+ version = "0.39.0"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
427
+ dependencies = [
428
+ "log",
429
+ "tendril",
430
+ "web_atoms",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "memchr"
435
+ version = "2.8.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
438
+
439
+ [[package]]
440
+ name = "minimal-lexical"
441
+ version = "0.2.1"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
444
+
445
+ [[package]]
446
+ name = "miniz_oxide"
447
+ version = "0.8.9"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
450
+ dependencies = [
451
+ "adler2",
452
+ "simd-adler32",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "moxcms"
457
+ version = "0.8.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
460
+ dependencies = [
461
+ "num-traits",
462
+ "pxfm",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "new_debug_unreachable"
467
+ version = "1.0.6"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
470
+
471
+ [[package]]
472
+ name = "nom"
473
+ version = "7.1.3"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
476
+ dependencies = [
477
+ "memchr",
478
+ "minimal-lexical",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "num-traits"
483
+ version = "0.2.19"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
486
+ dependencies = [
487
+ "autocfg",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "once_cell"
492
+ version = "1.21.4"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
495
+
496
+ [[package]]
497
+ name = "parking_lot"
498
+ version = "0.12.5"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
501
+ dependencies = [
502
+ "lock_api",
503
+ "parking_lot_core",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "parking_lot_core"
508
+ version = "0.9.12"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
511
+ dependencies = [
512
+ "cfg-if",
513
+ "libc",
514
+ "redox_syscall",
515
+ "smallvec",
516
+ "windows-link",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "phf"
521
+ version = "0.13.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
524
+ dependencies = [
525
+ "phf_macros",
526
+ "phf_shared",
527
+ "serde",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "phf_codegen"
532
+ version = "0.13.1"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
535
+ dependencies = [
536
+ "phf_generator",
537
+ "phf_shared",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "phf_generator"
542
+ version = "0.13.1"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
545
+ dependencies = [
546
+ "fastrand",
547
+ "phf_shared",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "phf_macros"
552
+ version = "0.13.1"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
555
+ dependencies = [
556
+ "phf_generator",
557
+ "phf_shared",
558
+ "proc-macro2",
559
+ "quote",
560
+ "syn",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "phf_shared"
565
+ version = "0.13.1"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
568
+ dependencies = [
569
+ "siphasher",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "pin-project-lite"
574
+ version = "0.2.17"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
577
+
578
+ [[package]]
579
+ name = "png"
580
+ version = "0.18.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
583
+ dependencies = [
584
+ "bitflags",
585
+ "crc32fast",
586
+ "fdeflate",
587
+ "flate2",
588
+ "miniz_oxide",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "precomputed-hash"
593
+ version = "0.1.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
596
+
597
+ [[package]]
598
+ name = "proc-macro2"
599
+ version = "1.0.106"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
602
+ dependencies = [
603
+ "unicode-ident",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "pxfm"
608
+ version = "0.1.29"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
611
+
612
+ [[package]]
613
+ name = "quick-error"
614
+ version = "2.0.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
617
+
618
+ [[package]]
619
+ name = "quote"
620
+ version = "1.0.45"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
623
+ dependencies = [
624
+ "proc-macro2",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "rb-sys"
629
+ version = "0.9.127"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "d7d7c9560fe42dcffa576941394075f18a17dce89fcf718a2fa90b7dc2134d12"
632
+ dependencies = [
633
+ "rb-sys-build",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "rb-sys-build"
638
+ version = "0.9.128"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
641
+ dependencies = [
642
+ "bindgen",
643
+ "lazy_static",
644
+ "proc-macro2",
645
+ "quote",
646
+ "regex",
647
+ "shell-words",
648
+ "syn",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "rb-sys-env"
653
+ version = "0.2.3"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
656
+
657
+ [[package]]
658
+ name = "redox_syscall"
659
+ version = "0.5.18"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
662
+ dependencies = [
663
+ "bitflags",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "regex"
668
+ version = "1.12.3"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
671
+ dependencies = [
672
+ "aho-corasick",
673
+ "memchr",
674
+ "regex-automata",
675
+ "regex-syntax",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "regex-automata"
680
+ version = "0.4.14"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
683
+ dependencies = [
684
+ "aho-corasick",
685
+ "memchr",
686
+ "regex-syntax",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "regex-syntax"
691
+ version = "0.8.10"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
694
+
695
+ [[package]]
696
+ name = "rustc-hash"
697
+ version = "2.1.2"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
700
+
701
+ [[package]]
702
+ name = "scopeguard"
703
+ version = "1.2.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
706
+
707
+ [[package]]
708
+ name = "seq-macro"
709
+ version = "0.3.6"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
712
+
713
+ [[package]]
714
+ name = "serde"
715
+ version = "1.0.228"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
718
+ dependencies = [
719
+ "serde_core",
720
+ "serde_derive",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "serde_core"
725
+ version = "1.0.228"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
728
+ dependencies = [
729
+ "serde_derive",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "serde_derive"
734
+ version = "1.0.228"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
737
+ dependencies = [
738
+ "proc-macro2",
739
+ "quote",
740
+ "syn",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "serde_json"
745
+ version = "1.0.150"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
748
+ dependencies = [
749
+ "itoa",
750
+ "memchr",
751
+ "serde",
752
+ "serde_core",
753
+ "zmij",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "shell-words"
758
+ version = "1.1.1"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
761
+
762
+ [[package]]
763
+ name = "shlex"
764
+ version = "1.3.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
767
+
768
+ [[package]]
769
+ name = "simd-adler32"
770
+ version = "0.3.9"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
773
+
774
+ [[package]]
775
+ name = "siphasher"
776
+ version = "1.0.3"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
779
+
780
+ [[package]]
781
+ name = "smallvec"
782
+ version = "1.15.1"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
785
+
786
+ [[package]]
787
+ name = "string_cache"
788
+ version = "0.9.0"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
791
+ dependencies = [
792
+ "new_debug_unreachable",
793
+ "parking_lot",
794
+ "phf_shared",
795
+ "precomputed-hash",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "string_cache_codegen"
800
+ version = "0.6.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
803
+ dependencies = [
804
+ "phf_generator",
805
+ "phf_shared",
806
+ "proc-macro2",
807
+ "quote",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "syn"
812
+ version = "2.0.117"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
815
+ dependencies = [
816
+ "proc-macro2",
817
+ "quote",
818
+ "unicode-ident",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "tendril"
823
+ version = "0.5.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
826
+ dependencies = [
827
+ "new_debug_unreachable",
828
+ "utf-8",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "thiserror"
833
+ version = "2.0.18"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
836
+ dependencies = [
837
+ "thiserror-impl",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "thiserror-impl"
842
+ version = "2.0.18"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
845
+ dependencies = [
846
+ "proc-macro2",
847
+ "quote",
848
+ "syn",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "tiny-keccak"
853
+ version = "2.0.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
856
+ dependencies = [
857
+ "crunchy",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "tokio"
862
+ version = "1.52.3"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
865
+ dependencies = [
866
+ "pin-project-lite",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "unicode-ident"
871
+ version = "1.0.24"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
874
+
875
+ [[package]]
876
+ name = "utf-8"
877
+ version = "0.7.6"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
880
+
881
+ [[package]]
882
+ name = "utf8-width"
883
+ version = "0.1.8"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
886
+
887
+ [[package]]
888
+ name = "version_check"
889
+ version = "0.9.5"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
892
+
893
+ [[package]]
894
+ name = "wasi"
895
+ version = "0.11.1+wasi-snapshot-preview1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
898
+
899
+ [[package]]
900
+ name = "web_atoms"
901
+ version = "0.2.4"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
904
+ dependencies = [
905
+ "phf",
906
+ "phf_codegen",
907
+ "string_cache",
908
+ "string_cache_codegen",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "weezl"
913
+ version = "0.1.12"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
916
+
917
+ [[package]]
918
+ name = "windows-link"
919
+ version = "0.2.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
922
+
923
+ [[package]]
924
+ name = "zerocopy"
925
+ version = "0.8.50"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
928
+ dependencies = [
929
+ "zerocopy-derive",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "zerocopy-derive"
934
+ version = "0.8.50"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
937
+ dependencies = [
938
+ "proc-macro2",
939
+ "quote",
940
+ "syn",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "zmij"
945
+ version = "1.0.21"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
948
+
949
+ [[package]]
950
+ name = "zune-core"
951
+ version = "0.5.1"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
954
+
955
+ [[package]]
956
+ name = "zune-jpeg"
957
+ version = "0.5.15"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
960
+ dependencies = [
961
+ "zune-core",
962
+ ]