hwp-ingest 0.1.0a1__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 (481) hide show
  1. hwp_ingest-0.1.0a1/Cargo.lock +1849 -0
  2. hwp_ingest-0.1.0a1/Cargo.toml +14 -0
  3. hwp_ingest-0.1.0a1/LICENSE +21 -0
  4. hwp_ingest-0.1.0a1/NOTICE +19 -0
  5. hwp_ingest-0.1.0a1/PKG-INFO +205 -0
  6. hwp_ingest-0.1.0a1/README.md +179 -0
  7. hwp_ingest-0.1.0a1/THIRD_PARTY_LICENSES.md +198 -0
  8. hwp_ingest-0.1.0a1/crates/hwp-ingest/Cargo.toml +12 -0
  9. hwp_ingest-0.1.0a1/crates/hwp-ingest/src/lib.rs +137 -0
  10. hwp_ingest-0.1.0a1/crates/hwp-ingest/tests/conversion.rs +64 -0
  11. hwp_ingest-0.1.0a1/crates/hwp-ingest-python/Cargo.toml +15 -0
  12. hwp_ingest-0.1.0a1/crates/hwp-ingest-python/src/lib.rs +100 -0
  13. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/Cargo.toml +13 -0
  14. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/src/layout.rs +4 -0
  15. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/src/lib.rs +40 -0
  16. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/src/parse.rs +25 -0
  17. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/src/pdf_backend.rs +156 -0
  18. hwp_ingest-0.1.0a1/crates/hwp-ingest-rhwp-adapter/src/render.rs +36 -0
  19. hwp_ingest-0.1.0a1/licenses/rhwp-MIT.txt +21 -0
  20. hwp_ingest-0.1.0a1/pyproject.toml +51 -0
  21. hwp_ingest-0.1.0a1/python/hwp_ingest/__init__.py +5 -0
  22. hwp_ingest-0.1.0a1/python/hwp_ingest/__init__.pyi +27 -0
  23. hwp_ingest-0.1.0a1/python/hwp_ingest/_facade.py +94 -0
  24. hwp_ingest-0.1.0a1/python/hwp_ingest/_native.pyi +54 -0
  25. hwp_ingest-0.1.0a1/python/hwp_ingest/py.typed +0 -0
  26. hwp_ingest-0.1.0a1/vendor/rhwp-subset/Cargo.toml +162 -0
  27. hwp_ingest-0.1.0a1/vendor/rhwp-subset/LICENSE +21 -0
  28. hwp_ingest-0.1.0a1/vendor/rhwp-subset/LICENSE.rhwp +21 -0
  29. hwp_ingest-0.1.0a1/vendor/rhwp-subset/NOTICE +16 -0
  30. hwp_ingest-0.1.0a1/vendor/rhwp-subset/README.vendor.md +33 -0
  31. hwp_ingest-0.1.0a1/vendor/rhwp-subset/THIRD_PARTY_LICENSES.md +185 -0
  32. hwp_ingest-0.1.0a1/vendor/rhwp-subset/THIRD_PARTY_LICENSES.rhwp.md +185 -0
  33. hwp_ingest-0.1.0a1/vendor/rhwp-subset/examples/pr599_png_gateway.rs +63 -0
  34. hwp_ingest-0.1.0a1/vendor/rhwp-subset/saved/blank2010.hwp +0 -0
  35. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_anchor_trace.rs +449 -0
  36. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_borderfill_diagonal_probe.rs +645 -0
  37. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_cell_header_probe.rs +936 -0
  38. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_contract_analyze.rs +1018 -0
  39. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_contract_probe.rs +736 -0
  40. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_ctrl_data_trace.rs +409 -0
  41. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_first_para_control_probe.rs +1421 -0
  42. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_inventory.rs +572 -0
  43. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_inventory_diff.rs +2250 -0
  44. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_mel_personnel_probe.rs +842 -0
  45. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwp5_table_probe.rs +691 -0
  46. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/hwpx_roundtrip_batch.rs +577 -0
  47. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/diagnostics/mod.rs +14 -0
  48. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/builders/exam_paper.rs +357 -0
  49. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/builders/mod.rs +17 -0
  50. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/clipboard.rs +1704 -0
  51. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/document.rs +1223 -0
  52. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/footnote_ops.rs +690 -0
  53. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/formatting.rs +2106 -0
  54. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/header_footer_ops.rs +1485 -0
  55. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/html_import.rs +958 -0
  56. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/mod.rs +9 -0
  57. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/object_ops.rs +9839 -0
  58. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/table_ops.rs +2256 -0
  59. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/commands/text_editing.rs +3248 -0
  60. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/converters/common_obj_attr_writer.rs +400 -0
  61. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/converters/diagnostics.rs +234 -0
  62. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/converters/hwpx_to_hwp.rs +2652 -0
  63. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/converters/mod.rs +10 -0
  64. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/helpers.rs +1516 -0
  65. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/html_table_import.rs +939 -0
  66. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/mod.rs +263 -0
  67. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/bookmark_query.rs +362 -0
  68. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/cursor_nav.rs +2064 -0
  69. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/cursor_rect.rs +5018 -0
  70. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/doc_tree_nav.rs +1438 -0
  71. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/field_query.rs +1593 -0
  72. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/form_query.rs +406 -0
  73. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/mod.rs +8 -0
  74. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/rendering.rs +4283 -0
  75. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/queries/search_query.rs +501 -0
  76. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/table_calc/evaluator.rs +415 -0
  77. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/table_calc/mod.rs +18 -0
  78. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/table_calc/parser.rs +326 -0
  79. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/table_calc/tokenizer.rs +225 -0
  80. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/document_core/validation.rs +182 -0
  81. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/converter/device_context.rs +147 -0
  82. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/converter/mod.rs +10 -0
  83. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/converter/player.rs +445 -0
  84. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/converter/svg.rs +69 -0
  85. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/mod.rs +88 -0
  86. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/constants/mod.rs +6 -0
  87. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/constants/record_type.rs +106 -0
  88. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/mod.rs +318 -0
  89. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/header.rs +122 -0
  90. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/logbrush.rs +21 -0
  91. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/logfont.rs +65 -0
  92. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/logpen.rs +23 -0
  93. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/mod.rs +15 -0
  94. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/rectl.rs +64 -0
  95. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/objects/xform.rs +52 -0
  96. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/bitmap.rs +99 -0
  97. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/drawing.rs +44 -0
  98. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/header.rs +9 -0
  99. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/mod.rs +123 -0
  100. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/object.rs +48 -0
  101. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/path.rs +8 -0
  102. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/state.rs +39 -0
  103. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/parser/records/text.rs +110 -0
  104. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/emf/tests.rs +816 -0
  105. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/error.rs +78 -0
  106. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/lib.rs +47 -0
  107. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/main.rs +5146 -0
  108. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/bin_data.rs +98 -0
  109. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/control.rs +510 -0
  110. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/document.rs +638 -0
  111. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/event.rs +352 -0
  112. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/footnote.rs +324 -0
  113. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/header_footer.rs +117 -0
  114. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/image.rs +236 -0
  115. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/mod.rs +91 -0
  116. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/page.rs +387 -0
  117. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/paragraph/tests.rs +1216 -0
  118. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/paragraph.rs +1339 -0
  119. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/path.rs +60 -0
  120. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/shape.rs +837 -0
  121. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/style.rs +976 -0
  122. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/table/tests.rs +911 -0
  123. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/model/table.rs +1260 -0
  124. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ole_chart/ir.rs +72 -0
  125. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ole_chart/mod.rs +21 -0
  126. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ole_chart/parser.rs +568 -0
  127. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ole_chart/svg_renderer.rs +328 -0
  128. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ooxml_chart/mod.rs +115 -0
  129. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ooxml_chart/parser.rs +594 -0
  130. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/ooxml_chart/renderer.rs +986 -0
  131. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/builder.rs +1009 -0
  132. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/font.rs +298 -0
  133. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/json.rs +3762 -0
  134. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/layer_tree.rs +353 -0
  135. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/mod.rs +67 -0
  136. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/paint_op.rs +1428 -0
  137. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/profile.rs +9 -0
  138. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/replay_order.rs +239 -0
  139. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/resources.rs +361 -0
  140. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/schema.rs +51 -0
  141. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/text_shape.rs +654 -0
  142. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/text_v2.rs +1507 -0
  143. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/paint/text_variants.rs +701 -0
  144. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/bin_data.rs +91 -0
  145. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/body_text/tests.rs +720 -0
  146. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/body_text.rs +889 -0
  147. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/byte_reader.rs +261 -0
  148. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/cfb_reader.rs +1196 -0
  149. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/control/shape.rs +1114 -0
  150. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/control/tests.rs +668 -0
  151. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/control.rs +1020 -0
  152. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/crypto.rs +546 -0
  153. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/doc_info.rs +1264 -0
  154. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/header.rs +289 -0
  155. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/drawing.rs +895 -0
  156. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/encoding.rs +66 -0
  157. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/johab.rs +90 -0
  158. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/johab_map.rs +5900 -0
  159. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/mod.rs +3396 -0
  160. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/ole.rs +151 -0
  161. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/paragraph.rs +103 -0
  162. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/records.rs +465 -0
  163. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwp3/special_char.rs +210 -0
  164. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/doc_options_link_doc.bin +0 -0
  165. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/hwp_summary_information.bin +0 -0
  166. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/prvimage.bin +0 -0
  167. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/prvtext.bin +0 -0
  168. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/scripts_default_jscript.bin +0 -0
  169. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/blank2010_assets/scripts_jscript_version.bin +0 -0
  170. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/content.rs +325 -0
  171. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/contract_streams.rs +178 -0
  172. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/header.rs +2637 -0
  173. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/mod.rs +408 -0
  174. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/reader.rs +174 -0
  175. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/section.rs +6918 -0
  176. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/hwpx/utils.rs +199 -0
  177. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/ingest/mod.rs +28 -0
  178. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/ingest/schema.rs +195 -0
  179. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/mod.rs +1332 -0
  180. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/ole_container.rs +301 -0
  181. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/record.rs +228 -0
  182. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/parser/tags.rs +359 -0
  183. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/canvas.rs +763 -0
  184. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/canvaskit_policy.rs +1236 -0
  185. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer/line_breaking.rs +1256 -0
  186. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer/lineseg_compare.rs +300 -0
  187. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer/lineseg_compare_tests.rs +861 -0
  188. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer/re_sample_gen.rs +605 -0
  189. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer/tests.rs +979 -0
  190. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/composer.rs +1821 -0
  191. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/ast.rs +180 -0
  192. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/canvas_render.rs +553 -0
  193. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/layout.rs +1499 -0
  194. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/mod.rs +13 -0
  195. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/parser.rs +2836 -0
  196. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/svg_render.rs +864 -0
  197. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/symbols.rs +754 -0
  198. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation/tokenizer.rs +967 -0
  199. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/equation_tac_flow.rs +341 -0
  200. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/float_placement.rs +271 -0
  201. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/font_metrics_data.rs +45951 -0
  202. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/height_cursor.rs +2172 -0
  203. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/height_measurer.rs +2606 -0
  204. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/html.rs +669 -0
  205. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/image_resolver.rs +360 -0
  206. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layer_renderer.rs +2070 -0
  207. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/border_rendering.rs +837 -0
  208. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/integration_tests.rs +2192 -0
  209. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/paragraph_layout.rs +5895 -0
  210. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/picture_footnote.rs +1351 -0
  211. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/shape_layout.rs +3081 -0
  212. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/table_cell_content.rs +853 -0
  213. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/table_layout.rs +5019 -0
  214. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/table_partial.rs +1545 -0
  215. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/tests.rs +1536 -0
  216. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/text_measurement.rs +2480 -0
  217. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout/utils.rs +591 -0
  218. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/layout.rs +7730 -0
  219. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/mod.rs +1163 -0
  220. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/page_layout.rs +410 -0
  221. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/page_number.rs +296 -0
  222. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pagination/engine.rs +2800 -0
  223. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pagination/state.rs +252 -0
  224. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pagination/tests.rs +1177 -0
  225. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pagination.rs +754 -0
  226. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pdf.rs +172 -0
  227. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/pua_oldhangul.rs +5807 -0
  228. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/render_tree.rs +1665 -0
  229. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/scheduler.rs +495 -0
  230. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/equation_conv.rs +1007 -0
  231. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/font_lookup.rs +55 -0
  232. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/image_conv.rs +370 -0
  233. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/mod.rs +11 -0
  234. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/renderer.rs +3088 -0
  235. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/skia/text_replay.rs +795 -0
  236. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/style_resolver.rs +1390 -0
  237. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/svg/tests.rs +612 -0
  238. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/svg.rs +3643 -0
  239. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/svg_fragment.rs +281 -0
  240. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/svg_layer.rs +415 -0
  241. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/typeset.rs +12238 -0
  242. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/renderer/web_canvas.rs +3459 -0
  243. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/body_text.rs +1244 -0
  244. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/byte_writer.rs +242 -0
  245. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/cfb_writer/tests.rs +1784 -0
  246. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/cfb_writer.rs +199 -0
  247. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/control/tests.rs +507 -0
  248. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/control.rs +2610 -0
  249. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/doc_info/tests.rs +572 -0
  250. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/doc_info.rs +966 -0
  251. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/header.rs +122 -0
  252. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/canonical_defaults.rs +244 -0
  253. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/content.rs +256 -0
  254. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/context.rs +346 -0
  255. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/field.rs +236 -0
  256. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/fixtures.rs +34 -0
  257. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/form.rs +330 -0
  258. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/header.rs +1748 -0
  259. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/mod.rs +1060 -0
  260. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/package_check.rs +329 -0
  261. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/picture.rs +879 -0
  262. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/roundtrip.rs +2322 -0
  263. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/section.rs +2539 -0
  264. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/shape.rs +1264 -0
  265. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/static_assets.rs +66 -0
  266. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/table.rs +1340 -0
  267. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/templates/empty_content.hpf +1 -0
  268. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/templates/empty_header.xml +1 -0
  269. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/templates/empty_section0.xml +1 -0
  270. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/templates/settings.xml +1 -0
  271. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/templates/version.xml +1 -0
  272. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/utils.rs +86 -0
  273. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/hwpx/writer.rs +77 -0
  274. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/mini_cfb.rs +701 -0
  275. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/mod.rs +98 -0
  276. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/serializer/record_writer.rs +190 -0
  277. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/tools/font_metric_gen.rs +1051 -0
  278. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wasm_api/event.rs +6 -0
  279. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wasm_api/tests.rs +23686 -0
  280. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wasm_api.rs +6660 -0
  281. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/bitmap.rs +448 -0
  282. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/graphics_object.rs +113 -0
  283. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/mod.rs +543 -0
  284. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/player.rs +407 -0
  285. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/svg/device_context.rs +273 -0
  286. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/svg/mod.rs +2358 -0
  287. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/svg/node.rs +150 -0
  288. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/svg/ternary_raster_operator.rs +158 -0
  289. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/converter/svg/util.rs +445 -0
  290. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/mod.rs +50 -0
  291. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/binary_raster_operation.rs +48 -0
  292. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/bit_count.rs +90 -0
  293. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/brush_style.rs +37 -0
  294. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/character_set.rs +183 -0
  295. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/color_usage.rs +17 -0
  296. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/compression.rs +48 -0
  297. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/family_font.rs +27 -0
  298. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/flood_fill.rs +17 -0
  299. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/font_quality.rs +32 -0
  300. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/gamut_mapping_intent.rs +39 -0
  301. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/hatch_style.rs +19 -0
  302. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/layout.rs +19 -0
  303. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/logical_color_space.rs +30 -0
  304. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/map_mode.rs +53 -0
  305. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/metafile_escapes.rs +181 -0
  306. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/metafile_type.rs +11 -0
  307. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/metafile_version.rs +12 -0
  308. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/mix_mode.rs +14 -0
  309. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/mod.rs +43 -0
  310. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/out_precision.rs +40 -0
  311. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/palette_entry_flag.rs +24 -0
  312. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/pen_style.rs +80 -0
  313. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/pitch_font.rs +20 -0
  314. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/poly_fill_mode.rs +13 -0
  315. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/post_script_cap.rs +22 -0
  316. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/post_script_clipping.rs +17 -0
  317. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/post_script_feature_setting.rs +32 -0
  318. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/post_script_join.rs +19 -0
  319. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/record_type.rs +262 -0
  320. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/stretch_mode.rs +35 -0
  321. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/enums/ternary_raster_operation.rs +805 -0
  322. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/flags/clip_precision.rs +41 -0
  323. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/flags/ext_text_out_options.rs +39 -0
  324. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/flags/mod.rs +12 -0
  325. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/flags/text_alignment_mode.rs +35 -0
  326. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/flags/vertical_text_alignment_mode.rs +29 -0
  327. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/constants/mod.rs +54 -0
  328. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/mod.rs +129 -0
  329. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/brush.rs +93 -0
  330. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/font.rs +243 -0
  331. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/mod.rs +10 -0
  332. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/palette.rs +52 -0
  333. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/pen.rs +108 -0
  334. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/graphics/region.rs +96 -0
  335. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/mod.rs +6 -0
  336. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap16.rs +149 -0
  337. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap_info_header/core.rs +81 -0
  338. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap_info_header/info.rs +166 -0
  339. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap_info_header/mod.rs +174 -0
  340. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap_info_header/v4.rs +245 -0
  341. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/bitmap_info_header/v5.rs +266 -0
  342. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/ciexyz.rs +32 -0
  343. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/ciexyz_triple.rs +34 -0
  344. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/color_ref.rs +78 -0
  345. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/device_independent_bitmap.rs +279 -0
  346. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/log_brush.rs +84 -0
  347. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/log_color_space.rs +130 -0
  348. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/log_color_space_w.rs +131 -0
  349. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/mod.rs +49 -0
  350. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/palette_entry.rs +58 -0
  351. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/pitch_and_family.rs +41 -0
  352. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/point_l.rs +28 -0
  353. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/point_s.rs +28 -0
  354. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/poly_polygon.rs +58 -0
  355. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/rect.rs +63 -0
  356. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/rect_l.rs +47 -0
  357. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/rgb_quad.rs +57 -0
  358. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/rgb_triple.rs +36 -0
  359. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/scan.rs +112 -0
  360. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/objects/structure/size_l.rs +28 -0
  361. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/bit_blt.rs +187 -0
  362. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/dib_bit_blt.rs +194 -0
  363. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/dib_stretch_blt.rs +221 -0
  364. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/mod.rs +14 -0
  365. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/set_dib_to_dev.rs +124 -0
  366. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/stretch_blt.rs +215 -0
  367. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/bitmap/stretch_dib.rs +139 -0
  368. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/control/eof.rs +48 -0
  369. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/control/header.rs +98 -0
  370. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/control/mod.rs +50 -0
  371. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/control/placeable.rs +83 -0
  372. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/arc.rs +111 -0
  373. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/chord.rs +114 -0
  374. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/ellipse.rs +78 -0
  375. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/ext_flood_fill.rs +67 -0
  376. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/ext_text_out.rs +174 -0
  377. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/fill_region.rs +55 -0
  378. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/flood_fill.rs +61 -0
  379. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/frame_region.rs +71 -0
  380. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/invert_region.rs +49 -0
  381. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/line_to.rs +57 -0
  382. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/mod.rs +30 -0
  383. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/paint_region.rs +49 -0
  384. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/pat_blt.rs +83 -0
  385. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/pie.rs +113 -0
  386. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/poly_line.rs +65 -0
  387. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/poly_polygon.rs +51 -0
  388. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/polygon.rs +68 -0
  389. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/rectangle.rs +77 -0
  390. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/round_rect.rs +95 -0
  391. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/set_pixel.rs +60 -0
  392. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/drawing/text_out.rs +96 -0
  393. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/abort_doc.rs +24 -0
  394. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/begin_path.rs +24 -0
  395. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/check_jpeg_format.rs +20 -0
  396. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/check_png_format.rs +20 -0
  397. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/clip_to_path.rs +40 -0
  398. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/close_channel.rs +24 -0
  399. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/download_face.rs +24 -0
  400. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/download_header.rs +24 -0
  401. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/draw_pattern_rect.rs +41 -0
  402. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/encapsulated_postscript.rs +51 -0
  403. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/end_doc.rs +24 -0
  404. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/end_path.rs +24 -0
  405. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/eps_printing.rs +28 -0
  406. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/ext_text_out.rs +24 -0
  407. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_color_table.rs +29 -0
  408. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_device_units.rs +24 -0
  409. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_extended_text_metrics.rs +26 -0
  410. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_facename.rs +24 -0
  411. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_pair_kern_table.rs +26 -0
  412. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_phys_page_size.rs +24 -0
  413. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_printing_offset.rs +26 -0
  414. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_ps_feature_setting.rs +30 -0
  415. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/get_scaling_factor.rs +26 -0
  416. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/meta_escape_enhanced_metafile.rs +115 -0
  417. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/metafile_driver.rs +24 -0
  418. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/mod.rs +995 -0
  419. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/new_frame.rs +24 -0
  420. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/next_band.rs +24 -0
  421. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/open_channel.rs +24 -0
  422. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/passthrough.rs +20 -0
  423. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/postscript_data.rs +20 -0
  424. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/postscript_identify.rs +22 -0
  425. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/postscript_ignore.rs +26 -0
  426. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/postscript_injection.rs +22 -0
  427. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/postscript_passthrough.rs +22 -0
  428. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/query_dib_support.rs +24 -0
  429. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/query_esc_support.rs +28 -0
  430. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/set_color_table.rs +20 -0
  431. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/set_copy_count.rs +28 -0
  432. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/set_line_cap.rs +28 -0
  433. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/set_line_join.rs +28 -0
  434. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/set_miter_limit.rs +32 -0
  435. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/spcl_passthrough2.rs +28 -0
  436. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/escape/startdoc.rs +31 -0
  437. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/mod.rs +109 -0
  438. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_brush_indirect.rs +73 -0
  439. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_font_indirect.rs +50 -0
  440. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_palette.rs +58 -0
  441. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_pattern_brush.rs +91 -0
  442. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_pen_indirect.rs +47 -0
  443. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/create_region.rs +48 -0
  444. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/delete_object.rs +52 -0
  445. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/dib_create_pattern_brush.rs +92 -0
  446. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/mod.rs +20 -0
  447. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/select_clip_region.rs +49 -0
  448. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/select_object.rs +55 -0
  449. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/object/select_palette.rs +49 -0
  450. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/animate_palette.rs +58 -0
  451. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/exclude_clip_rect.rs +68 -0
  452. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/intersect_clip_rect.rs +68 -0
  453. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/mod.rs +44 -0
  454. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/move_to.rs +56 -0
  455. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/offset_clip_rgn.rs +56 -0
  456. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/offset_viewport_org.rs +56 -0
  457. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/offset_window_org.rs +56 -0
  458. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/realize_palette.rs +42 -0
  459. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/resize_palette.rs +50 -0
  460. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/restore_dc.rs +52 -0
  461. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/save_dc.rs +42 -0
  462. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/scale_viewport_ext.rs +74 -0
  463. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/scale_window_ext.rs +74 -0
  464. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_bk_color.rs +50 -0
  465. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_bk_mode.rs +65 -0
  466. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_layout.rs +58 -0
  467. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_map_mode.rs +54 -0
  468. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_mapper_flags.rs +51 -0
  469. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_pal_entries.rs +49 -0
  470. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_polyfill_mode.rs +63 -0
  471. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_relabs.rs +43 -0
  472. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_rop2.rs +66 -0
  473. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_stretch_blt_mode.rs +64 -0
  474. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_text_align.rs +66 -0
  475. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_text_char_extra.rs +54 -0
  476. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_text_color.rs +49 -0
  477. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_text_justification.rs +59 -0
  478. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_viewport_ext.rs +56 -0
  479. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_viewport_org.rs +56 -0
  480. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_window_ext.rs +56 -0
  481. hwp_ingest-0.1.0a1/vendor/rhwp-subset/src/wmf/parser/records/state/set_window_org.rs +56 -0
