[package]
edition = "2024"
rust-version = "1.85"
name = "zenith-tx"
version = "0.0.7"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zenith transaction op set, apply/dry-run engine, diffs, and audit records."
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"
[lib]
name = "zenith_tx"
path = "src/lib.rs"
[[test]]
name = "add_remove"
path = "tests/add_remove.rs"
[[test]]
name = "align_distribute"
path = "tests/align_distribute.rs"
[[test]]
name = "asset_ops"
path = "tests/asset_ops.rs"
[[test]]
name = "layout_ops"
path = "tests/layout_ops.rs"
[[test]]
name = "pattern_ops"
path = "tests/pattern_ops.rs"
[[test]]
name = "recipe_ops"
path = "tests/recipe_ops.rs"
[[test]]
name = "set_ops"
path = "tests/set_ops.rs"
[[test]]
name = "structure"
path = "tests/structure.rs"
[[test]]
name = "style_prop_ops"
path = "tests/style_prop_ops.rs"
[[test]]
name = "table_cell_ops"
path = "tests/table_cell_ops.rs"
[[test]]
name = "text_edit_ops"
path = "tests/text_edit_ops.rs"
[[test]]
name = "token_ops"
path = "tests/token_ops.rs"
[[test]]
name = "transaction"
path = "tests/transaction.rs"
[[test]]
name = "unknown_node_ops"
path = "tests/unknown_node_ops.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.zenith-core]
version = "=0.0.7"
[dependencies.zenith-scene]
version = "=0.0.7"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"