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

Basic types → automatically Send
Related skills
Installs
12
GitHub Stars
29
First Seen
Jan 30, 2026