[package]
edition = "2021"
rust-version = "1.83"
name = "undocx"
version = "0.5.2"
build = false
include = [
"src/**/*",
"tests/*.rs",
"tests/aaa/**/*",
"tests/pandoc/**/*",
"tests/golden/**/*",
"examples/python_example/*.py",
"examples/python_example/*.toml",
"examples/python_example/*.lock",
"README.md",
"pyproject.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "undocx"
description = "DOCX to Markdown converter written in Rust"
homepage = "https://github.com/KimSeogyu/undocx"
documentation = "https://docs.rs/undocx"
readme = "README.md"
keywords = [
"docx",
"markdown",
"converter",
"document",
"office",
]
categories = [
"command-line-utilities",
"text-processing",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/KimSeogyu/undocx"
[features]
default = []
python = ["pyo3"]
[lib]
name = "undocx"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "undocx"
path = "src/main.rs"
[[test]]
name = "generated_regression_test"
path = "tests/generated_regression_test.rs"
[[test]]
name = "golden_snapshot_test"
path = "tests/golden_snapshot_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "invariant_randomized_test"
path = "tests/invariant_randomized_test.rs"
[[test]]
name = "parser_feature_test"
path = "tests/parser_feature_test.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.pyo3]
version = "0.23"
features = [
"extension-module",
"abi3-py312",
]
optional = true
[dependencies.rs-docx]
version = "0.2.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.zip]
version = "2.2"
[dev-dependencies.hard-xml]
version = "1.27.0"
[dev-dependencies.pretty_assertions]
version = "1.4"