termcinema-cli 0.1.0

🎬 Animated terminal-to-SVG renderer CLI for the termcinema project
Documentation
[package]
name = "termcinema-cli"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"

authors = ["Pokeya Z. Chen <pokeya.mystic@gmail.com>"]
license = "MIT OR Apache-2.0"

description = "🎬 Animated terminal-to-SVG renderer CLI for the termcinema project"
readme = "README.md"

# Links
repository = "https://github.com/pokeyaro/termcinema"
homepage = "https://github.com/pokeyaro/termcinema"
documentation = "https://docs.rs/termcinema-cli"

# Metadata for crates.io indexing
keywords = ["ascii", "cli", "renderer", "svg", "terminal"]
categories = ["command-line-utilities", "graphics", "visualization"]

# Publish config: limit files in final crate package
include = [
    "src/**",
    "Cargo.toml",
    "README.md",
    "LICENSE*"
]

# Dependencies section
[dependencies]
termcinema-engine = "0.1"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
atty = "0.2"

[patch.crates-io]
termcinema-engine = { path = "../engine" }

# Library target configuration
[lib]
name = "termcinema_cli"
path = "src/lib.rs"

# Binary target configuration
[[bin]]
name = "termcinema"
path = "src/main.rs"

# Optimized release profile
[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
strip = true
panic = "abort"
incremental = false