[package]
edition = "2024"
name = "textcanvas"
version = "3.9.0"
authors = ["Quentin Richert <noreply@richert.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Draw to the terminal like an HTML Canvas."
readme = "README.md"
keywords = [
"terminal-graphics",
"braille",
"canvas",
"drawing",
"visualization",
]
categories = [
"command-line-interface",
"graphics",
"rendering::engine",
"visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qrichert/textcanvas.git"
[lib]
name = "textcanvas"
path = "src/lib.rs"
[[bin]]
name = "textcanvas"
path = "src/main.rs"
[[example]]
name = "cube"
path = "examples/cube.rs"
[[example]]
name = "matrix"
path = "examples/matrix.rs"
[[example]]
name = "sines"
path = "examples/sines.rs"
[dependencies]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]
[profile.release]
strip = true