[package]
name = "debtmap"
version = "0.2.7"
edition = "2021"
authors = ["Glen Baker <iepathos@gmail.com>"]
description = "Code complexity and technical debt analyzer"
license = "MIT"
repository = "https://github.com/iepathos/debtmap"
readme = "README.md"
keywords = ["code-analysis", "technical-debt", "complexity", "static-analysis"]
categories = ["development-tools", "command-line-utilities"]
[lib]
name = "debtmap"
path = "src/lib.rs"
[[bin]]
name = "debtmap"
path = "src/main.rs"
[[bin]]
name = "prodigy-validate-debtmap-improvement"
path = "src/bin/prodigy-validate-debtmap-improvement.rs"
[dependencies]
syn = { version = "2.0", features = ["full", "visit", "extra-traits"] }
proc-macro2 = { version = "1.0", features = ["span-locations"] }
rustpython-parser = "0.4"
tree-sitter = "0.25"
tree-sitter-javascript = "0.25"
tree-sitter-typescript = "0.23"
clap = { version = "4.5", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.9"
im = { version = "15.1", features = ["serde"] }
lcov = "0.8"
rayon = "1.10"
dashmap = "6.1"
crossbeam = "0.8"
sha2 = "0.10"
quote = "1.0"
glob = "0.3"
regex = "1.10"
which = "8.0"
anyhow = "1.0"
thiserror = "2.0"
walkdir = "2.5"
ignore = "0.4"
colored = "3.0"
comfy-table = "7.1"
chrono = { version = "0.4", features = ["serde"] }
pathdiff = "0.2"
once_cell = "1.21.3"
log = "0.4"
env_logger = "0.11"
petgraph = "0.8"
lazy_static = "1.5.0"
[dev-dependencies]
cargo-modules = "0.24"
proptest = "1.4"
pretty_assertions = "1.4"
tempfile = "3.10"
criterion = "0.7"
indoc = "2.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
incremental = true
[profile.dev.package."*"]
opt-level = 3
[[bench]]
name = "cache_pruning"
harness = false
[[bench]]
name = "call_graph_bench"
harness = false
[[bench]]
name = "lcov_parallel_bench"
harness = false
[[bench]]
name = "parallel_performance"
harness = false
[[bench]]
name = "python_type_inference_bench"
harness = false
[[bench]]
name = "unified_output_format_bench"
harness = false