[package]
edition = "2021"
rust-version = "1.85"
name = "heal-cli"
version = "0.4.0"
authors = ["Kazuyuki SUZUKI"]
build = false
include = [
"src/**/*",
"tests/**/*",
"skills/**/*",
"queries/**/*.scm",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hook-driven Evaluation & Autonomous Loop — code-health harness CLI for AI coding agents"
homepage = "https://github.com/kechol/heal"
documentation = "https://docs.rs/heal-cli"
readme = "README.md"
keywords = [
"code-quality",
"metrics",
"complexity",
"claude",
"harness",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kechol/heal"
[features]
default = [
"lang-typescript",
"lang-javascript",
"lang-python",
"lang-go",
"lang-scala",
"lang-rust",
]
lang-go = ["dep:tree-sitter-go"]
lang-javascript = ["dep:tree-sitter-javascript"]
lang-js = ["lang-javascript"]
lang-py = ["lang-python"]
lang-python = ["dep:tree-sitter-python"]
lang-rust = ["dep:tree-sitter-rust"]
lang-scala = ["dep:tree-sitter-scala"]
lang-ts = ["lang-typescript"]
lang-typescript = ["dep:tree-sitter-typescript"]
[lib]
name = "heal_cli"
path = "src/lib.rs"
[[bin]]
name = "heal"
path = "src/main.rs"
[[test]]
name = "core_config"
path = "tests/core_config.rs"
[[test]]
name = "core_doc_pairs"
path = "tests/core_doc_pairs.rs"
[[test]]
name = "core_paths"
path = "tests/core_paths.rs"
[[test]]
name = "observer_code_change_coupling"
path = "tests/observer_code_change_coupling.rs"
[[test]]
name = "observer_code_churn"
path = "tests/observer_code_churn.rs"
[[test]]
name = "observer_code_complexity"
path = "tests/observer_code_complexity.rs"
[[test]]
name = "observer_code_complexity_observer"
path = "tests/observer_code_complexity_observer.rs"
[[test]]
name = "observer_code_duplication"
path = "tests/observer_code_duplication.rs"
[[test]]
name = "observer_code_hotspot"
path = "tests/observer_code_hotspot.rs"
[[test]]
name = "observer_code_loc"
path = "tests/observer_code_loc.rs"
[[test]]
name = "observer_docs_coverage"
path = "tests/observer_docs_coverage.rs"
[[test]]
name = "observer_docs_drift"
path = "tests/observer_docs_drift.rs"
[[test]]
name = "observer_docs_freshness"
path = "tests/observer_docs_freshness.rs"
[[test]]
name = "observer_docs_layer_b"
path = "tests/observer_docs_layer_b.rs"
[[test]]
name = "observer_test_coupling_drift"
path = "tests/observer_test_coupling_drift.rs"
[[test]]
name = "observer_test_coverage"
path = "tests/observer_test_coverage.rs"
[[test]]
name = "observer_test_is_test_file"
path = "tests/observer_test_is_test_file.rs"
[[test]]
name = "observer_test_skip_ratio"
path = "tests/observer_test_skip_ratio.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"wrap_help",
]
[dependencies.git2]
version = "0.20"
features = ["vendored-libgit2"]
default-features = false
[dependencies.ignore]
version = "0.4"
[dependencies.include_dir]
version = "0.7"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokei]
version = "14"
default-features = false
[dependencies.toml]
version = "1.1"
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-go]
version = "0.25"
optional = true
[dependencies.tree-sitter-javascript]
version = "0.25"
optional = true
[dependencies.tree-sitter-python]
version = "0.25"
optional = true
[dependencies.tree-sitter-rust]
version = "0.24"
optional = true
[dependencies.tree-sitter-scala]
version = "0.26"
optional = true
[dependencies.tree-sitter-typescript]
version = "0.23"
optional = true
[dev-dependencies.git2]
version = "0.20"
features = ["vendored-libgit2"]
default-features = false
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"