coder-rust-async-concurrency
Installation
SKILL.md
<skill_overview> Write correct, deadlock-free concurrent Rust code Spawning threads or tasks Sharing state across threads Using channels for message passing Writing async/await code The Rust Book - Concurrency The Rust Book - Async/Await </skill_overview> <message_passing> Prefer channels to avoid shared mutable state Move ownership through channels to enforce safety