rust-async
Installation
SKILL.md
Async Rust Patterns
Expert guidance for building concurrent, async applications in Rust with Tokio.
Core Concepts
- Rust futures are lazy — they do nothing until
.awaited or spawned - Use
tokioas the async runtime (default for most Rust async work) - Prefer structured concurrency — spawn tasks with clear ownership
- Avoid blocking the async runtime — use
spawn_blockingfor CPU-heavy or blocking I/O