[package]
edition = "2024"
rust-version = "1.93"
name = "officemd_cli"
version = "0.1.4"
authors = ["Thomas Aubry"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for OfficeMD document extraction and markdown rendering"
homepage = "https://github.com/ThomAub/officemd"
documentation = "https://docs.rs/officemd_cli"
readme = "README.md"
keywords = [
"officemd",
"cli",
"docx",
"xlsx",
"csv",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/ThomAub/officemd"
[[bin]]
name = "officemd"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.officemd_core]
version = "0.1.4"
[dependencies.officemd_csv]
version = "0.1.4"
[dependencies.officemd_docx]
version = "0.1.4"
[dependencies.officemd_markdown]
version = "0.1.4"
[dependencies.officemd_pdf]
version = "0.1.4"
[dependencies.officemd_pptx]
version = "0.1.4"
[dependencies.officemd_xlsx]
version = "0.1.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.similar]
version = "2.7"
[dev-dependencies.zip]
version = "2.2"