fast-h2m 0.1.0__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 (217) hide show
  1. fast_h2m-0.1.0/Cargo.lock +1210 -0
  2. fast_h2m-0.1.0/Cargo.toml +36 -0
  3. fast_h2m-0.1.0/PKG-INFO +43 -0
  4. fast_h2m-0.1.0/README.md +12 -0
  5. fast_h2m-0.1.0/crates/fast_h2m/Cargo.toml +57 -0
  6. fast_h2m-0.1.0/crates/fast_h2m/README.md +5 -0
  7. fast_h2m-0.1.0/crates/fast_h2m/benches/convert.rs +241 -0
  8. fast_h2m-0.1.0/crates/fast_h2m/build.rs +20 -0
  9. fast_h2m-0.1.0/crates/fast_h2m/examples/basic.rs +24 -0
  10. fast_h2m-0.1.0/crates/fast_h2m/examples/table.rs +25 -0
  11. fast_h2m-0.1.0/crates/fast_h2m/examples/test_deser.rs +13 -0
  12. fast_h2m-0.1.0/crates/fast_h2m/examples/test_escape.rs +58 -0
  13. fast_h2m-0.1.0/crates/fast_h2m/examples/test_inline_formatting.rs +114 -0
  14. fast_h2m-0.1.0/crates/fast_h2m/examples/test_lists.rs +39 -0
  15. fast_h2m-0.1.0/crates/fast_h2m/examples/test_semantic_tags.rs +89 -0
  16. fast_h2m-0.1.0/crates/fast_h2m/examples/test_tables.rs +100 -0
  17. fast_h2m-0.1.0/crates/fast_h2m/examples/test_task_lists.rs +61 -0
  18. fast_h2m-0.1.0/crates/fast_h2m/examples/test_whitespace.rs +34 -0
  19. fast_h2m-0.1.0/crates/fast_h2m/src/convert_api.rs +569 -0
  20. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/blockquote.rs +184 -0
  21. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/container.rs +131 -0
  22. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/div.rs +170 -0
  23. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/heading.rs +436 -0
  24. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/horizontal_rule.rs +106 -0
  25. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/line_break.rs +88 -0
  26. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/mod.rs +10 -0
  27. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/paragraph.rs +162 -0
  28. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/preformatted.rs +323 -0
  29. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/builder.rs +492 -0
  30. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/caption.rs +52 -0
  31. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/cell.rs +271 -0
  32. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/cells.rs +385 -0
  33. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/layout.rs +61 -0
  34. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/mod.rs +284 -0
  35. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/scanner.rs +150 -0
  36. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/table/utils.rs +33 -0
  37. fast_h2m-0.1.0/crates/fast_h2m/src/converter/block/unknown.rs +150 -0
  38. fast_h2m-0.1.0/crates/fast_h2m/src/converter/context.rs +213 -0
  39. fast_h2m-0.1.0/crates/fast_h2m/src/converter/dom_context.rs +603 -0
  40. fast_h2m-0.1.0/crates/fast_h2m/src/converter/form/elements.rs +995 -0
  41. fast_h2m-0.1.0/crates/fast_h2m/src/converter/form/mod.rs +91 -0
  42. fast_h2m-0.1.0/crates/fast_h2m/src/converter/format/djot.rs +64 -0
  43. fast_h2m-0.1.0/crates/fast_h2m/src/converter/format/markdown.rs +59 -0
  44. fast_h2m-0.1.0/crates/fast_h2m/src/converter/format/mod.rs +43 -0
  45. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/blockquote.rs +179 -0
  46. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/code_block.rs +452 -0
  47. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/graphic.rs +243 -0
  48. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/image.rs +370 -0
  49. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/link.rs +334 -0
  50. fast_h2m-0.1.0/crates/fast_h2m/src/converter/handlers/mod.rs +26 -0
  51. fast_h2m-0.1.0/crates/fast_h2m/src/converter/head_metadata.rs +271 -0
  52. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/code.rs +335 -0
  53. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/emphasis.rs +406 -0
  54. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/link.rs +692 -0
  55. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/mod.rs +274 -0
  56. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/ruby.rs +388 -0
  57. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/semantic/marks.rs +698 -0
  58. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/semantic/mod.rs +120 -0
  59. fast_h2m-0.1.0/crates/fast_h2m/src/converter/inline/semantic/typography.rs +672 -0
  60. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/definition.rs +256 -0
  61. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/item.rs +386 -0
  62. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/mod.rs +79 -0
  63. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/ordered.rs +200 -0
  64. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/unordered.rs +194 -0
  65. fast_h2m-0.1.0/crates/fast_h2m/src/converter/list/utils.rs +346 -0
  66. fast_h2m-0.1.0/crates/fast_h2m/src/converter/main.rs +869 -0
  67. fast_h2m-0.1.0/crates/fast_h2m/src/converter/main_helpers.rs +536 -0
  68. fast_h2m-0.1.0/crates/fast_h2m/src/converter/media/embedded.rs +425 -0
  69. fast_h2m-0.1.0/crates/fast_h2m/src/converter/media/graphic.rs +5 -0
  70. fast_h2m-0.1.0/crates/fast_h2m/src/converter/media/image.rs +184 -0
  71. fast_h2m-0.1.0/crates/fast_h2m/src/converter/media/mod.rs +146 -0
  72. fast_h2m-0.1.0/crates/fast_h2m/src/converter/media/svg.rs +289 -0
  73. fast_h2m-0.1.0/crates/fast_h2m/src/converter/metadata.rs +243 -0
  74. fast_h2m-0.1.0/crates/fast_h2m/src/converter/mod.rs +159 -0
  75. fast_h2m-0.1.0/crates/fast_h2m/src/converter/plain_text.rs +541 -0
  76. fast_h2m-0.1.0/crates/fast_h2m/src/converter/preprocessing_helpers.rs +210 -0
  77. fast_h2m-0.1.0/crates/fast_h2m/src/converter/prescan.rs +390 -0
  78. fast_h2m-0.1.0/crates/fast_h2m/src/converter/reference_collector.rs +70 -0
  79. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/attributes.rs +366 -0
  80. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/definition_list.rs +343 -0
  81. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/figure.rs +436 -0
  82. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/mod.rs +157 -0
  83. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/sectioning.rs +101 -0
  84. fast_h2m-0.1.0/crates/fast_h2m/src/converter/semantic/summary.rs +359 -0
  85. fast_h2m-0.1.0/crates/fast_h2m/src/converter/text/mod.rs +8 -0
  86. fast_h2m-0.1.0/crates/fast_h2m/src/converter/text/processing.rs +56 -0
  87. fast_h2m-0.1.0/crates/fast_h2m/src/converter/text_node.rs +286 -0
  88. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/bail.rs +133 -0
  89. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/mod.rs +77 -0
  90. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/parse.rs +178 -0
  91. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/router.rs +153 -0
  92. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/scanner.rs +1736 -0
  93. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/spec_rules.rs +126 -0
  94. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/state.rs +168 -0
  95. fast_h2m-0.1.0/crates/fast_h2m/src/converter/tier1/tags.rs +423 -0
  96. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/attributes.rs +161 -0
  97. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/caching.rs +93 -0
  98. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/content.rs +294 -0
  99. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/mod.rs +17 -0
  100. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/preprocessing.rs +1391 -0
  101. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/serialization.rs +127 -0
  102. fast_h2m-0.1.0/crates/fast_h2m/src/converter/utility/siblings.rs +106 -0
  103. fast_h2m-0.1.0/crates/fast_h2m/src/converter/visitor_hooks.rs +189 -0
  104. fast_h2m-0.1.0/crates/fast_h2m/src/error.rs +43 -0
  105. fast_h2m-0.1.0/crates/fast_h2m/src/exports.rs +26 -0
  106. fast_h2m-0.1.0/crates/fast_h2m/src/inline_images.rs +345 -0
  107. fast_h2m-0.1.0/crates/fast_h2m/src/lib.rs +129 -0
  108. fast_h2m-0.1.0/crates/fast_h2m/src/metadata/collector.rs +470 -0
  109. fast_h2m-0.1.0/crates/fast_h2m/src/metadata/config.rs +415 -0
  110. fast_h2m-0.1.0/crates/fast_h2m/src/metadata/extraction.rs +436 -0
  111. fast_h2m-0.1.0/crates/fast_h2m/src/metadata/mod.rs +314 -0
  112. fast_h2m-0.1.0/crates/fast_h2m/src/metadata/types.rs +476 -0
  113. fast_h2m-0.1.0/crates/fast_h2m/src/options/conversion.rs +939 -0
  114. fast_h2m-0.1.0/crates/fast_h2m/src/options/inline_image.rs +111 -0
  115. fast_h2m-0.1.0/crates/fast_h2m/src/options/mod.rs +23 -0
  116. fast_h2m-0.1.0/crates/fast_h2m/src/options/preprocessing.rs +221 -0
  117. fast_h2m-0.1.0/crates/fast_h2m/src/options/validation.rs +465 -0
  118. fast_h2m-0.1.0/crates/fast_h2m/src/prelude.rs +31 -0
  119. fast_h2m-0.1.0/crates/fast_h2m/src/rcdom.rs +515 -0
  120. fast_h2m-0.1.0/crates/fast_h2m/src/simd_scan.rs +248 -0
  121. fast_h2m-0.1.0/crates/fast_h2m/src/text.rs +421 -0
  122. fast_h2m-0.1.0/crates/fast_h2m/src/tl_types.rs +4 -0
  123. fast_h2m-0.1.0/crates/fast_h2m/src/types/document.rs +228 -0
  124. fast_h2m-0.1.0/crates/fast_h2m/src/types/mod.rs +17 -0
  125. fast_h2m-0.1.0/crates/fast_h2m/src/types/result.rs +64 -0
  126. fast_h2m-0.1.0/crates/fast_h2m/src/types/structure_builder.rs +839 -0
  127. fast_h2m-0.1.0/crates/fast_h2m/src/types/structure_collector.rs +503 -0
  128. fast_h2m-0.1.0/crates/fast_h2m/src/types/tables.rs +65 -0
  129. fast_h2m-0.1.0/crates/fast_h2m/src/types/warnings.rs +47 -0
  130. fast_h2m-0.1.0/crates/fast_h2m/src/validation.rs +181 -0
  131. fast_h2m-0.1.0/crates/fast_h2m/src/visitor/default_impl.rs +65 -0
  132. fast_h2m-0.1.0/crates/fast_h2m/src/visitor/mod.rs +41 -0
  133. fast_h2m-0.1.0/crates/fast_h2m/src/visitor/traits.rs +464 -0
  134. fast_h2m-0.1.0/crates/fast_h2m/src/visitor/types.rs +319 -0
  135. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers/helpers/callbacks/mod.rs +9 -0
  136. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers/helpers/content.rs +126 -0
  137. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers/helpers/mod.rs +27 -0
  138. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers/helpers/state.rs +110 -0
  139. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers/helpers/traversal.rs +249 -0
  140. fast_h2m-0.1.0/crates/fast_h2m/src/visitor_helpers.rs +607 -0
  141. fast_h2m-0.1.0/crates/fast_h2m/src/wrapper/sync.rs +473 -0
  142. fast_h2m-0.1.0/crates/fast_h2m/src/wrapper/utils.rs +307 -0
  143. fast_h2m-0.1.0/crates/fast_h2m/src/wrapper.rs +9 -0
  144. fast_h2m-0.1.0/crates/fast_h2m/tests/br_in_inline_test.rs +87 -0
  145. fast_h2m-0.1.0/crates/fast_h2m/tests/compact_tables_test.rs +187 -0
  146. fast_h2m-0.1.0/crates/fast_h2m/tests/djot_output_test.rs +172 -0
  147. fast_h2m-0.1.0/crates/fast_h2m/tests/exclude_selectors_test.rs +144 -0
  148. fast_h2m-0.1.0/crates/fast_h2m/tests/integration_test.rs +656 -0
  149. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_121_regressions.rs +55 -0
  150. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_127_regressions.rs +66 -0
  151. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_128_regressions.rs +17 -0
  152. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_131_regressions.rs +44 -0
  153. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_134_regressions.rs +44 -0
  154. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_139_regressions.rs +26 -0
  155. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_140_regressions.rs +200 -0
  156. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_143_regressions.rs +104 -0
  157. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_145_regressions.rs +139 -0
  158. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_146_regressions.rs +144 -0
  159. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_176_regressions.rs +62 -0
  160. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_190_regressions.rs +132 -0
  161. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_199_regressions.rs +20 -0
  162. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_200_regressions.rs +62 -0
  163. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_212_regressions.rs +74 -0
  164. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_216_217_regressions.rs +87 -0
  165. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_336_regressions.rs +74 -0
  166. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_339_regressions.rs +98 -0
  167. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_347_regressions.rs +154 -0
  168. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_348_visitor_plain.rs +92 -0
  169. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_391_xhtml_self_closing.rs +72 -0
  170. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_396_backticks_blank_line.rs +47 -0
  171. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_397_strict_autolink.rs +56 -0
  172. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_398_convert_into_option.rs +71 -0
  173. fast_h2m-0.1.0/crates/fast_h2m/tests/issue_399_md012_blank_lines.rs +30 -0
  174. fast_h2m-0.1.0/crates/fast_h2m/tests/json_ld_script_extraction.rs +54 -0
  175. fast_h2m-0.1.0/crates/fast_h2m/tests/lists_test.rs +199 -0
  176. fast_h2m-0.1.0/crates/fast_h2m/tests/nested_list_duplication.rs +66 -0
  177. fast_h2m-0.1.0/crates/fast_h2m/tests/plain_output_test.rs +332 -0
  178. fast_h2m-0.1.0/crates/fast_h2m/tests/preprocessing_tests.rs +61 -0
  179. fast_h2m-0.1.0/crates/fast_h2m/tests/reference_links_test.rs +175 -0
  180. fast_h2m-0.1.0/crates/fast_h2m/tests/regression_379.rs +29 -0
  181. fast_h2m-0.1.0/crates/fast_h2m/tests/regression_380.rs +156 -0
  182. fast_h2m-0.1.0/crates/fast_h2m/tests/sectioning_elements_test.rs +159 -0
  183. fast_h2m-0.1.0/crates/fast_h2m/tests/skip_images_test.rs +685 -0
  184. fast_h2m-0.1.0/crates/fast_h2m/tests/tables_test.rs +784 -0
  185. fast_h2m-0.1.0/crates/fast_h2m/tests/test_custom_elements.rs +46 -0
  186. fast_h2m-0.1.0/crates/fast_h2m/tests/test_enum_serde.rs +13 -0
  187. fast_h2m-0.1.0/crates/fast_h2m/tests/test_highlight_bold.rs +41 -0
  188. fast_h2m-0.1.0/crates/fast_h2m/tests/test_issue_187.rs +252 -0
  189. fast_h2m-0.1.0/crates/fast_h2m/tests/test_issue_218.rs +70 -0
  190. fast_h2m-0.1.0/crates/fast_h2m/tests/test_issue_277.rs +80 -0
  191. fast_h2m-0.1.0/crates/fast_h2m/tests/test_max_depth.rs +82 -0
  192. fast_h2m-0.1.0/crates/fast_h2m/tests/test_nested_simple.rs +50 -0
  193. fast_h2m-0.1.0/crates/fast_h2m/tests/test_script_style_stripping.rs +447 -0
  194. fast_h2m-0.1.0/crates/fast_h2m/tests/test_spa_bisect.rs +38 -0
  195. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_bail_test.rs +391 -0
  196. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_bail_variants_test.rs +173 -0
  197. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_byte_equality_test.rs +222 -0
  198. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_entity_bail_test.rs +177 -0
  199. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_keep_inline_images_test.rs +211 -0
  200. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_metadata_test.rs +263 -0
  201. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_property_test.rs +164 -0
  202. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_scanner_test.rs +267 -0
  203. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_spec_rules_test.rs +173 -0
  204. fast_h2m-0.1.0/crates/fast_h2m/tests/tier1_tables_test.rs +399 -0
  205. fast_h2m-0.1.0/crates/fast_h2m/tests/utf8_dedent_regression_test.rs +162 -0
  206. fast_h2m-0.1.0/crates/fast_h2m/tests/visitor_code_integration_test.rs +132 -0
  207. fast_h2m-0.1.0/crates/fast_h2m/tests/visitor_integration_test.rs +1400 -0
  208. fast_h2m-0.1.0/crates/fast_h2m/tests/xml_tables_test.rs +414 -0
  209. fast_h2m-0.1.0/crates/fast_h2m_py/Cargo.toml +27 -0
  210. fast_h2m-0.1.0/crates/fast_h2m_py/README.md +12 -0
  211. fast_h2m-0.1.0/crates/fast_h2m_py/fast_h2m.pyi +8 -0
  212. fast_h2m-0.1.0/crates/fast_h2m_py/py.typed +1 -0
  213. fast_h2m-0.1.0/crates/fast_h2m_py/src/lib.rs +65 -0
  214. fast_h2m-0.1.0/crates/fast_h2m_py/tests/test_bindings.py +43 -0
  215. fast_h2m-0.1.0/fast_h2m.pyi +8 -0
  216. fast_h2m-0.1.0/py.typed +1 -0
  217. fast_h2m-0.1.0/pyproject.toml +42 -0
