dm2xcod 0.2.2

DOCX to Markdown converter written in Rust
Documentation
[package]
name = "dm2xcod"
version = "0.2.2"
edition = "2021"
rust-version = "1.75"
description = "DOCX to Markdown converter written in Rust"
license = "MIT"
repository = "https://github.com/KimSeogyu/dm2xcod"
homepage = "https://github.com/KimSeogyu/dm2xcod"
documentation = "https://docs.rs/dm2xcod"
readme = "README.md"
keywords = ["docx", "markdown", "converter", "document", "office"]
categories = [
    "command-line-utilities",
    "text-processing",
    "parser-implementations",
]
default-run = "dm2xcod"


[features]
default = []
python = ["pyo3"]

[dependencies]
rs-docx = { version = "0.1.8", features = ["async"] }
base64 = "0.22"
thiserror = "2.0"
zip = "2.2"
regex = "1.10"
clap = { version = "4.5", features = ["derive"] }
pyo3 = { version = "0.23", features = ["extension-module"], optional = true }

[lib]
name = "dm2xcod"
crate-type = ["cdylib", "rlib"]

[dev-dependencies]
hard-xml = "1.27.0"
pretty_assertions = "1.4"