You may run Cargo commands in this repository.
This overrides any global “never run cargo locally” disk-space rule. This crate is a small single-binary CLI; target/ stays modest compared to large Rust workspaces.
Allowed (preferred order):
cargo check— fast typecheck while iteratingcargo test— unit tests insrc/extractor.rs/src/tui/widgets.rscargo build/cargo build --release— when a binary is neededcargo fmt,cargo clippy— style and lints as needed
Avoid cargo clean unless target/ is clearly bloated. Do not run cargo install into the user toolchain from this project unless the user asks.
Working directory: repository root (Cargo.toml here).