pptx 0.1.0

A Rust library for creating and manipulating PowerPoint (.pptx) files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "pptx"
version = "0.1.0"
authors = ["Hidemi Ito"]
build = false
exclude = [
    "COMPATIBILITY.md",
    "CONTRIBUTING.md",
    ".github/",
    "*.rlib",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for creating and manipulating PowerPoint (.pptx) files"
homepage = "https://github.com/hidemi-ito/rust-pptx"
documentation = "https://docs.rs/pptx"
readme = "README.md"
keywords = [
    "pptx",
    "powerpoint",
    "presentation",
    "office",
    "openxml",
]
categories = [
    "parser-implementations",
    "encoding",
]
license = "MIT"
repository = "https://github.com/hidemi-ito/rust-pptx"

[features]
cli = ["dep:clap"]
default = []

[lib]
name = "pptx"
path = "src/lib.rs"

[[bin]]
name = "pptx-cli"
path = "src/bin/pptx_cli.rs"
required-features = ["cli"]

[[example]]
name = "add_chart"
path = "examples/add_chart.rs"

[[example]]
name = "create_presentation"
path = "examples/create_presentation.rs"

[[example]]
name = "open_and_inspect"
path = "examples/open_and_inspect.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.quick-xml]
version = "0.39"

[dependencies.sha1]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.zip]
version = "7"
features = [
    "deflate-flate2-zlib-rs",
    "time",
]
default-features = false

[dev-dependencies.tempfile]
version = "3"