What problem does it solve? Setting up continuous integration and deployment for Rust projects involves many moving parts: build matrices, caching, security audits, cross-compilation, and release automation. This Skill provides ready-to-use templates and guidance so you can establish a complete Rust CI/CD workflow without assembling each piece from scratch. ## Core Features & Use Cases - CI Pipeline Templates: Complete GitHub Actions and GitLab CI configurations covering fmt, clippy, multi-platform test matrices, code coverage with cargo-llvm-cov, and security audits with cargo-audit and cargo-deny. - Cross-Compilation & Docker: Target triple reference for Linux, macOS, Windows, ARM, and musl static builds, plus cross-rs usage and Docker multi-stage builds producing minimal runtime images. - Release Automation: cargo-dist configuration for cross-platform binary distribution to GitHub Releases and Homebrew, and cargo-release for version bumping, changelog updates, tagging, and publishing. - Use Case: You are preparing to publish a Rust CLI tool. Use this Skill to generate a CI workflow that tests on Linux/macOS/Windows, audits dependencies, and automatically builds and publishes binaries for four platforms when you push a version tag. ## Quick Start Ask the AI to generate a GitHub Actions CI workflow for your Rust project with testing, clippy, caching, and a cargo-dist release pipeline.