[package]
edition = "2024"
rust-version = "1.93"
name = "rpptx-cli"
version = "0.1.3"
authors = ["Atul Sharma"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for inspecting, converting, and manipulating PPTX files"
homepage = "https://github.com/tensorbee/rdocx"
readme = false
keywords = [
"pptx",
"powerpoint",
"ooxml",
"presentation",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tensorbee/rdocx"
[package.metadata.release]
shared-version = "incubating"
tag-name = "rpptx-v{{version}}"
[[bin]]
name = "rpptx"
path = "src/main.rs"
doc = false
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.oxml-cli-support]
version = "0.1.3"
[dependencies.oxml-pdf]
version = "0.1.3"
default-features = false
[dependencies.rpptx]
version = "0.1.3"
features = ["render"]
default-features = false
[dependencies.serde_json]
version = "1"
[dev-dependencies.oxml-opc]
version = "0.1.3"
[dev-dependencies.rpptx]
version = "0.1.3"
features = [
"default-template",
"render",
]
default-features = false