From fuse-rust
Use when choosing crates for a Rust project — serialization, CLI, async runtime, web, database, HTTP client, error handling, observability. Provides a domain→crate decision map of the de-facto 2026 standards, with selection criteria. Do NOT use for API usage details of a chosen crate (load the matching domain skill, or verify via fuse-browser fast-path on docs.rs/crates.io → Context7 → Exa).
How this skill is triggered — by the user, by Claude, or both
Slash command
/fuse-rust:rust-ecosystem-cratesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before ANY crate selection, use `TeamCreate` to spawn 3 agents:
Before ANY crate selection, use TeamCreate to spawn 3 agents:
Cargo.toml to match established choicesAfter implementation, run fuse-ai-pilot:sniper for validation.
| Domain | De-facto standard (2026) | Reach for it when |
|---|---|---|
| Serialization | serde (+ serde_json) | Any (de)serialization; derive Serialize/Deserialize |
| CLI parsing | clap (derive API) | Argument parsing, subcommands, help generation |
| Async runtime | tokio | Almost all async I/O; the ecosystem default |
| Web framework | axum | HTTP servers on tokio + tower middleware |
| HTTP client | reqwest | Outbound HTTP, JSON, TLS |
| Database | sqlx / sea-orm / diesel | See db-and-async.md for the choice |
| Error (libraries) | thiserror | Typed error enums in a library's public API |
| Error (apps) | anyhow | Ergonomic Result with context in binaries |
| Observability | tracing (+ tracing-subscriber) | Structured, async-aware logs and spans |
Cargo.toml - versions move faster than this skill. Confirm on crates.io or via Context7; never paste a remembered patch number.serde 2.0 is NOT stable - it is under discussion. Depend on serde = "1" today; do not write 2.0.thiserror for libraries, anyhow for applications - never expose anyhow::Error in a library's public API.tokio; mixing runtimes causes executor conflicts.Cargo.toml before introducing a competing crate.Cargo.toml
├── [dependencies]
│ ├── serde / serde_json # data
│ ├── tokio (features = [...]) # runtime
│ ├── axum / reqwest # web in/out
│ ├── sqlx | sea-orm | diesel # persistence (pick one)
│ ├── thiserror | anyhow # errors (lib vs app)
│ └── tracing / tracing-subscriber
→ See cargo-toml-stack.md for a complete manifest
| Topic | Reference | When to Consult |
|---|---|---|
| Decision map | crate-decision-map.md | Choosing per domain, error strategy, observability |
| DB & async | db-and-async.md | sqlx vs sea-orm vs diesel, tokio + axum wiring |
| Template | When to Use |
|---|---|
| cargo-toml-stack.md | Scaffolding a web-service manifest |
// Library: typed, matchable errors.
#[derive(thiserror::Error, Debug)]
pub enum StoreError {
#[error("not found: {0}")]
NotFound(String),
}
// Application: contextual, any error.
use anyhow::Context;
let cfg = std::fs::read_to_string(path).context("reading config")?;
→ See crate-decision-map.md for the full rationale
tokio and enable only the features you usethiserror in libraries, anyhow in binariesserde = "2" — it is not stableanyhow::Error from a library APInpx claudepluginhub fusengine/agents --plugin fuse-rustGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.