@@ -0,0 +1,1849 @@
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 = "arrayref"
22
+ version = "0.3.9"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
25
+
26
+ [[package]]
27
+ name = "arrayvec"
28
+ version = "0.7.8"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
31
+
32
+ [[package]]
33
+ name = "async-trait"
34
+ version = "0.1.89"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
37
+ dependencies = [
38
+ "proc-macro2",
39
+ "quote",
40
+ "syn",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "autocfg"
45
+ version = "1.5.1"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
48
+
49
+ [[package]]
50
+ name = "base64"
51
+ version = "0.22.1"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
54
+
55
+ [[package]]
56
+ name = "bindgen"
57
+ version = "0.72.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
60
+ dependencies = [
61
+ "bitflags 2.13.0",
62
+ "cexpr",
63
+ "clang-sys",
64
+ "itertools",
65
+ "log",
66
+ "prettyplease",
67
+ "proc-macro2",
68
+ "quote",
69
+ "regex",
70
+ "rustc-hash",
71
+ "shlex 1.3.0",
72
+ "syn",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "bitflags"
77
+ version = "1.3.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
80
+
81
+ [[package]]
82
+ name = "bitflags"
83
+ version = "2.13.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
86
+
87
+ [[package]]
88
+ name = "blake3"
89
+ version = "1.8.5"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
92
+ dependencies = [
93
+ "arrayref",
94
+ "arrayvec",
95
+ "cc",
96
+ "cfg-if",
97
+ "constant_time_eq",
98
+ "cpufeatures",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "bumpalo"
103
+ version = "3.20.3"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
106
+
107
+ [[package]]
108
+ name = "bytemuck"
109
+ version = "1.25.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
112
+ dependencies = [
113
+ "bytemuck_derive",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "bytemuck_derive"
118
+ version = "1.10.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
121
+ dependencies = [
122
+ "proc-macro2",
123
+ "quote",
124
+ "syn",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "byteorder"
129
+ version = "1.5.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
132
+
133
+ [[package]]
134
+ name = "byteorder-lite"
135
+ version = "0.1.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
138
+
139
+ [[package]]
140
+ name = "cast"
141
+ version = "0.3.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
144
+
145
+ [[package]]
146
+ name = "cc"
147
+ version = "1.2.65"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
150
+ dependencies = [
151
+ "find-msvc-tools",
152
+ "shlex 2.0.1",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "cexpr"
157
+ version = "0.6.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
160
+ dependencies = [
161
+ "nom",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "cfb"
166
+ version = "0.14.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "a347dcabdae9c31b0825fd6a8bed285ec9c2acb89c47827126d52fa4f59cece3"
169
+ dependencies = [
170
+ "fnv",
171
+ "uuid",
172
+ "web-time",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "cfg-if"
177
+ version = "1.0.4"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
180
+
181
+ [[package]]
182
+ name = "clang-sys"
183
+ version = "1.8.1"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
186
+ dependencies = [
187
+ "glob",
188
+ "libc",
189
+ "libloading",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "codepage"
194
+ version = "0.1.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
197
+ dependencies = [
198
+ "encoding_rs",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "color_quant"
203
+ version = "1.1.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
206
+
207
+ [[package]]
208
+ name = "console_error_panic_hook"
209
+ version = "0.1.7"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
212
+ dependencies = [
213
+ "cfg-if",
214
+ "wasm-bindgen",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "constant_time_eq"
219
+ version = "0.4.2"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
222
+
223
+ [[package]]
224
+ name = "core_maths"
225
+ version = "0.1.1"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
228
+ dependencies = [
229
+ "libm",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cpufeatures"
234
+ version = "0.3.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
237
+ dependencies = [
238
+ "libc",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "crc32fast"
243
+ version = "1.5.0"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
246
+ dependencies = [
247
+ "cfg-if",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "data-url"
252
+ version = "0.3.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
255
+
256
+ [[package]]
257
+ name = "either"
258
+ version = "1.16.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
261
+
262
+ [[package]]
263
+ name = "embedded-io"
264
+ version = "0.7.1"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "9eb1aa714776b75c7e67e1da744b81a129b3ff919c8712b5e1b32252c1f07cc7"
267
+
268
+ [[package]]
269
+ name = "encoding_rs"
270
+ version = "0.8.35"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
273
+ dependencies = [
274
+ "cfg-if",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "equivalent"
279
+ version = "1.0.2"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
282
+
283
+ [[package]]
284
+ name = "errno"
285
+ version = "0.3.14"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
288
+ dependencies = [
289
+ "libc",
290
+ "windows-sys",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "euclid"
295
+ version = "0.22.14"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
298
+ dependencies = [
299
+ "num-traits",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "fdeflate"
304
+ version = "0.3.7"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
307
+ dependencies = [
308
+ "simd-adler32",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "filetime"
313
+ version = "0.2.29"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
316
+ dependencies = [
317
+ "cfg-if",
318
+ "libc",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "find-msvc-tools"
323
+ version = "0.1.9"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
326
+
327
+ [[package]]
328
+ name = "flate2"
329
+ version = "1.1.9"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
332
+ dependencies = [
333
+ "crc32fast",
334
+ "miniz_oxide",
335
+ "zlib-rs",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "float-cmp"
340
+ version = "0.9.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
343
+
344
+ [[package]]
345
+ name = "fnv"
346
+ version = "1.0.7"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
349
+
350
+ [[package]]
351
+ name = "font-types"
352
+ version = "0.11.3"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "5b38ad915f6dadd993ced50848a8291a543bd41ca62bc10740d5e64e2ab4cfd7"
355
+ dependencies = [
356
+ "bytemuck",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "fontconfig-parser"
361
+ version = "0.5.8"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
364
+ dependencies = [
365
+ "roxmltree 0.20.0",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "fontdb"
370
+ version = "0.23.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
373
+ dependencies = [
374
+ "fontconfig-parser",
375
+ "log",
376
+ "memmap2",
377
+ "slotmap",
378
+ "tinyvec",
379
+ "ttf-parser",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "futures-core"
384
+ version = "0.3.32"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
387
+
388
+ [[package]]
389
+ name = "futures-task"
390
+ version = "0.3.32"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
393
+
394
+ [[package]]
395
+ name = "futures-util"
396
+ version = "0.3.32"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
399
+ dependencies = [
400
+ "futures-core",
401
+ "futures-task",
402
+ "pin-project-lite",
403
+ "slab",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "gif"
408
+ version = "0.13.3"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
411
+ dependencies = [
412
+ "color_quant",
413
+ "weezl",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "gif"
418
+ version = "0.14.2"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
421
+ dependencies = [
422
+ "color_quant",
423
+ "weezl",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "glob"
428
+ version = "0.3.3"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
431
+
432
+ [[package]]
433
+ name = "hashbrown"
434
+ version = "0.17.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
437
+
438
+ [[package]]
439
+ name = "heck"
440
+ version = "0.5.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
443
+
444
+ [[package]]
445
+ name = "hwp-ingest"
446
+ version = "0.1.0"
447
+ dependencies = [
448
+ "hwp-ingest-rhwp-adapter",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "hwp-ingest-python"
453
+ version = "0.1.0"
454
+ dependencies = [
455
+ "hwp-ingest",
456
+ "pyo3",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "hwp-ingest-rhwp-adapter"
461
+ version = "0.1.0"
462
+ dependencies = [
463
+ "rhwp",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "image"
468
+ version = "0.25.10"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
471
+ dependencies = [
472
+ "bytemuck",
473
+ "byteorder-lite",
474
+ "color_quant",
475
+ "gif 0.14.2",
476
+ "moxcms",
477
+ "num-traits",
478
+ "png 0.18.1",
479
+ "zune-core 0.5.1",
480
+ "zune-jpeg 0.5.15",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "image-webp"
485
+ version = "0.2.4"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
488
+ dependencies = [
489
+ "byteorder-lite",
490
+ "quick-error",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "imagesize"
495
+ version = "0.13.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
498
+
499
+ [[package]]
500
+ name = "imagesize"
501
+ version = "0.14.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c"
504
+
505
+ [[package]]
506
+ name = "indexmap"
507
+ version = "2.14.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
510
+ dependencies = [
511
+ "equivalent",
512
+ "hashbrown",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "itertools"
517
+ version = "0.13.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
520
+ dependencies = [
521
+ "either",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "itoa"
526
+ version = "1.0.18"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
529
+
530
+ [[package]]
531
+ name = "js-sys"
532
+ version = "0.3.103"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
535
+ dependencies = [
536
+ "cfg-if",
537
+ "futures-util",
538
+ "wasm-bindgen",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "kurbo"
543
+ version = "0.11.3"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
546
+ dependencies = [
547
+ "arrayvec",
548
+ "euclid",
549
+ "smallvec",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "kurbo"
554
+ version = "0.13.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
557
+ dependencies = [
558
+ "arrayvec",
559
+ "euclid",
560
+ "polycool",
561
+ "smallvec",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "libc"
566
+ version = "0.2.186"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
569
+
570
+ [[package]]
571
+ name = "libloading"
572
+ version = "0.8.9"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
575
+ dependencies = [
576
+ "cfg-if",
577
+ "windows-link",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "libm"
582
+ version = "0.2.16"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
585
+
586
+ [[package]]
587
+ name = "linux-raw-sys"
588
+ version = "0.12.1"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
591
+
592
+ [[package]]
593
+ name = "log"
594
+ version = "0.4.33"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
597
+
598
+ [[package]]
599
+ name = "memchr"
600
+ version = "2.8.2"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
603
+
604
+ [[package]]
605
+ name = "memmap2"
606
+ version = "0.9.11"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
609
+ dependencies = [
610
+ "libc",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "minicov"
615
+ version = "0.3.8"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
618
+ dependencies = [
619
+ "cc",
620
+ "walkdir",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "minimal-lexical"
625
+ version = "0.2.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
628
+
629
+ [[package]]
630
+ name = "miniz_oxide"
631
+ version = "0.8.9"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
634
+ dependencies = [
635
+ "adler2",
636
+ "simd-adler32",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "moxcms"
641
+ version = "0.8.1"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
644
+ dependencies = [
645
+ "num-traits",
646
+ "pxfm",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "nom"
651
+ version = "7.1.3"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
654
+ dependencies = [
655
+ "memchr",
656
+ "minimal-lexical",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "nu-ansi-term"
661
+ version = "0.50.3"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
664
+ dependencies = [
665
+ "windows-sys",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "num-traits"
670
+ version = "0.2.19"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
673
+ dependencies = [
674
+ "autocfg",
675
+ "libm",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "once_cell"
680
+ version = "1.21.4"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
683
+
684
+ [[package]]
685
+ name = "oorandom"
686
+ version = "11.1.5"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
689
+
690
+ [[package]]
691
+ name = "paste"
692
+ version = "1.0.15"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
695
+
696
+ [[package]]
697
+ name = "pcx"
698
+ version = "0.2.5"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "dffa08d8cdb97709f15a9cf1bc0edd439a96e8c1d05687272b430b7a3cd8a64b"
701
+ dependencies = [
702
+ "byteorder",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "pdf-writer"
707
+ version = "0.12.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "5df03c7d216de06f93f398ef06f1385a60f2c597bb96f8195c8d98e08a26b1d5"
710
+ dependencies = [
711
+ "bitflags 2.13.0",
712
+ "itoa",
713
+ "memchr",
714
+ "ryu",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "pico-args"
719
+ version = "0.5.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
722
+
723
+ [[package]]
724
+ name = "pin-project-lite"
725
+ version = "0.2.17"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
728
+
729
+ [[package]]
730
+ name = "pkg-config"
731
+ version = "0.3.33"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
734
+
735
+ [[package]]
736
+ name = "png"
737
+ version = "0.17.16"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
740
+ dependencies = [
741
+ "bitflags 1.3.2",
742
+ "crc32fast",
743
+ "fdeflate",
744
+ "flate2",
745
+ "miniz_oxide",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "png"
750
+ version = "0.18.1"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
753
+ dependencies = [
754
+ "bitflags 2.13.0",
755
+ "crc32fast",
756
+ "fdeflate",
757
+ "flate2",
758
+ "miniz_oxide",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "polycool"
763
+ version = "0.4.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
766
+ dependencies = [
767
+ "arrayvec",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "portable-atomic"
772
+ version = "1.13.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
775
+
776
+ [[package]]
777
+ name = "prettyplease"
778
+ version = "0.2.37"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "syn",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "proc-macro2"
788
+ version = "1.0.106"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
791
+ dependencies = [
792
+ "unicode-ident",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "pxfm"
797
+ version = "0.1.29"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
800
+
801
+ [[package]]
802
+ name = "pyo3"
803
+ version = "0.29.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
806
+ dependencies = [
807
+ "libc",
808
+ "once_cell",
809
+ "portable-atomic",
810
+ "pyo3-build-config",
811
+ "pyo3-ffi",
812
+ "pyo3-macros",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "pyo3-build-config"
817
+ version = "0.29.0"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
820
+ dependencies = [
821
+ "target-lexicon",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "pyo3-ffi"
826
+ version = "0.29.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
829
+ dependencies = [
830
+ "libc",
831
+ "pyo3-build-config",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "pyo3-macros"
836
+ version = "0.29.0"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
839
+ dependencies = [
840
+ "proc-macro2",
841
+ "pyo3-macros-backend",
842
+ "quote",
843
+ "syn",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "pyo3-macros-backend"
848
+ version = "0.29.0"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
851
+ dependencies = [
852
+ "heck",
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "quick-error"
860
+ version = "2.0.1"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
863
+
864
+ [[package]]
865
+ name = "quick-xml"
866
+ version = "0.40.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "2474bd2e5029e7ccb6abb2ba48cf2383a333851dedf495901544281590c7da7f"
869
+ dependencies = [
870
+ "memchr",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "quote"
875
+ version = "1.0.46"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
878
+ dependencies = [
879
+ "proc-macro2",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "read-fonts"
884
+ version = "0.39.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "c4ed38b89c2c77ff968c524145ad65fb010f38af5c7a224b53b81d47ac2daa81"
887
+ dependencies = [
888
+ "bytemuck",
889
+ "font-types",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "regex"
894
+ version = "1.12.4"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
897
+ dependencies = [
898
+ "aho-corasick",
899
+ "memchr",
900
+ "regex-automata",
901
+ "regex-syntax",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "regex-automata"
906
+ version = "0.4.14"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
909
+ dependencies = [
910
+ "aho-corasick",
911
+ "memchr",
912
+ "regex-syntax",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "regex-syntax"
917
+ version = "0.8.11"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
920
+
921
+ [[package]]
922
+ name = "resvg"
923
+ version = "0.45.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43"
926
+ dependencies = [
927
+ "gif 0.13.3",
928
+ "image-webp",
929
+ "log",
930
+ "pico-args",
931
+ "rgb",
932
+ "svgtypes 0.15.3",
933
+ "tiny-skia 0.11.4",
934
+ "usvg 0.45.1",
935
+ "zune-jpeg 0.4.21",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "resvg"
940
+ version = "0.47.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "9be183ad6a216aa96f33e4c8033b0988b8b3ea6fd2359d19af5bac4643fd8e81"
943
+ dependencies = [
944
+ "gif 0.14.2",
945
+ "image-webp",
946
+ "log",
947
+ "pico-args",
948
+ "rgb",
949
+ "svgtypes 0.16.1",
950
+ "tiny-skia 0.12.0",
951
+ "usvg 0.47.0",
952
+ "zune-jpeg 0.5.15",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "rgb"
957
+ version = "0.8.53"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
960
+ dependencies = [
961
+ "bytemuck",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "rhwp"
966
+ version = "0.7.17"
967
+ dependencies = [
968
+ "base64",
969
+ "blake3",
970
+ "byteorder",
971
+ "cfb",
972
+ "codepage",
973
+ "console_error_panic_hook",
974
+ "embedded-io",
975
+ "encoding_rs",
976
+ "flate2",
977
+ "image",
978
+ "js-sys",
979
+ "paste",
980
+ "pcx",
981
+ "pdf-writer",
982
+ "quick-xml",
983
+ "resvg 0.47.0",
984
+ "serde",
985
+ "serde_json",
986
+ "skia-safe",
987
+ "snafu",
988
+ "strum",
989
+ "subsetter",
990
+ "svg2pdf",
991
+ "ttf-parser",
992
+ "unicode-segmentation",
993
+ "unicode-width",
994
+ "usvg 0.45.1",
995
+ "wasm-bindgen",
996
+ "wasm-bindgen-test",
997
+ "web-sys",
998
+ "zip",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "roxmltree"
1003
+ version = "0.20.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
1006
+
1007
+ [[package]]
1008
+ name = "roxmltree"
1009
+ version = "0.21.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
1012
+ dependencies = [
1013
+ "memchr",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "rustc-hash"
1018
+ version = "2.1.3"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1021
+
1022
+ [[package]]
1023
+ name = "rustix"
1024
+ version = "1.1.4"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1027
+ dependencies = [
1028
+ "bitflags 2.13.0",
1029
+ "errno",
1030
+ "libc",
1031
+ "linux-raw-sys",
1032
+ "windows-sys",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "rustversion"
1037
+ version = "1.0.22"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1040
+
1041
+ [[package]]
1042
+ name = "rustybuzz"
1043
+ version = "0.20.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
1046
+ dependencies = [
1047
+ "bitflags 2.13.0",
1048
+ "bytemuck",
1049
+ "core_maths",
1050
+ "log",
1051
+ "smallvec",
1052
+ "ttf-parser",
1053
+ "unicode-bidi-mirroring",
1054
+ "unicode-ccc",
1055
+ "unicode-properties",
1056
+ "unicode-script",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "ryu"
1061
+ version = "1.0.23"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1064
+
1065
+ [[package]]
1066
+ name = "same-file"
1067
+ version = "1.0.6"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1070
+ dependencies = [
1071
+ "winapi-util",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "serde"
1076
+ version = "1.0.228"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1079
+ dependencies = [
1080
+ "serde_core",
1081
+ "serde_derive",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "serde_core"
1086
+ version = "1.0.228"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1089
+ dependencies = [
1090
+ "serde_derive",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "serde_derive"
1095
+ version = "1.0.228"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1098
+ dependencies = [
1099
+ "proc-macro2",
1100
+ "quote",
1101
+ "syn",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "serde_json"
1106
+ version = "1.0.150"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1109
+ dependencies = [
1110
+ "itoa",
1111
+ "memchr",
1112
+ "serde",
1113
+ "serde_core",
1114
+ "zmij",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "serde_spanned"
1119
+ version = "1.1.1"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1122
+ dependencies = [
1123
+ "serde_core",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "shlex"
1128
+ version = "1.3.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1131
+
1132
+ [[package]]
1133
+ name = "shlex"
1134
+ version = "2.0.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1137
+
1138
+ [[package]]
1139
+ name = "simd-adler32"
1140
+ version = "0.3.9"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1143
+
1144
+ [[package]]
1145
+ name = "simplecss"
1146
+ version = "0.2.2"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
1149
+ dependencies = [
1150
+ "log",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "siphasher"
1155
+ version = "1.0.3"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1158
+
1159
+ [[package]]
1160
+ name = "skia-bindings"
1161
+ version = "0.99.0"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "3e2d1c3ebd697c0cbded0145e9204a38fa6b268446051b7196d0a096414ea7f3"
1164
+ dependencies = [
1165
+ "bindgen",
1166
+ "cc",
1167
+ "flate2",
1168
+ "heck",
1169
+ "pkg-config",
1170
+ "regex",
1171
+ "serde_json",
1172
+ "tar",
1173
+ "toml",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "skia-safe"
1178
+ version = "0.99.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "9f512ac418a64194842dd05566320805dad1c957c521039db2486fd6368865bc"
1181
+ dependencies = [
1182
+ "bitflags 2.13.0",
1183
+ "skia-bindings",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "skrifa"
1188
+ version = "0.42.1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "0c34617370ae968efb7161bb2beb517d9084659aae19e24b89e3db25b46e4564"
1191
+ dependencies = [
1192
+ "bytemuck",
1193
+ "read-fonts",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "slab"
1198
+ version = "0.4.12"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1201
+
1202
+ [[package]]
1203
+ name = "slotmap"
1204
+ version = "1.1.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1207
+ dependencies = [
1208
+ "version_check",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "smallvec"
1213
+ version = "1.15.2"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1216
+
1217
+ [[package]]
1218
+ name = "snafu"
1219
+ version = "0.9.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "d1a012328be2e3f5d5f6f3218147ca02588cea4cb865e876849ab6debcf36522"
1222
+ dependencies = [
1223
+ "snafu-derive",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "snafu-derive"
1228
+ version = "0.9.1"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "5f103c50866b8743da9429b8a581d81a27c2d3a9c4ac7df8f8571c1dd7896eda"
1231
+ dependencies = [
1232
+ "heck",
1233
+ "proc-macro2",
1234
+ "quote",
1235
+ "syn",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "strict-num"
1240
+ version = "0.1.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
1243
+ dependencies = [
1244
+ "float-cmp",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "strum"
1249
+ version = "0.28.0"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
1252
+ dependencies = [
1253
+ "strum_macros",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "strum_macros"
1258
+ version = "0.28.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
1261
+ dependencies = [
1262
+ "heck",
1263
+ "proc-macro2",
1264
+ "quote",
1265
+ "syn",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "subsetter"
1270
+ version = "0.2.6"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "38803281d1c23166c5ebcb455439a5d2afe711cc909cf88af72448c297756ad6"
1273
+ dependencies = [
1274
+ "kurbo 0.13.1",
1275
+ "rustc-hash",
1276
+ "skrifa",
1277
+ "write-fonts",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "svg2pdf"
1282
+ version = "0.13.0"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "e50dc062439cc1a396181059c80932a6e6bd731b130e674c597c0c8874b6df22"
1285
+ dependencies = [
1286
+ "fontdb",
1287
+ "image",
1288
+ "log",
1289
+ "miniz_oxide",
1290
+ "once_cell",
1291
+ "pdf-writer",
1292
+ "resvg 0.45.1",
1293
+ "siphasher",
1294
+ "subsetter",
1295
+ "tiny-skia 0.11.4",
1296
+ "ttf-parser",
1297
+ "usvg 0.45.1",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "svgtypes"
1302
+ version = "0.15.3"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
1305
+ dependencies = [
1306
+ "kurbo 0.11.3",
1307
+ "siphasher",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "svgtypes"
1312
+ version = "0.16.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
1315
+ dependencies = [
1316
+ "kurbo 0.13.1",
1317
+ "siphasher",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "syn"
1322
+ version = "2.0.118"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1325
+ dependencies = [
1326
+ "proc-macro2",
1327
+ "quote",
1328
+ "unicode-ident",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "tar"
1333
+ version = "0.4.46"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
1336
+ dependencies = [
1337
+ "filetime",
1338
+ "libc",
1339
+ "xattr",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "target-lexicon"
1344
+ version = "0.13.5"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1347
+
1348
+ [[package]]
1349
+ name = "tiny-skia"
1350
+ version = "0.11.4"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
1353
+ dependencies = [
1354
+ "arrayref",
1355
+ "arrayvec",
1356
+ "bytemuck",
1357
+ "cfg-if",
1358
+ "log",
1359
+ "png 0.17.16",
1360
+ "tiny-skia-path 0.11.4",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "tiny-skia"
1365
+ version = "0.12.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
1368
+ dependencies = [
1369
+ "arrayref",
1370
+ "arrayvec",
1371
+ "bytemuck",
1372
+ "cfg-if",
1373
+ "log",
1374
+ "png 0.18.1",
1375
+ "tiny-skia-path 0.12.0",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "tiny-skia-path"
1380
+ version = "0.11.4"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
1383
+ dependencies = [
1384
+ "arrayref",
1385
+ "bytemuck",
1386
+ "strict-num",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "tiny-skia-path"
1391
+ version = "0.12.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
1394
+ dependencies = [
1395
+ "arrayref",
1396
+ "bytemuck",
1397
+ "strict-num",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "tinyvec"
1402
+ version = "1.11.0"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1405
+ dependencies = [
1406
+ "tinyvec_macros",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "tinyvec_macros"
1411
+ version = "0.1.1"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1414
+
1415
+ [[package]]
1416
+ name = "toml"
1417
+ version = "1.1.2+spec-1.1.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1420
+ dependencies = [
1421
+ "indexmap",
1422
+ "serde_core",
1423
+ "serde_spanned",
1424
+ "toml_datetime",
1425
+ "toml_parser",
1426
+ "toml_writer",
1427
+ "winnow",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "toml_datetime"
1432
+ version = "1.1.1+spec-1.1.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1435
+ dependencies = [
1436
+ "serde_core",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "toml_parser"
1441
+ version = "1.1.2+spec-1.1.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1444
+ dependencies = [
1445
+ "winnow",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "toml_writer"
1450
+ version = "1.1.1+spec-1.1.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1453
+
1454
+ [[package]]
1455
+ name = "ttf-parser"
1456
+ version = "0.25.1"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
1459
+ dependencies = [
1460
+ "core_maths",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "typed-path"
1465
+ version = "0.12.3"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
1468
+
1469
+ [[package]]
1470
+ name = "unicode-bidi"
1471
+ version = "0.3.18"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1474
+
1475
+ [[package]]
1476
+ name = "unicode-bidi-mirroring"
1477
+ version = "0.4.0"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
1480
+
1481
+ [[package]]
1482
+ name = "unicode-ccc"
1483
+ version = "0.4.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
1486
+
1487
+ [[package]]
1488
+ name = "unicode-ident"
1489
+ version = "1.0.24"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1492
+
1493
+ [[package]]
1494
+ name = "unicode-properties"
1495
+ version = "0.1.4"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1498
+
1499
+ [[package]]
1500
+ name = "unicode-script"
1501
+ version = "0.5.8"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
1504
+
1505
+ [[package]]
1506
+ name = "unicode-segmentation"
1507
+ version = "1.13.3"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1510
+
1511
+ [[package]]
1512
+ name = "unicode-vo"
1513
+ version = "0.1.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
1516
+
1517
+ [[package]]
1518
+ name = "unicode-width"
1519
+ version = "0.2.2"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1522
+
1523
+ [[package]]
1524
+ name = "usvg"
1525
+ version = "0.45.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef"
1528
+ dependencies = [
1529
+ "base64",
1530
+ "data-url",
1531
+ "flate2",
1532
+ "fontdb",
1533
+ "imagesize 0.13.0",
1534
+ "kurbo 0.11.3",
1535
+ "log",
1536
+ "pico-args",
1537
+ "roxmltree 0.20.0",
1538
+ "rustybuzz",
1539
+ "simplecss",
1540
+ "siphasher",
1541
+ "strict-num",
1542
+ "svgtypes 0.15.3",
1543
+ "tiny-skia-path 0.11.4",
1544
+ "unicode-bidi",
1545
+ "unicode-script",
1546
+ "unicode-vo",
1547
+ "xmlwriter",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "usvg"
1552
+ version = "0.47.0"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "d46cf96c5f498d36b7a9693bc6a7075c0bb9303189d61b2249b0dc3d309c07de"
1555
+ dependencies = [
1556
+ "base64",
1557
+ "data-url",
1558
+ "flate2",
1559
+ "fontdb",
1560
+ "imagesize 0.14.0",
1561
+ "kurbo 0.13.1",
1562
+ "log",
1563
+ "pico-args",
1564
+ "roxmltree 0.21.1",
1565
+ "rustybuzz",
1566
+ "simplecss",
1567
+ "siphasher",
1568
+ "strict-num",
1569
+ "svgtypes 0.16.1",
1570
+ "tiny-skia-path 0.12.0",
1571
+ "ttf-parser",
1572
+ "unicode-bidi",
1573
+ "unicode-script",
1574
+ "unicode-vo",
1575
+ "xmlwriter",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "uuid"
1580
+ version = "1.23.4"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
1583
+ dependencies = [
1584
+ "js-sys",
1585
+ "wasm-bindgen",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "version_check"
1590
+ version = "0.9.5"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1593
+
1594
+ [[package]]
1595
+ name = "walkdir"
1596
+ version = "2.5.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1599
+ dependencies = [
1600
+ "same-file",
1601
+ "winapi-util",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "wasm-bindgen"
1606
+ version = "0.2.126"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1609
+ dependencies = [
1610
+ "cfg-if",
1611
+ "once_cell",
1612
+ "rustversion",
1613
+ "wasm-bindgen-macro",
1614
+ "wasm-bindgen-shared",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "wasm-bindgen-futures"
1619
+ version = "0.4.76"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
1622
+ dependencies = [
1623
+ "js-sys",
1624
+ "wasm-bindgen",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "wasm-bindgen-macro"
1629
+ version = "0.2.126"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1632
+ dependencies = [
1633
+ "quote",
1634
+ "wasm-bindgen-macro-support",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "wasm-bindgen-macro-support"
1639
+ version = "0.2.126"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1642
+ dependencies = [
1643
+ "bumpalo",
1644
+ "proc-macro2",
1645
+ "quote",
1646
+ "syn",
1647
+ "wasm-bindgen-shared",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "wasm-bindgen-shared"
1652
+ version = "0.2.126"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1655
+ dependencies = [
1656
+ "unicode-ident",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "wasm-bindgen-test"
1661
+ version = "0.3.76"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "2a0d555ca874445df8d314f94f5c948a4e74e5418f332c89f660a3d8310a96f4"
1664
+ dependencies = [
1665
+ "async-trait",
1666
+ "cast",
1667
+ "js-sys",
1668
+ "libm",
1669
+ "minicov",
1670
+ "nu-ansi-term",
1671
+ "num-traits",
1672
+ "oorandom",
1673
+ "serde",
1674
+ "serde_json",
1675
+ "wasm-bindgen",
1676
+ "wasm-bindgen-futures",
1677
+ "wasm-bindgen-test-macro",
1678
+ "wasm-bindgen-test-shared",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "wasm-bindgen-test-macro"
1683
+ version = "0.3.76"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "94eb68555b95bcea5e8cf4abe280b529049479fa995bfc23734af96a6aedc120"
1686
+ dependencies = [
1687
+ "proc-macro2",
1688
+ "quote",
1689
+ "syn",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "wasm-bindgen-test-shared"
1694
+ version = "0.2.126"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "c31d56021e873866c968588ed85ccdf56db5c426e44afdb4618c39895104b920"
1697
+
1698
+ [[package]]
1699
+ name = "web-sys"
1700
+ version = "0.3.103"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1703
+ dependencies = [
1704
+ "js-sys",
1705
+ "wasm-bindgen",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "web-time"
1710
+ version = "1.1.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1713
+ dependencies = [
1714
+ "js-sys",
1715
+ "wasm-bindgen",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "weezl"
1720
+ version = "0.1.12"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
1723
+
1724
+ [[package]]
1725
+ name = "winapi-util"
1726
+ version = "0.1.11"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1729
+ dependencies = [
1730
+ "windows-sys",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "windows-link"
1735
+ version = "0.2.1"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1738
+
1739
+ [[package]]
1740
+ name = "windows-sys"
1741
+ version = "0.61.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1744
+ dependencies = [
1745
+ "windows-link",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "winnow"
1750
+ version = "1.0.3"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
1753
+
1754
+ [[package]]
1755
+ name = "write-fonts"
1756
+ version = "0.48.1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "cb731d4c4d93eacc69a1ad2f270f905788a98e4a3438267bcafbe08d3431c8d8"
1759
+ dependencies = [
1760
+ "font-types",
1761
+ "indexmap",
1762
+ "kurbo 0.13.1",
1763
+ "log",
1764
+ "read-fonts",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "xattr"
1769
+ version = "1.6.1"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
1772
+ dependencies = [
1773
+ "libc",
1774
+ "rustix",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "xmlwriter"
1779
+ version = "0.1.0"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
1782
+
1783
+ [[package]]
1784
+ name = "zip"
1785
+ version = "8.6.0"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
1788
+ dependencies = [
1789
+ "crc32fast",
1790
+ "flate2",
1791
+ "indexmap",
1792
+ "memchr",
1793
+ "typed-path",
1794
+ "zopfli",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "zlib-rs"
1799
+ version = "0.6.5"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "5431d5661c32445236631278f27946e444ddafe4684cac70b185272d4f9c52d5"
1802
+
1803
+ [[package]]
1804
+ name = "zmij"
1805
+ version = "1.0.21"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1808
+
1809
+ [[package]]
1810
+ name = "zopfli"
1811
+ version = "0.8.3"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
1814
+ dependencies = [
1815
+ "bumpalo",
1816
+ "crc32fast",
1817
+ "log",
1818
+ "simd-adler32",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "zune-core"
1823
+ version = "0.4.12"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
1826
+
1827
+ [[package]]
1828
+ name = "zune-core"
1829
+ version = "0.5.1"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
1832
+
1833
+ [[package]]
1834
+ name = "zune-jpeg"
1835
+ version = "0.4.21"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
1838
+ dependencies = [
1839
+ "zune-core 0.4.12",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "zune-jpeg"
1844
+ version = "0.5.15"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
1847
+ dependencies = [
1848
+ "zune-core 0.5.1",
1849
+ ]