Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 550 Bytes

File metadata and controls

28 lines (19 loc) · 550 Bytes

Claude Code

This is a standalone Cargo project.

Do not rely on root workspace validation for this directory.

Mandatory validation

Run from this directory after every Rust code change:

cargo fmt --all
cargo clippy --all-targets --all-features -- -D warnings

Test policy

  • Run only the affected validation by default.
  • Prefer targeted tests or cargo check for compile-scope changes.
  • Run full cargo test only when the change has wider impact.

Examples

cargo check
cargo test some_test_name
cargo test