[package]
edition = "2024"
rust-version = "1.85"
name = "zhao-cli"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, offline change-review and CI gate for data transformation projects."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/allenhori/zhao-cli"
resolver = "2"
[[bin]]
name = "zhao"
path = "src/main.rs"
[[test]]
name = "addon_dispatch"
path = "tests/addon_dispatch.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "lineage"
path = "tests/lineage.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "update"
path = "tests/update.rs"
[dependencies.clap]
version = "4.6.5"
features = ["derive"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.shell-words]
version = "1.1.1"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "2.0.19"
[dependencies.ureq]
version = "2"
features = ["tls"]
default-features = false
[dependencies.zhao-core]
version = "0.2.0"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.predicates]
version = "3.1.4"
[target."cfg(not(windows))".dependencies.flate2]
version = "1.1"
[target."cfg(not(windows))".dependencies.tar]
version = "0.4"
[target."cfg(windows)".dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"