undoc 0.2.0

High-performance Microsoft Office document extraction to Markdown
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.87"
name = "undoc"
version = "0.2.0"
authors = ["iyulab"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Microsoft Office document extraction to Markdown"
documentation = "https://docs.rs/undoc"
readme = "README.md"
keywords = [
    "docx",
    "xlsx",
    "pptx",
    "markdown",
    "office",
]
categories = [
    "parsing",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/iyulab/undoc"

[features]
async = ["tokio"]
default = [
    "docx",
    "xlsx",
    "pptx",
]
docx = []
ffi = []
pptx = []
xlsx = []

[lib]
name = "undoc"
crate-type = [
    "lib",
    "cdylib",
]
path = "src/lib.rs"

[[bin]]
name = "explore"
path = "src/bin/explore.rs"

[[bin]]
name = "explore_pptx"
path = "src/bin/explore_pptx.rs"

[[bin]]
name = "explore_xlsx"
path = "src/bin/explore_xlsx.rs"

[[test]]
name = "officedissector_corpus"
path = "tests/officedissector_corpus.rs"

[[test]]
name = "quality_report"
path = "tests/quality_report.rs"

[[bench]]
name = "parse_benchmark"
path = "benches/parse_benchmark.rs"
harness = false

[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.42"
features = [
    "rt",
    "fs",
]
optional = true

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.unicode-width]
version = "0.2"

[dependencies.zip]
version = "2.2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3.14"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1