Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 791 Bytes

File metadata and controls

18 lines (11 loc) · 791 Bytes

Agent notes — ulpExtractor

Cargo permission (project override)

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):

  1. cargo check — fast typecheck while iterating
  2. cargo test — unit tests in src/extractor.rs / src/tui/widgets.rs
  3. cargo build / cargo build --release — when a binary is needed
  4. cargo 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).