[package]
edition = "2024"
name = "chartlet"
version = "0.1.0-alpha.3"
build = false
exclude = [
"packages/**",
"plan/**",
"gallery/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile structured data into deterministic, accessible static charts"
readme = "README.md"
keywords = [
"charts",
"svg",
"accessibility",
"static",
"visualization",
]
categories = [
"visualization",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/casoon/chartlet"
[lib]
name = "chartlet"
path = "src/lib.rs"
[[bin]]
name = "chartlet"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_path_to_error]
version = "0.1"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"