P1 correctness: - filter test files by default (--include-tests to opt in) - per-module diagrams show cross-module dependency arrows - qualified type names (Module::TypeName) fix false edges from duplicate names P2 output richness: - method parameter types and return types in class diagrams (Rust + Python) - Python pyproject.toml project analyzer (--level project for monorepos) P3 unique value: - boundary rules in archlens.toml ([rules] allow/deny, --strict enforcement) P4 nice to have: - dependency weight labels on module arrows (--no-weights to disable) - --watch mode with 500ms debounce - D2 renderer adapter (--format d2) - interactive self-contained HTML viewer (--format html) - git-aware incremental analysis (--since <ref>)
33 lines
788 B
TOML
33 lines
788 B
TOML
[package]
|
|
name = "archlens"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "archlens"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
archlens-domain.workspace = true
|
|
archlens-application.workspace = true
|
|
archlens-tree-sitter.workspace = true
|
|
archlens-walkdir.workspace = true
|
|
archlens-mermaid.workspace = true
|
|
archlens-ascii.workspace = true
|
|
archlens-file-writer.workspace = true
|
|
archlens-stdout-writer.workspace = true
|
|
archlens-toml-config.workspace = true
|
|
archlens-cargo-workspace.workspace = true
|
|
archlens-python-project.workspace = true
|
|
archlens-d2.workspace = true
|
|
archlens-html.workspace = true
|
|
anyhow.workspace = true
|
|
notify.workspace = true
|
|
clap.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|