593 B
593 B
Rust Harness Notes
Use this reference for Rust repositories.
Common files to inspect
Cargo.tomlCargo.locksrc/crates/tests/rust-toolchain.toml
Common validation commands
Typical examples:
cargo testcargo buildcargo clippy --all-targets --all-features -- -D warningscargo fmt --check
Common guardrails
- do not casually update
Cargo.lock - check for workspace crates before describing structure
- prefer the smallest crate-local change that solves the task
- distinguish unit, integration, and benchmark targets when relevant