[package]
edition = "2024"
rust-version = "1.85"
name = "zenith-tool"
version = "0.0.5"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Zenith command-line interface (the `zenith` binary) for the design-document toolchain."
homepage = "https://github.com/zenitheditor/zenith"
readme = "README.md"
keywords = [
"design",
"deterministic",
"kdl",
"rendering",
"agent",
]
categories = [
"rendering",
"command-line-utilities",
"visualization",
]
license = "Apache-2.0"
repository = "https://github.com/zenitheditor/zenith"
[features]
default = []
http = ["dep:tiny_http"]
[lib]
name = "zenith_cli"
path = "src/lib.rs"
[[bin]]
name = "zenith"
path = "src/main.rs"
[[test]]
name = "diagnostic_policy_config"
path = "tests/diagnostic_policy_config.rs"
[[test]]
name = "history_nav"
path = "tests/history_nav.rs"
[[test]]
name = "history_pipeline"
path = "tests/history_pipeline.rs"
[[test]]
name = "history_sync"
path = "tests/history_sync.rs"
[[test]]
name = "history_versions"
path = "tests/history_versions.rs"
[[test]]
name = "image_diagnostics"
path = "tests/image_diagnostics.rs"
[[test]]
name = "inspect_recipes"
path = "tests/inspect_recipes.rs"
[[test]]
name = "mcp"
path = "tests/mcp.rs"
[[test]]
name = "merge_pipeline"
path = "tests/merge_pipeline.rs"
[[test]]
name = "new"
path = "tests/new.rs"
[[test]]
name = "plugin"
path = "tests/plugin.rs"
[[test]]
name = "render_data"
path = "tests/render_data.rs"
[[test]]
name = "render_determinism"
path = "tests/render_determinism.rs"
[[test]]
name = "render_integration"
path = "tests/render_integration.rs"
[[test]]
name = "render_policy"
path = "tests/render_policy.rs"
[[test]]
name = "theme"
path = "tests/theme.rs"
[[test]]
name = "tx_pipeline"
path = "tests/tx_pipeline.rs"
[[test]]
name = "variant_pipeline"
path = "tests/variant_pipeline.rs"
[[test]]
name = "workspace"
path = "tests/workspace.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1"
[dependencies.imagesize]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tiny_http]
version = "0.12"
optional = true
[dependencies.zenith-core]
version = "=0.0.5"
[dependencies.zenith-layout]
version = "=0.0.5"
[dependencies.zenith-render]
version = "=0.0.5"
[dependencies.zenith-scene]
version = "=0.0.5"
[dependencies.zenith-session]
version = "=0.0.5"
[dependencies.zenith-tx]
version = "=0.0.5"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tiny-skia]
version = "0.11"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"