rust-concurrency

Installation
SKILL.md

Concurrency vs Async

Dimension Concurrency (threads) Async (async/await)
Memory Each thread has separate stack Single thread reused
Blocking Blocks OS thread Doesn't block, yields
Use case CPU-intensive I/O-intensive
Complexity Simple and direct Requires runtime

Key Insight: Threads for parallelism, async for concurrency.

Send/Sync Quick Reference

Send - Can Transfer Ownership Between Threads

Installs
18
GitHub Stars
47
First Seen
Jan 30, 2026
rust-concurrency — huiali/rust-skills