Fast Rust compilation check. Use during active coding for quick type-check feedback without full codegen. Prefer over `cargo build` when you only need to verify types, borrows, and syntax.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Fast Rust compilation check. Use during active coding for quick type-check feedback without full codegen. Prefer over `cargo build` when you only need to verify types, borrows, and syntax.
Checking
cargo check
Workspace
cargo check --workspace
Specific package
cargo check -p <package>
Release mode
cargo check --release
Gotchas
--workspace checks all packages; --all is deprecated — always use --workspace.
Much faster than cargo build (skips codegen) but does not verify linking.
Use during active editing cycles; switch to cargo build before claiming done.
--all-targets includes tests, benches, and examples.