Rust ecosystem = cargo + rustc + clippy + rustfmt.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill rust --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rust?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-rust-asi)More formats (shields.io, HTML) on the badges page.
---
name: rust
description: Rust ecosystem = cargo + rustc + clippy + rustfmt.
metadata:
trit: 0
---
# rust
Rust ecosystem = cargo + rustc + clippy + rustfmt.
## Atomic Skills
| Skill | Commands | Domain |
|-------|----------|--------|
| cargo | 36 | Package manager |
| rustc | 1 | Compiler |
| clippy | 1 | Linter |
| rustfmt | 1 | Formatter |
## Workflow
```bash
cargo new project
cd project
cargo add serde tokio
cargo build --release
cargo test
cargo clippy
cargo fmt
```
## Cargo.toml
```toml
[package]
name = "myapp"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
```
## Cross-compile
```bash
rustup target add aarch64-apple-darwin
cargo build --target aarch64-apple-darwin
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!