[package]
name = "rpic-cli"
description = "Command-line front-end for rpic (the pic graphics language → SVG/PNG/PDF)."
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
keywords = ["pic", "svg", "diagram", "graphics", "cli"]
categories = ["command-line-utilities", "graphics"]
[[bin]]
name = "rpic"
path = "src/main.rs"
[dependencies]
rpic-core = { version = "0.6.0", path = "../core" }
rpic-render = { version = "0.6.0", path = "../render" }
[package.metadata.deb]
maintainer = "André Leite <leite@de.ufpe.br>"
copyright = "2026, André Leite"
license-file = ["../../LICENSE", "0"]
extended-description = "rpic renders the pic picture-drawing language to SVG, PNG and PDF, with a native circuit-element library."
section = "graphics"
priority = "optional"
assets = [
["target/release/rpic", "usr/bin/", "755"],
["../../README.md", "usr/share/doc/rpic/README.md", "644"],
]