hwpxkit 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hwpxkit-0.2.0/Cargo.lock +1150 -0
- hwpxkit-0.2.0/Cargo.toml +18 -0
- hwpxkit-0.2.0/PKG-INFO +154 -0
- hwpxkit-0.2.0/README.md +128 -0
- hwpxkit-0.2.0/crates/hwp-core/Cargo.toml +39 -0
- hwpxkit-0.2.0/crates/hwp-core/README.md +151 -0
- hwpxkit-0.2.0/crates/hwp-core/benches/hwpx_bench_data.rs +99 -0
- hwpxkit-0.2.0/crates/hwp-core/benches/parse_benchmark.rs +81 -0
- hwpxkit-0.2.0/crates/hwp-core/src/cfb.rs +321 -0
- hwpxkit-0.2.0/crates/hwp-core/src/decompress.rs +42 -0
- hwpxkit-0.2.0/crates/hwp-core/src/diagnostics/mod.rs +299 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bindata/mod.rs +173 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/char_shape.rs +77 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/chart_data.rs +1317 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/constants.rs +102 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/control_char.rs +268 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_data.rs +58 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/auto_number.rs +59 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/bookmark_marker.rs +45 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/caption.rs +76 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/column_definition.rs +95 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/comment.rs +109 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/field.rs +112 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/footnote_endnote.rs +27 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/header_footer.rs +66 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/hide.rs +14 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/ids.rs +102 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/mod.rs +84 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/object_common.rs +222 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/overlap.rs +85 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/page_adjust.rs +14 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/page_number_position.rs +57 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/section_definition.rs +113 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/ctrl_header/types.rs +308 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/eqedit.rs +152 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/footnote_shape.rs +271 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/form_object.rs +46 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/line_seg.rs +219 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/list_header.rs +133 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/memo_list.rs +46 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/memo_shape.rs +50 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/mod.rs +1700 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/page_border_fill.rs +156 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/page_def.rs +212 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/para_header.rs +497 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/range_tag.rs +92 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/record_tree.rs +167 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/arc.rs +175 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/common.rs +357 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/container.rs +97 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/curve.rs +133 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/ellipse.rs +283 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/line.rs +125 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/mod.rs +26 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/ole.rs +178 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/picture.rs +342 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/polygon.rs +122 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/rectangle.rs +159 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/textart.rs +46 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/shape_component/unknown.rs +52 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/table.rs +317 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/bodytext/video_data.rs +155 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/constants.rs +6 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/bin_data.rs +317 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/border_fill.rs +549 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/bullet.rs +202 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/char_shape.rs +342 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/compatible_document.rs +60 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/constants.rs +72 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/distribute_doc_data.rs +35 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/doc_data.rs +415 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/document_properties.rs +128 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/face_name.rs +233 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/forbidden_char.rs +29 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/id_mappings.rs +151 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/layout_compatibility.rs +48 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/memo_shape.rs +33 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/mod.rs +291 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/numbering.rs +255 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/para_shape.rs +472 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/style.rs +184 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/tab_def.rs +145 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/track_change.rs +33 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/track_change_author.rs +29 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/docinfo/track_change_content.rs +29 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/fileheader/constants.rs +53 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/fileheader/mod.rs +124 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/fileheader/serialize.rs +117 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/mod.rs +825 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/preview_image.rs +104 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/preview_text.rs +40 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/scripts/mod.rs +75 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/scripts/script.rs +192 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/scripts/script_version.rs +47 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/summary_information.rs +821 -0
- hwpxkit-0.2.0/crates/hwp-core/src/document/xml_template.rs +179 -0
- hwpxkit-0.2.0/crates/hwp-core/src/error.rs +608 -0
- hwpxkit-0.2.0/crates/hwp-core/src/lib.rs +369 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/detect.rs +92 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/bindata.rs +474 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/container.rs +1060 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/header.rs +5106 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/mod.rs +271 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/package.rs +567 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/section.rs +5713 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/xml_attr.rs +130 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/hwpx/xml_budget.rs +227 -0
- hwpxkit-0.2.0/crates/hwp-core/src/parser/mod.rs +8 -0
- hwpxkit-0.2.0/crates/hwp-core/src/types.rs +368 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/core/bodytext.rs +592 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/core/mod.rs +15 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/core/paragraph.rs +192 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/core/renderer.rs +139 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/common.rs +227 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/column_def.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/endnote.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/field.rs +3 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/footer.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/footnote.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/header.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/mod.rs +97 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/section_def.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/shape_object.rs +177 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/cells.rs +679 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/constants.rs +3 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/geometry.rs +371 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/mod.rs +15 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/position.rs +171 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/process.rs +431 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/render.rs +944 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/size.rs +270 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/svg/borders.rs +590 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/svg/fills.rs +92 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/ctrl_header/table/svg.rs +68 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/document.rs +475 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/image.rs +64 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/line_segment.rs +488 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/mod.rs +23 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/options.rs +59 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/page.rs +248 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/pagination.rs +321 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/paragraph.rs +504 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/security.rs +103 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/styles.rs +367 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/html/text.rs +640 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/collect.rs +99 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/common.rs +172 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/column_def.rs +15 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/endnote.rs +18 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/field.rs +133 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/footer.rs +18 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/footnote.rs +18 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/header.rs +18 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/mod.rs +64 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/page_number.rs +20 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/shape_object.rs +22 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/ctrl_header/table.rs +35 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/list_header.rs +13 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/mod.rs +259 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/para_text.rs +890 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/paragraph.rs +1238 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component.rs +87 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component_picture.rs +72 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/bodytext/table.rs +965 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/docinfo.rs +17 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/fileheader.rs +15 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/document/mod.rs +12 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/mod.rs +163 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/renderer.rs +189 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/security.rs +116 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/markdown/utils.rs +337 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/mod.rs +15 -0
- hwpxkit-0.2.0/crates/hwp-core/src/viewer/shared.rs +447 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/cfb_tests.rs +38 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/common.rs +110 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/corpus/manifest.toml +24 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/corpus_tests.rs +262 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/decompress_tests.rs +32 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fileheader_tests.rs +190 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/aligns.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/borderfill.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/charshape.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/charstyle.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/example.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/facename.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/facename2.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/footnote-endnote.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/headerfooter.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/hwpSummaryInformation.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/hyperlink.hwpx +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/issue144-fields-crossing-lineseg-boundary.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/issue30.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing.html +2 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing.hwpx +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing.xml +1 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing.xsl +218 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/linespacing_style.css +94 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/lists-bullet.html +542 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/lists-bullet.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/lists-bullet_style.css +87 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/lists.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/matrix.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns-in-common-controls.html +122 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns-in-common-controls.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns-in-common-controls_style.css +80 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns-layout.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns-widths.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/multicolumns.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori-1page.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori-2page.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori-3page.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori.html +743 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori_hd1.png +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori_hd2.png +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori_hd3.png +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori_hd4.png +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/noori_style.css +163 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/outline.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/page.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/pagedefs.html +32 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/pagedefs.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/pagedefs_style.css +79 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/parashape.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/password-12345.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/sample-5017-pics.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/sample-5017.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/selfintroduce.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/shapecontainer-2.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/shapeline.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/shapepict-scaled.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/shaperect.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/strikethrough.html +34 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/strikethrough.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/strikethrough_style.css +98 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/tabdef.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-caption.html +2 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-caption.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-caption_style.css +80 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-position.html +2 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-position.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table-position_style.css +81 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table.html +71 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table2.html +2 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table2.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table2_style.css +88 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/table_style.css +79 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/test-hwpx.hwpx +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/textbox.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/underline-styles.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/fixtures/viewtext.hwp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/hwpx_bench_data_tests.rs +44 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/hwpx_robustness_tests.rs +79 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/hwpx_tests.rs +177 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/parser_tests.rs +66 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshot_tests.rs +1477 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/CLAUDE.md +7 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/aligns.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/aligns.json +7783 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/aligns.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/borderfill.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/borderfill.json +3375 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/borderfill.md +16 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charshape.html +170 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charshape.json +3600 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charshape.md +21 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charstyle.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charstyle.json +1786 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/charstyle.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/example.html +161 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/example.json +4122 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/example.md +31 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename.html +161 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename.json +3946 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename.md +31 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename2.html +107 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename2.json +2146 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/facename2.md +23 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/footnote-endnote.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/footnote-endnote.json +2865 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/footnote-endnote.md +29 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/headerfooter.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/headerfooter.json +2128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/headerfooter.md +17 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpSummaryInformation.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpSummaryInformation.json +2017 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpSummaryInformation.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_hyperlink_html.snap +608 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_hyperlink_json.snap +31453 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_hyperlink_markdown.snap +290 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_linespacing_html.snap +167 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_linespacing_json.snap +3616 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_linespacing_markdown.snap +59 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_test_hwpx_html.snap +509 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_test_hwpx_json.snap +22602 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/hwpx_tests__hwpx_test_hwpx_markdown.snap +185 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/BIN0001.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/BIN0002.bmp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/BIN0003.bmp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/BIN0004.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/noori/BIN0001.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/noori/BIN0002.bmp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/noori/BIN0003.bmp +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/images/noori/BIN0004.jpg +0 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.html +134 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.json +2271 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.md +13 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue30.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue30.json +1829 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/issue30.md +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/linespacing.html +163 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/linespacing.json +4387 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/linespacing.md +59 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists-bullet.html +152 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists-bullet.json +10509 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists-bullet.md +231 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists.html +155 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists.json +7224 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/lists.md +129 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/matrix.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/matrix.json +2536 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/matrix.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.html +131 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.json +3308 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.md +20 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-layout.html +140 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-layout.json +5266 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-layout.md +36 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-widths.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-widths.json +2010 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns-widths.md +13 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns.json +6060 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/multicolumns.md +11 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/noori.html +383 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/noori.json +22523 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/noori.md +140 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/outline.html +155 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/outline.json +4292 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/outline.md +37 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/page.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/page.json +4299 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/page.md +13 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/pagedefs.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/pagedefs.json +2092 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/pagedefs.md +14 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/parashape.html +152 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/parashape.json +2749 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/parashape.md +25 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/sample-5017-pics.json +4078 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/sample-5017-pics.md +86 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/sample-5017.json +5399 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/sample-5017.md +42 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/selfintroduce.html +152 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/selfintroduce.json +3424 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/selfintroduce.md +23 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapecontainer-2.json +2129 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapecontainer-2.md +11 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapeline.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapeline.json +2040 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapeline.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapepict-scaled.json +1901 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shapepict-scaled.md +16 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shaperect.html +131 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shaperect.json +2515 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/shaperect.md +6 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_json.snap +7787 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__borderfill_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__borderfill_json.snap +3379 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__borderfill_markdown.snap +20 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_html.snap +175 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_json.snap +3604 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_markdown.snap +25 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_json.snap +1790 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__example_html.snap +166 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__example_json.snap +4126 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__example_markdown.snap +35 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_html.snap +112 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_json.snap +2150 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_markdown.snap +27 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename_html.snap +166 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename_json.snap +3950 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__facename_markdown.snap +35 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_json.snap +2869 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_markdown.snap +33 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_json.snap +2132 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_markdown.snap +21 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_json.snap +2021 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_html.snap +139 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_json.snap +2276 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_markdown.snap +17 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_json.snap +1833 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_markdown.snap +13 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_html.snap +167 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_json.snap +4391 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_markdown.snap +63 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_html.snap +157 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_json.snap +10513 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_markdown.snap +235 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_html.snap +160 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_json.snap +7228 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__lists_markdown.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_json.snap +2540 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_html.snap +136 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_json.snap +3312 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_markdown.snap +24 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_json.snap +6064 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_html.snap +145 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_json.snap +5270 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_markdown.snap +40 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_markdown.snap +15 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_json.snap +2014 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_markdown.snap +17 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__noori_html.snap +388 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__noori_json.snap +22527 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__noori_markdown.snap +144 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__outline_html.snap +160 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__outline_json.snap +4296 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__outline_markdown.snap +41 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__page_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__page_json.snap +4303 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__page_markdown.snap +17 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_json.snap +2096 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_markdown.snap +18 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_html.snap +157 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_json.snap +2753 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_markdown.snap +29 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_html.snap +157 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_json.snap +3428 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_markdown.snap +27 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_json.snap +2044 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_html.snap +136 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_json.snap +2519 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_markdown.snap +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_html.snap +175 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_json.snap +3339 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_markdown.snap +19 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_html.snap +154 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_json.snap +3341 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_markdown.snap +25 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table2_html.snap +158 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table2_json.snap +3345 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table2_markdown.snap +19 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_html.snap +136 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_json.snap +5091 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_markdown.snap +63 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_json.snap +2511 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_markdown.snap +15 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_html.snap +139 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_json.snap +12416 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_markdown.snap +99 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_json.snap +2315 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_markdown.snap +14 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_html.snap +166 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_json.snap +3534 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_markdown.snap +33 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_html.snap +133 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_json.snap +1769 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_markdown.snap +13 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/strikethrough.html +170 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/strikethrough.json +3335 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/strikethrough.md +15 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/tabdef.html +149 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/tabdef.json +3337 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/tabdef.md +21 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-caption.html +131 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-caption.json +5087 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-caption.md +59 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-position.html +134 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-position.json +12412 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table-position.md +95 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table.json +2507 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table.md +11 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table2.html +154 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table2.json +3341 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/table2.md +15 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/textbox.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/textbox.json +2311 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/textbox.md +10 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/underline-styles.html +161 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/underline-styles.json +3530 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/underline-styles.md +29 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/viewtext.html +128 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/viewtext.json +1765 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/snapshots/viewtext.md +9 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/test_crossing_hyperlink.rs +79 -0
- hwpxkit-0.2.0/crates/hwp-core/tests/test_new_file.rs +64 -0
- hwpxkit-0.2.0/packages/hwpx-python/Cargo.toml +25 -0
- hwpxkit-0.2.0/packages/hwpx-python/README.md +128 -0
- hwpxkit-0.2.0/packages/hwpx-python/python/hwpx/__init__.py +31 -0
- hwpxkit-0.2.0/packages/hwpx-python/python/hwpx/__init__.pyi +135 -0
- hwpxkit-0.2.0/packages/hwpx-python/python/hwpx/py.typed +1 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_debug_output.py +98 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_debug_output_test.py +101 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_panics.py +113 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_panics_test.py +106 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_todos.py +205 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_no_production_todos_test.py +83 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_pyo3_gil_release.py +79 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_pyo3_gil_release_test.py +65 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_release_docs_test.py +162 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_release_versions.py +132 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_release_versions_test.py +160 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_sdist_contents.py +364 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_sdist_contents_test.py +272 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_sdist_install.py +205 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_sdist_install_test.py +156 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_wheel_contents.py +454 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_wheel_contents_test.py +456 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_wheel_install.py +180 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_wheel_install_test.py +89 -0
- hwpxkit-0.2.0/packages/hwpx-python/scripts/check_workflows_test.py +200 -0
- hwpxkit-0.2.0/packages/hwpx-python/src/lib.rs +745 -0
- hwpxkit-0.2.0/packages/hwpx-python/uv.lock +8 -0
- hwpxkit-0.2.0/pyproject.toml +64 -0
- hwpxkit-0.2.0/python/hwpx/__init__.py +31 -0
- hwpxkit-0.2.0/python/hwpx/__init__.pyi +135 -0
- hwpxkit-0.2.0/python/hwpx/py.typed +1 -0
hwpxkit-0.2.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1150 @@
|
|
|
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 = "anes"
|
|
22
|
+
version = "0.1.6"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.13"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "arbitrary"
|
|
34
|
+
version = "1.4.2"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"derive_arbitrary",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "autocfg"
|
|
43
|
+
version = "1.5.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "base64"
|
|
49
|
+
version = "0.22.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "bitflags"
|
|
55
|
+
version = "2.13.0"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bumpalo"
|
|
61
|
+
version = "3.19.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "cast"
|
|
67
|
+
version = "0.3.0"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "cfb"
|
|
73
|
+
version = "0.12.1"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "fb9b414dc579b1b0194d06e65472b6ee2e87f623f970a715e3bb04e105400ffa"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"fnv",
|
|
78
|
+
"uuid",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "cfg-if"
|
|
83
|
+
version = "1.0.4"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "ciborium"
|
|
89
|
+
version = "0.2.2"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"ciborium-io",
|
|
94
|
+
"ciborium-ll",
|
|
95
|
+
"serde",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "ciborium-io"
|
|
100
|
+
version = "0.2.2"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "ciborium-ll"
|
|
106
|
+
version = "0.2.2"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"ciborium-io",
|
|
111
|
+
"half",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "clap"
|
|
116
|
+
version = "4.6.0"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"clap_builder",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "clap_builder"
|
|
125
|
+
version = "4.6.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"anstyle",
|
|
130
|
+
"clap_lex",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "clap_lex"
|
|
135
|
+
version = "1.1.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "console"
|
|
141
|
+
version = "0.15.11"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"encode_unicode",
|
|
146
|
+
"libc",
|
|
147
|
+
"once_cell",
|
|
148
|
+
"windows-sys",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "crc32fast"
|
|
153
|
+
version = "1.5.0"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"cfg-if",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "criterion"
|
|
162
|
+
version = "0.5.1"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"anes",
|
|
167
|
+
"cast",
|
|
168
|
+
"ciborium",
|
|
169
|
+
"clap",
|
|
170
|
+
"criterion-plot",
|
|
171
|
+
"is-terminal",
|
|
172
|
+
"itertools",
|
|
173
|
+
"num-traits",
|
|
174
|
+
"once_cell",
|
|
175
|
+
"oorandom",
|
|
176
|
+
"plotters",
|
|
177
|
+
"rayon",
|
|
178
|
+
"regex",
|
|
179
|
+
"serde",
|
|
180
|
+
"serde_derive",
|
|
181
|
+
"serde_json",
|
|
182
|
+
"tinytemplate",
|
|
183
|
+
"walkdir",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "criterion-plot"
|
|
188
|
+
version = "0.5.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"cast",
|
|
193
|
+
"itertools",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "crossbeam-deque"
|
|
198
|
+
version = "0.8.6"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"crossbeam-epoch",
|
|
203
|
+
"crossbeam-utils",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "crossbeam-epoch"
|
|
208
|
+
version = "0.9.18"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"crossbeam-utils",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "crossbeam-utils"
|
|
217
|
+
version = "0.8.21"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "crunchy"
|
|
223
|
+
version = "0.2.4"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "derive_arbitrary"
|
|
229
|
+
version = "1.4.2"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"proc-macro2",
|
|
234
|
+
"quote",
|
|
235
|
+
"syn",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "displaydoc"
|
|
240
|
+
version = "0.2.5"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"proc-macro2",
|
|
245
|
+
"quote",
|
|
246
|
+
"syn",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "either"
|
|
251
|
+
version = "1.15.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "encode_unicode"
|
|
257
|
+
version = "1.0.0"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "encoding_rs"
|
|
263
|
+
version = "0.8.35"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"cfg-if",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "equivalent"
|
|
272
|
+
version = "1.0.2"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "flate2"
|
|
278
|
+
version = "1.1.5"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"crc32fast",
|
|
283
|
+
"miniz_oxide",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "fnv"
|
|
288
|
+
version = "1.0.7"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "getrandom"
|
|
294
|
+
version = "0.3.4"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"cfg-if",
|
|
299
|
+
"libc",
|
|
300
|
+
"r-efi",
|
|
301
|
+
"wasip2",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "half"
|
|
306
|
+
version = "2.7.1"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"cfg-if",
|
|
311
|
+
"crunchy",
|
|
312
|
+
"zerocopy",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "hashbrown"
|
|
317
|
+
version = "0.16.1"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "heck"
|
|
323
|
+
version = "0.5.0"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "hermit-abi"
|
|
329
|
+
version = "0.5.2"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "hwp-core"
|
|
335
|
+
version = "0.2.0"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"base64",
|
|
338
|
+
"cfb",
|
|
339
|
+
"criterion",
|
|
340
|
+
"encoding_rs",
|
|
341
|
+
"flate2",
|
|
342
|
+
"insta",
|
|
343
|
+
"log",
|
|
344
|
+
"pathdiff",
|
|
345
|
+
"proptest",
|
|
346
|
+
"quick-xml",
|
|
347
|
+
"serde",
|
|
348
|
+
"serde_json",
|
|
349
|
+
"thiserror",
|
|
350
|
+
"toml",
|
|
351
|
+
"unicode-normalization",
|
|
352
|
+
"zip",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "hwpx-python"
|
|
357
|
+
version = "0.2.0"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"hwp-core",
|
|
360
|
+
"pyo3",
|
|
361
|
+
"serde_json",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "indexmap"
|
|
366
|
+
version = "2.12.1"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"equivalent",
|
|
371
|
+
"hashbrown",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "insta"
|
|
376
|
+
version = "1.44.1"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "e8732d3774162a0851e3f2b150eb98f31a9885dd75985099421d393385a01dfd"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"console",
|
|
381
|
+
"once_cell",
|
|
382
|
+
"similar",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "is-terminal"
|
|
387
|
+
version = "0.4.17"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"hermit-abi",
|
|
392
|
+
"libc",
|
|
393
|
+
"windows-sys",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "itertools"
|
|
398
|
+
version = "0.10.5"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"either",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "itoa"
|
|
407
|
+
version = "1.0.15"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "js-sys"
|
|
413
|
+
version = "0.3.82"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"once_cell",
|
|
418
|
+
"wasm-bindgen",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "libc"
|
|
423
|
+
version = "0.2.177"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "log"
|
|
429
|
+
version = "0.4.29"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "memchr"
|
|
435
|
+
version = "2.7.6"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "miniz_oxide"
|
|
441
|
+
version = "0.8.9"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"adler2",
|
|
446
|
+
"simd-adler32",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "num-traits"
|
|
451
|
+
version = "0.2.19"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"autocfg",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "once_cell"
|
|
460
|
+
version = "1.21.3"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "oorandom"
|
|
466
|
+
version = "11.1.5"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "pathdiff"
|
|
472
|
+
version = "0.2.3"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "plotters"
|
|
478
|
+
version = "0.3.7"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"num-traits",
|
|
483
|
+
"plotters-backend",
|
|
484
|
+
"plotters-svg",
|
|
485
|
+
"wasm-bindgen",
|
|
486
|
+
"web-sys",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "plotters-backend"
|
|
491
|
+
version = "0.3.7"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "plotters-svg"
|
|
497
|
+
version = "0.3.7"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"plotters-backend",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "portable-atomic"
|
|
506
|
+
version = "1.11.1"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "ppv-lite86"
|
|
512
|
+
version = "0.2.21"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"zerocopy",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "proc-macro2"
|
|
521
|
+
version = "1.0.103"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"unicode-ident",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "proptest"
|
|
530
|
+
version = "1.11.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"bitflags",
|
|
535
|
+
"num-traits",
|
|
536
|
+
"rand",
|
|
537
|
+
"rand_chacha",
|
|
538
|
+
"rand_xorshift",
|
|
539
|
+
"regex-syntax",
|
|
540
|
+
"unarray",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "pyo3"
|
|
545
|
+
version = "0.28.3"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"libc",
|
|
550
|
+
"once_cell",
|
|
551
|
+
"portable-atomic",
|
|
552
|
+
"pyo3-build-config",
|
|
553
|
+
"pyo3-ffi",
|
|
554
|
+
"pyo3-macros",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "pyo3-build-config"
|
|
559
|
+
version = "0.28.3"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"target-lexicon",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "pyo3-ffi"
|
|
568
|
+
version = "0.28.3"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"libc",
|
|
573
|
+
"pyo3-build-config",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "pyo3-macros"
|
|
578
|
+
version = "0.28.3"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"proc-macro2",
|
|
583
|
+
"pyo3-macros-backend",
|
|
584
|
+
"quote",
|
|
585
|
+
"syn",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "pyo3-macros-backend"
|
|
590
|
+
version = "0.28.3"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"heck",
|
|
595
|
+
"proc-macro2",
|
|
596
|
+
"pyo3-build-config",
|
|
597
|
+
"quote",
|
|
598
|
+
"syn",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "quick-xml"
|
|
603
|
+
version = "0.37.5"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"memchr",
|
|
608
|
+
"serde",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "quote"
|
|
613
|
+
version = "1.0.42"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"proc-macro2",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "r-efi"
|
|
622
|
+
version = "5.3.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "rand"
|
|
628
|
+
version = "0.9.4"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"rand_chacha",
|
|
633
|
+
"rand_core",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "rand_chacha"
|
|
638
|
+
version = "0.9.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"ppv-lite86",
|
|
643
|
+
"rand_core",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "rand_core"
|
|
648
|
+
version = "0.9.5"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"getrandom",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "rand_xorshift"
|
|
657
|
+
version = "0.4.0"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"rand_core",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "rayon"
|
|
666
|
+
version = "1.11.0"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"either",
|
|
671
|
+
"rayon-core",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "rayon-core"
|
|
676
|
+
version = "1.13.0"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"crossbeam-deque",
|
|
681
|
+
"crossbeam-utils",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "regex"
|
|
686
|
+
version = "1.12.3"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"aho-corasick",
|
|
691
|
+
"memchr",
|
|
692
|
+
"regex-automata",
|
|
693
|
+
"regex-syntax",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "regex-automata"
|
|
698
|
+
version = "0.4.14"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"aho-corasick",
|
|
703
|
+
"memchr",
|
|
704
|
+
"regex-syntax",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "regex-syntax"
|
|
709
|
+
version = "0.8.10"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "rustversion"
|
|
715
|
+
version = "1.0.22"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "ryu"
|
|
721
|
+
version = "1.0.20"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "same-file"
|
|
727
|
+
version = "1.0.6"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"winapi-util",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "serde"
|
|
736
|
+
version = "1.0.228"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"serde_core",
|
|
741
|
+
"serde_derive",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "serde_core"
|
|
746
|
+
version = "1.0.228"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"serde_derive",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "serde_derive"
|
|
755
|
+
version = "1.0.228"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"proc-macro2",
|
|
760
|
+
"quote",
|
|
761
|
+
"syn",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "serde_json"
|
|
766
|
+
version = "1.0.145"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"itoa",
|
|
771
|
+
"memchr",
|
|
772
|
+
"ryu",
|
|
773
|
+
"serde",
|
|
774
|
+
"serde_core",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "serde_spanned"
|
|
779
|
+
version = "0.6.9"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"serde",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "simd-adler32"
|
|
788
|
+
version = "0.3.7"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "similar"
|
|
794
|
+
version = "2.7.0"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "syn"
|
|
800
|
+
version = "2.0.111"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"proc-macro2",
|
|
805
|
+
"quote",
|
|
806
|
+
"unicode-ident",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "target-lexicon"
|
|
811
|
+
version = "0.13.5"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "thiserror"
|
|
817
|
+
version = "2.0.17"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"thiserror-impl",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "thiserror-impl"
|
|
826
|
+
version = "2.0.17"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"proc-macro2",
|
|
831
|
+
"quote",
|
|
832
|
+
"syn",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "tinytemplate"
|
|
837
|
+
version = "1.2.1"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"serde",
|
|
842
|
+
"serde_json",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "tinyvec"
|
|
847
|
+
version = "1.11.0"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"tinyvec_macros",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "tinyvec_macros"
|
|
856
|
+
version = "0.1.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "toml"
|
|
862
|
+
version = "0.8.23"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"serde",
|
|
867
|
+
"serde_spanned",
|
|
868
|
+
"toml_datetime",
|
|
869
|
+
"toml_edit",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "toml_datetime"
|
|
874
|
+
version = "0.6.11"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"serde",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "toml_edit"
|
|
883
|
+
version = "0.22.27"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"indexmap",
|
|
888
|
+
"serde",
|
|
889
|
+
"serde_spanned",
|
|
890
|
+
"toml_datetime",
|
|
891
|
+
"toml_write",
|
|
892
|
+
"winnow",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "toml_write"
|
|
897
|
+
version = "0.1.2"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "unarray"
|
|
903
|
+
version = "0.1.4"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "unicode-ident"
|
|
909
|
+
version = "1.0.22"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "unicode-normalization"
|
|
915
|
+
version = "0.1.25"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"tinyvec",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "uuid"
|
|
924
|
+
version = "1.18.1"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"js-sys",
|
|
929
|
+
"wasm-bindgen",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "walkdir"
|
|
934
|
+
version = "2.5.0"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"same-file",
|
|
939
|
+
"winapi-util",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "wasip2"
|
|
944
|
+
version = "1.0.3+wasi-0.2.9"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"wit-bindgen",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "wasm-bindgen"
|
|
953
|
+
version = "0.2.105"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"cfg-if",
|
|
958
|
+
"once_cell",
|
|
959
|
+
"rustversion",
|
|
960
|
+
"wasm-bindgen-macro",
|
|
961
|
+
"wasm-bindgen-shared",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "wasm-bindgen-macro"
|
|
966
|
+
version = "0.2.105"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"quote",
|
|
971
|
+
"wasm-bindgen-macro-support",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "wasm-bindgen-macro-support"
|
|
976
|
+
version = "0.2.105"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"bumpalo",
|
|
981
|
+
"proc-macro2",
|
|
982
|
+
"quote",
|
|
983
|
+
"syn",
|
|
984
|
+
"wasm-bindgen-shared",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "wasm-bindgen-shared"
|
|
989
|
+
version = "0.2.105"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"unicode-ident",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "web-sys"
|
|
998
|
+
version = "0.3.82"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"js-sys",
|
|
1003
|
+
"wasm-bindgen",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "winapi-util"
|
|
1008
|
+
version = "0.1.11"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"windows-sys",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "windows-sys"
|
|
1017
|
+
version = "0.59.0"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"windows-targets",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "windows-targets"
|
|
1026
|
+
version = "0.52.6"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"windows_aarch64_gnullvm",
|
|
1031
|
+
"windows_aarch64_msvc",
|
|
1032
|
+
"windows_i686_gnu",
|
|
1033
|
+
"windows_i686_gnullvm",
|
|
1034
|
+
"windows_i686_msvc",
|
|
1035
|
+
"windows_x86_64_gnu",
|
|
1036
|
+
"windows_x86_64_gnullvm",
|
|
1037
|
+
"windows_x86_64_msvc",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "windows_aarch64_gnullvm"
|
|
1042
|
+
version = "0.52.6"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "windows_aarch64_msvc"
|
|
1048
|
+
version = "0.52.6"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "windows_i686_gnu"
|
|
1054
|
+
version = "0.52.6"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "windows_i686_gnullvm"
|
|
1060
|
+
version = "0.52.6"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "windows_i686_msvc"
|
|
1066
|
+
version = "0.52.6"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "windows_x86_64_gnu"
|
|
1072
|
+
version = "0.52.6"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "windows_x86_64_gnullvm"
|
|
1078
|
+
version = "0.52.6"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "windows_x86_64_msvc"
|
|
1084
|
+
version = "0.52.6"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "winnow"
|
|
1090
|
+
version = "0.7.15"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"memchr",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "wit-bindgen"
|
|
1099
|
+
version = "0.57.1"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "zerocopy"
|
|
1105
|
+
version = "0.8.42"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"zerocopy-derive",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "zerocopy-derive"
|
|
1114
|
+
version = "0.8.42"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"proc-macro2",
|
|
1119
|
+
"quote",
|
|
1120
|
+
"syn",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "zip"
|
|
1125
|
+
version = "2.4.2"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"arbitrary",
|
|
1130
|
+
"crc32fast",
|
|
1131
|
+
"crossbeam-utils",
|
|
1132
|
+
"displaydoc",
|
|
1133
|
+
"flate2",
|
|
1134
|
+
"indexmap",
|
|
1135
|
+
"memchr",
|
|
1136
|
+
"thiserror",
|
|
1137
|
+
"zopfli",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "zopfli"
|
|
1142
|
+
version = "0.8.3"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"bumpalo",
|
|
1147
|
+
"crc32fast",
|
|
1148
|
+
"log",
|
|
1149
|
+
"simd-adler32",
|
|
1150
|
+
]
|