Cargo Check

Cargo Check

rootwarp 22ff176 429 B Updated

File contents

/cargo-check

Quickly check Rust code for errors without producing binaries.

Instructions

Run cargo check for fast compilation checking:

cargo check

This is faster than cargo build as it skips code generation.

To check all targets including tests and examples:

cargo check --all-targets

If there are errors, analyze them and suggest fixes.

rootwarp/claude-code-plugins-monorepo/tree/main/plugins/rust/skills/cargo-check commit 22ff176eae

Frequently asked questions

npx skillmds@latest add rootwarp/cargo-check