rdocx-cli 0.3.0

CLI tool for inspecting, converting, and manipulating DOCX files
[package]
name = "rdocx-cli"
description = "CLI tool for inspecting, converting, and manipulating DOCX files"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true

[[bin]]
name = "rdocx"
path = "src/main.rs"
# The binary shares its name with the `rdocx` library crate, which makes
# `cargo doc --workspace` collide on the output path. The CLI has no API docs
# worth publishing, so skip it.
doc = false

[dependencies]
rdocx = { workspace = true }
rdocx-oxml = { workspace = true }
rdocx-opc = { workspace = true }
clap = { workspace = true }
serde_json = { workspace = true }