- New 'archdoc stats' command showing project statistics without generating docs - Symbol breakdown by kind (class/function/method/async) - Top-10 by fan-in and fan-out - Detected integrations (HTTP/DB/Queue) - Basic cycle detection on module imports - Colored terminal output using 'colored' crate - Progress bar for file parsing using 'indicatif' crate - Generation summary showing files/modules/symbols/edges/integrations
19 lines
419 B
TOML
19 lines
419 B
TOML
[package]
|
|
name = "archdoc-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
archdoc-core = { path = "../archdoc-core" }
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
colored = "2.1"
|
|
indicatif = "0.17"
|