[package]
edition = "2024"
name = "stemma-cli"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface to the stemma DOCX engine: compare two files into a tracked-changes redline, extract text/JSON, resolve tracked changes, and validate — a zero-integration path to the core verbs for non-Rust adopters."
readme = "README.md"
keywords = [
"docx",
"cli",
"tracked-changes",
"ooxml",
"redline",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/stemma-sh/stemma"
resolver = "2"
[[bin]]
name = "stemma"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.stemma]
version = "0.1.0"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"