stand-rust
Installation
SKILL.md
Rust Standards
Standards for Rust code.
Edition
- Use the latest stable edition (2021+)
- Set
editionexplicitly inCargo.toml
Toolchain
- Follow the
lintskill for formatting and linting — lintro runsrustfmt,clippy,cargo_audit, andcargo_denyas configured - Treat clippy warnings as errors in CI (
-D warnings) - Customize formatting via
rustfmt.tomlwhere needed