rust-workflow
Installation
SKILL.md
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
Rust Projects Workflow
Tool Grid
| Task | Tool | Command |
|---|---|---|
| Lint | Clippy | cargo clippy |
| Format | rustfmt | cargo fmt |
| Type check | built-in | cargo check |
| Build | cargo | cargo build |
| Test | cargo | cargo test |
| Security | cargo-audit | cargo audit |
| Coverage | cargo-tarpaulin | cargo tarpaulin |
| Docs | rustdoc | cargo doc |