stand-rust

Installation
SKILL.md

Rust Standards

Standards for Rust code.

Edition

  • Use the latest stable edition (2021+)
  • Set edition explicitly in Cargo.toml

Toolchain

  • Follow the lint skill for formatting and linting — lintro runs rustfmt, clippy, cargo_audit, and cargo_deny as configured
  • Treat clippy warnings as errors in CI (-D warnings)
  • Customize formatting via rustfmt.toml where needed

Error Handling

Installs
27
First Seen
May 24, 2026
stand-rust — lgtm-hq/ai-skills