debtmap 0.1.3

Code complexity and technical debt analyzer
Documentation
[[bin]]
name = "debtmap"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.clap]
features = ["derive", "env"]
version = "4.5"

[dependencies.colored]
version = "3.0"

[dependencies.comfy-table]
version = "7.1"

[dependencies.env_logger]
version = "0.11"

[dependencies.glob]
version = "0.3"

[dependencies.ignore]
version = "0.4"

[dependencies.im]
features = ["serde"]
version = "15.1"

[dependencies.log]
version = "0.4"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.pathdiff]
version = "0.2"

[dependencies.proc-macro2]
features = ["span-locations"]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.10"

[dependencies.rustpython-parser]
version = "0.4"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.syn]
features = ["full", "visit", "extra-traits"]
version = "2.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.9"

[dependencies.tree-sitter]
version = "0.25"

[dependencies.tree-sitter-javascript]
version = "0.23"

[dependencies.tree-sitter-typescript]
version = "0.23"

[dependencies.walkdir]
version = "2.5"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.indoc]
version = "2.0"

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.10"

[lib]
name = "debtmap"
path = "src/lib.rs"

[package]
authors = ["Glen Baker <iepathos@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "command-line-utilities"]
description = "Code complexity and technical debt analyzer"
edition = "2021"
keywords = ["code-analysis", "technical-debt", "complexity", "static-analysis"]
license = "MIT"
name = "debtmap"
readme = "README.md"
repository = "https://github.com/iepathos/debtmap"
version = "0.1.3"

[profile.dev]
debug = 2
opt-level = 0

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true

[[test]]
name = "analyzer_tests"
path = "tests/analyzer_tests.rs"

[[test]]
name = "cognitive_complexity_tests"
path = "tests/cognitive_complexity_tests.rs"

[[test]]
name = "complexity_comparison_test"
path = "tests/complexity_comparison_test.rs"

[[test]]
name = "complexity_module_tests"
path = "tests/complexity_module_tests.rs"

[[test]]
name = "complexity_tests"
path = "tests/complexity_tests.rs"

[[test]]
name = "core_ast_tests"
path = "tests/core_ast_tests.rs"

[[test]]
name = "core_cache_tests"
path = "tests/core_cache_tests.rs"

[[test]]
name = "core_display_tests"
path = "tests/core_display_tests.rs"

[[test]]
name = "core_metrics_tests"
path = "tests/core_metrics_tests.rs"

[[test]]
name = "core_monadic_tests"
path = "tests/core_monadic_tests.rs"

[[test]]
name = "core_untested_functions_tests"
path = "tests/core_untested_functions_tests.rs"

[[test]]
name = "cyclomatic_complexity_tests"
path = "tests/cyclomatic_complexity_tests.rs"

[[test]]
name = "debt_grouping_tests"
path = "tests/debt_grouping_tests.rs"

[[test]]
name = "debt_tests"
path = "tests/debt_tests.rs"

[[test]]
name = "dependency_and_coupling_tests"
path = "tests/dependency_and_coupling_tests.rs"

[[test]]
name = "external_api_detection_tests"
path = "tests/external_api_detection_tests.rs"

[[test]]
name = "external_api_detector_integration_test"
path = "tests/external_api_detector_integration_test.rs"

[[test]]
name = "io_walker_tests"
path = "tests/io_walker_tests.rs"

[[test]]
name = "javascript_typescript_test"
path = "tests/javascript_typescript_test.rs"

[[test]]
name = "lcov_tests"
path = "tests/lcov_tests.rs"

[[test]]
name = "output_format_tests"
path = "tests/output_format_tests.rs"

[[test]]
name = "risk_context_tests"
path = "tests/risk_context_tests.rs"

[[test]]
name = "risk_insights_formatting_tests"
path = "tests/risk_insights_formatting_tests.rs"

[[test]]
name = "smell_tests"
path = "tests/smell_tests.rs"

[[test]]
name = "suppression_tests"
path = "tests/suppression_tests.rs"