[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"
repository = "https://github.com/pokeyaro/termcinema"
homepage = "https://github.com/pokeyaro/termcinema"
documentation = "https://docs.rs/termcinema-cli"
keywords = ["ascii", "cli", "renderer", "svg", "terminal"]
categories = ["command-line-utilities", "graphics", "visualization"]
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE*"
]
[dependencies]
termcinema-engine = "0.1"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
atty = "0.2"
[patch.crates-io]
termcinema-engine = { path = "../engine" }
[lib]
name = "termcinema_cli"
path = "src/lib.rs"
[[bin]]
name = "termcinema"
path = "src/main.rs"
[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
strip = true
panic = "abort"
incremental = false