@@ -0,0 +1,1210 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
46
+
47
+ [[package]]
48
+ name = "base64"
49
+ version = "0.22.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
52
+
53
+ [[package]]
54
+ name = "bitflags"
55
+ version = "2.12.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
58
+
59
+ [[package]]
60
+ name = "bumpalo"
61
+ version = "3.20.3"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
64
+
65
+ [[package]]
66
+ name = "bytemuck"
67
+ version = "1.25.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
70
+
71
+ [[package]]
72
+ name = "byteorder-lite"
73
+ version = "0.1.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
76
+
77
+ [[package]]
78
+ name = "cast"
79
+ version = "0.3.0"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
82
+
83
+ [[package]]
84
+ name = "cc"
85
+ version = "1.2.63"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
88
+ dependencies = [
89
+ "find-msvc-tools",
90
+ "shlex",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "cfg-if"
95
+ version = "1.0.4"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
98
+
99
+ [[package]]
100
+ name = "ciborium"
101
+ version = "0.2.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
104
+ dependencies = [
105
+ "ciborium-io",
106
+ "ciborium-ll",
107
+ "serde",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "ciborium-io"
112
+ version = "0.2.2"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
115
+
116
+ [[package]]
117
+ name = "ciborium-ll"
118
+ version = "0.2.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
121
+ dependencies = [
122
+ "ciborium-io",
123
+ "half",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "clap"
128
+ version = "4.6.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
131
+ dependencies = [
132
+ "clap_builder",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "clap_builder"
137
+ version = "4.6.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
140
+ dependencies = [
141
+ "anstyle",
142
+ "clap_lex",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "clap_lex"
147
+ version = "1.1.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
150
+
151
+ [[package]]
152
+ name = "color_quant"
153
+ version = "1.1.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
156
+
157
+ [[package]]
158
+ name = "crc32fast"
159
+ version = "1.5.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
162
+ dependencies = [
163
+ "cfg-if",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "criterion"
168
+ version = "0.8.2"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
171
+ dependencies = [
172
+ "alloca",
173
+ "anes",
174
+ "cast",
175
+ "ciborium",
176
+ "clap",
177
+ "criterion-plot",
178
+ "itertools",
179
+ "num-traits",
180
+ "oorandom",
181
+ "page_size",
182
+ "plotters",
183
+ "rayon",
184
+ "regex",
185
+ "serde",
186
+ "serde_json",
187
+ "tinytemplate",
188
+ "walkdir",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "criterion-plot"
193
+ version = "0.8.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
196
+ dependencies = [
197
+ "cast",
198
+ "itertools",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "crossbeam-deque"
203
+ version = "0.8.6"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
206
+ dependencies = [
207
+ "crossbeam-epoch",
208
+ "crossbeam-utils",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "crossbeam-epoch"
213
+ version = "0.9.18"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
216
+ dependencies = [
217
+ "crossbeam-utils",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "crossbeam-utils"
222
+ version = "0.8.21"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
225
+
226
+ [[package]]
227
+ name = "crunchy"
228
+ version = "0.2.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
231
+
232
+ [[package]]
233
+ name = "either"
234
+ version = "1.16.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
237
+
238
+ [[package]]
239
+ name = "fast_h2m"
240
+ version = "0.1.0"
241
+ dependencies = [
242
+ "base64",
243
+ "bitflags",
244
+ "criterion",
245
+ "html-escape",
246
+ "html5ever",
247
+ "image",
248
+ "memchr",
249
+ "phf 0.11.3",
250
+ "rustedbytes-tl",
251
+ "serde",
252
+ "serde_json",
253
+ "thiserror",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "fast_h2m_py"
258
+ version = "0.1.0"
259
+ dependencies = [
260
+ "fast_h2m",
261
+ "pyo3",
262
+ "serde_json",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "fastrand"
267
+ version = "2.4.1"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
270
+
271
+ [[package]]
272
+ name = "fdeflate"
273
+ version = "0.3.7"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
276
+ dependencies = [
277
+ "simd-adler32",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "find-msvc-tools"
282
+ version = "0.1.9"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
285
+
286
+ [[package]]
287
+ name = "flate2"
288
+ version = "1.1.9"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
291
+ dependencies = [
292
+ "crc32fast",
293
+ "miniz_oxide",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "futures-core"
298
+ version = "0.3.32"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
301
+
302
+ [[package]]
303
+ name = "futures-task"
304
+ version = "0.3.32"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
307
+
308
+ [[package]]
309
+ name = "futures-util"
310
+ version = "0.3.32"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
313
+ dependencies = [
314
+ "futures-core",
315
+ "futures-task",
316
+ "pin-project-lite",
317
+ "slab",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "gif"
322
+ version = "0.14.2"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
325
+ dependencies = [
326
+ "color_quant",
327
+ "weezl",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "half"
332
+ version = "2.7.1"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
335
+ dependencies = [
336
+ "cfg-if",
337
+ "crunchy",
338
+ "zerocopy",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "heck"
343
+ version = "0.5.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
346
+
347
+ [[package]]
348
+ name = "html-escape"
349
+ version = "0.2.13"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
352
+ dependencies = [
353
+ "utf8-width",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "html5ever"
358
+ version = "0.39.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
361
+ dependencies = [
362
+ "log",
363
+ "markup5ever",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "image"
368
+ version = "0.25.10"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
371
+ dependencies = [
372
+ "bytemuck",
373
+ "byteorder-lite",
374
+ "color_quant",
375
+ "gif",
376
+ "image-webp",
377
+ "moxcms",
378
+ "num-traits",
379
+ "png",
380
+ "zune-core",
381
+ "zune-jpeg",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "image-webp"
386
+ version = "0.2.4"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
389
+ dependencies = [
390
+ "byteorder-lite",
391
+ "quick-error",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "itertools"
396
+ version = "0.13.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
399
+ dependencies = [
400
+ "either",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "itoa"
405
+ version = "1.0.18"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
408
+
409
+ [[package]]
410
+ name = "js-sys"
411
+ version = "0.3.99"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
414
+ dependencies = [
415
+ "cfg-if",
416
+ "futures-util",
417
+ "once_cell",
418
+ "wasm-bindgen",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "libc"
423
+ version = "0.2.186"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
426
+
427
+ [[package]]
428
+ name = "lock_api"
429
+ version = "0.4.14"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
432
+ dependencies = [
433
+ "scopeguard",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "log"
438
+ version = "0.4.31"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
441
+
442
+ [[package]]
443
+ name = "markup5ever"
444
+ version = "0.39.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
447
+ dependencies = [
448
+ "log",
449
+ "tendril",
450
+ "web_atoms",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "memchr"
455
+ version = "2.8.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
458
+
459
+ [[package]]
460
+ name = "miniz_oxide"
461
+ version = "0.8.9"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
464
+ dependencies = [
465
+ "adler2",
466
+ "simd-adler32",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "moxcms"
471
+ version = "0.8.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
474
+ dependencies = [
475
+ "num-traits",
476
+ "pxfm",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "new_debug_unreachable"
481
+ version = "1.0.6"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
484
+
485
+ [[package]]
486
+ name = "num-traits"
487
+ version = "0.2.19"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
490
+ dependencies = [
491
+ "autocfg",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "once_cell"
496
+ version = "1.21.4"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
499
+
500
+ [[package]]
501
+ name = "oorandom"
502
+ version = "11.1.5"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
505
+
506
+ [[package]]
507
+ name = "page_size"
508
+ version = "0.6.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
511
+ dependencies = [
512
+ "libc",
513
+ "winapi",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "parking_lot"
518
+ version = "0.12.5"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
521
+ dependencies = [
522
+ "lock_api",
523
+ "parking_lot_core",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "parking_lot_core"
528
+ version = "0.9.12"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
531
+ dependencies = [
532
+ "cfg-if",
533
+ "libc",
534
+ "redox_syscall",
535
+ "smallvec",
536
+ "windows-link",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "phf"
541
+ version = "0.11.3"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
544
+ dependencies = [
545
+ "phf_macros",
546
+ "phf_shared 0.11.3",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "phf"
551
+ version = "0.13.1"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
554
+ dependencies = [
555
+ "phf_shared 0.13.1",
556
+ "serde",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "phf_codegen"
561
+ version = "0.13.1"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
564
+ dependencies = [
565
+ "phf_generator 0.13.1",
566
+ "phf_shared 0.13.1",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "phf_generator"
571
+ version = "0.11.3"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
574
+ dependencies = [
575
+ "phf_shared 0.11.3",
576
+ "rand",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "phf_generator"
581
+ version = "0.13.1"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
584
+ dependencies = [
585
+ "fastrand",
586
+ "phf_shared 0.13.1",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "phf_macros"
591
+ version = "0.11.3"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
594
+ dependencies = [
595
+ "phf_generator 0.11.3",
596
+ "phf_shared 0.11.3",
597
+ "proc-macro2",
598
+ "quote",
599
+ "syn",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "phf_shared"
604
+ version = "0.11.3"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
607
+ dependencies = [
608
+ "siphasher",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "phf_shared"
613
+ version = "0.13.1"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
616
+ dependencies = [
617
+ "siphasher",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "pin-project-lite"
622
+ version = "0.2.17"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
625
+
626
+ [[package]]
627
+ name = "plotters"
628
+ version = "0.3.7"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
631
+ dependencies = [
632
+ "num-traits",
633
+ "plotters-backend",
634
+ "plotters-svg",
635
+ "wasm-bindgen",
636
+ "web-sys",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "plotters-backend"
641
+ version = "0.3.7"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
644
+
645
+ [[package]]
646
+ name = "plotters-svg"
647
+ version = "0.3.7"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
650
+ dependencies = [
651
+ "plotters-backend",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "png"
656
+ version = "0.18.1"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
659
+ dependencies = [
660
+ "bitflags",
661
+ "crc32fast",
662
+ "fdeflate",
663
+ "flate2",
664
+ "miniz_oxide",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "portable-atomic"
669
+ version = "1.13.1"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
672
+
673
+ [[package]]
674
+ name = "precomputed-hash"
675
+ version = "0.1.1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
678
+
679
+ [[package]]
680
+ name = "proc-macro2"
681
+ version = "1.0.106"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
684
+ dependencies = [
685
+ "unicode-ident",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "pxfm"
690
+ version = "0.1.29"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
693
+
694
+ [[package]]
695
+ name = "pyo3"
696
+ version = "0.28.3"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
699
+ dependencies = [
700
+ "libc",
701
+ "once_cell",
702
+ "portable-atomic",
703
+ "pyo3-build-config",
704
+ "pyo3-ffi",
705
+ "pyo3-macros",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "pyo3-build-config"
710
+ version = "0.28.3"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
713
+ dependencies = [
714
+ "target-lexicon",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "pyo3-ffi"
719
+ version = "0.28.3"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
722
+ dependencies = [
723
+ "libc",
724
+ "pyo3-build-config",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "pyo3-macros"
729
+ version = "0.28.3"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
732
+ dependencies = [
733
+ "proc-macro2",
734
+ "pyo3-macros-backend",
735
+ "quote",
736
+ "syn",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "pyo3-macros-backend"
741
+ version = "0.28.3"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
744
+ dependencies = [
745
+ "heck",
746
+ "proc-macro2",
747
+ "pyo3-build-config",
748
+ "quote",
749
+ "syn",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "quick-error"
754
+ version = "2.0.1"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
757
+
758
+ [[package]]
759
+ name = "quote"
760
+ version = "1.0.45"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
763
+ dependencies = [
764
+ "proc-macro2",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "rand"
769
+ version = "0.8.6"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
772
+ dependencies = [
773
+ "rand_core",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "rand_core"
778
+ version = "0.6.4"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
781
+
782
+ [[package]]
783
+ name = "rayon"
784
+ version = "1.12.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
787
+ dependencies = [
788
+ "either",
789
+ "rayon-core",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "rayon-core"
794
+ version = "1.13.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
797
+ dependencies = [
798
+ "crossbeam-deque",
799
+ "crossbeam-utils",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "redox_syscall"
804
+ version = "0.5.18"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
807
+ dependencies = [
808
+ "bitflags",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "regex"
813
+ version = "1.12.3"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
816
+ dependencies = [
817
+ "aho-corasick",
818
+ "memchr",
819
+ "regex-automata",
820
+ "regex-syntax",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "regex-automata"
825
+ version = "0.4.14"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
828
+ dependencies = [
829
+ "aho-corasick",
830
+ "memchr",
831
+ "regex-syntax",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "regex-syntax"
836
+ version = "0.8.10"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
839
+
840
+ [[package]]
841
+ name = "rustedbytes-tl"
842
+ version = "0.2.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "163b30fcb9ae7baa969783908fd2f36143b535fc05a15572bd9d43d9adea0d45"
845
+ dependencies = [
846
+ "memchr",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "rustversion"
851
+ version = "1.0.22"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
854
+
855
+ [[package]]
856
+ name = "same-file"
857
+ version = "1.0.6"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
860
+ dependencies = [
861
+ "winapi-util",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "scopeguard"
866
+ version = "1.2.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
869
+
870
+ [[package]]
871
+ name = "serde"
872
+ version = "1.0.228"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
875
+ dependencies = [
876
+ "serde_core",
877
+ "serde_derive",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "serde_core"
882
+ version = "1.0.228"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
885
+ dependencies = [
886
+ "serde_derive",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "serde_derive"
891
+ version = "1.0.228"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
894
+ dependencies = [
895
+ "proc-macro2",
896
+ "quote",
897
+ "syn",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "serde_json"
902
+ version = "1.0.150"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
905
+ dependencies = [
906
+ "itoa",
907
+ "memchr",
908
+ "serde",
909
+ "serde_core",
910
+ "zmij",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "shlex"
915
+ version = "2.0.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
918
+
919
+ [[package]]
920
+ name = "simd-adler32"
921
+ version = "0.3.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
924
+
925
+ [[package]]
926
+ name = "siphasher"
927
+ version = "1.0.3"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
930
+
931
+ [[package]]
932
+ name = "slab"
933
+ version = "0.4.12"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
936
+
937
+ [[package]]
938
+ name = "smallvec"
939
+ version = "1.15.1"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
942
+
943
+ [[package]]
944
+ name = "string_cache"
945
+ version = "0.9.0"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
948
+ dependencies = [
949
+ "new_debug_unreachable",
950
+ "parking_lot",
951
+ "phf_shared 0.13.1",
952
+ "precomputed-hash",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "string_cache_codegen"
957
+ version = "0.6.1"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
960
+ dependencies = [
961
+ "phf_generator 0.13.1",
962
+ "phf_shared 0.13.1",
963
+ "proc-macro2",
964
+ "quote",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "syn"
969
+ version = "2.0.117"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
972
+ dependencies = [
973
+ "proc-macro2",
974
+ "quote",
975
+ "unicode-ident",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "target-lexicon"
980
+ version = "0.13.5"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
983
+
984
+ [[package]]
985
+ name = "tendril"
986
+ version = "0.5.0"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
989
+ dependencies = [
990
+ "new_debug_unreachable",
991
+ "utf-8",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "thiserror"
996
+ version = "2.0.18"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
999
+ dependencies = [
1000
+ "thiserror-impl",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "thiserror-impl"
1005
+ version = "2.0.18"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1008
+ dependencies = [
1009
+ "proc-macro2",
1010
+ "quote",
1011
+ "syn",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "tinytemplate"
1016
+ version = "1.2.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1019
+ dependencies = [
1020
+ "serde",
1021
+ "serde_json",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "unicode-ident"
1026
+ version = "1.0.24"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1029
+
1030
+ [[package]]
1031
+ name = "utf-8"
1032
+ version = "0.7.6"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1035
+
1036
+ [[package]]
1037
+ name = "utf8-width"
1038
+ version = "0.1.8"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
1041
+
1042
+ [[package]]
1043
+ name = "walkdir"
1044
+ version = "2.5.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1047
+ dependencies = [
1048
+ "same-file",
1049
+ "winapi-util",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "wasm-bindgen"
1054
+ version = "0.2.122"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1057
+ dependencies = [
1058
+ "cfg-if",
1059
+ "once_cell",
1060
+ "rustversion",
1061
+ "wasm-bindgen-macro",
1062
+ "wasm-bindgen-shared",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "wasm-bindgen-macro"
1067
+ version = "0.2.122"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1070
+ dependencies = [
1071
+ "quote",
1072
+ "wasm-bindgen-macro-support",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "wasm-bindgen-macro-support"
1077
+ version = "0.2.122"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1080
+ dependencies = [
1081
+ "bumpalo",
1082
+ "proc-macro2",
1083
+ "quote",
1084
+ "syn",
1085
+ "wasm-bindgen-shared",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "wasm-bindgen-shared"
1090
+ version = "0.2.122"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1093
+ dependencies = [
1094
+ "unicode-ident",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "web-sys"
1099
+ version = "0.3.99"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
1102
+ dependencies = [
1103
+ "js-sys",
1104
+ "wasm-bindgen",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "web_atoms"
1109
+ version = "0.2.4"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
1112
+ dependencies = [
1113
+ "phf 0.13.1",
1114
+ "phf_codegen",
1115
+ "string_cache",
1116
+ "string_cache_codegen",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "weezl"
1121
+ version = "0.1.12"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
1124
+
1125
+ [[package]]
1126
+ name = "winapi"
1127
+ version = "0.3.9"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1130
+ dependencies = [
1131
+ "winapi-i686-pc-windows-gnu",
1132
+ "winapi-x86_64-pc-windows-gnu",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "winapi-i686-pc-windows-gnu"
1137
+ version = "0.4.0"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1140
+
1141
+ [[package]]
1142
+ name = "winapi-util"
1143
+ version = "0.1.11"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1146
+ dependencies = [
1147
+ "windows-sys",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "winapi-x86_64-pc-windows-gnu"
1152
+ version = "0.4.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1155
+
1156
+ [[package]]
1157
+ name = "windows-link"
1158
+ version = "0.2.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1161
+
1162
+ [[package]]
1163
+ name = "windows-sys"
1164
+ version = "0.61.2"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1167
+ dependencies = [
1168
+ "windows-link",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "zerocopy"
1173
+ version = "0.8.50"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
1176
+ dependencies = [
1177
+ "zerocopy-derive",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "zerocopy-derive"
1182
+ version = "0.8.50"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
1185
+ dependencies = [
1186
+ "proc-macro2",
1187
+ "quote",
1188
+ "syn",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "zmij"
1193
+ version = "1.0.21"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1196
+
1197
+ [[package]]
1198
+ name = "zune-core"
1199
+ version = "0.5.1"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
1202
+
1203
+ [[package]]
1204
+ name = "zune-jpeg"
1205
+ version = "0.5.15"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
1208
+ dependencies = [
1209
+ "zune-core",
1210
+ ]