rust-ecosystem

Installation
SKILL.md

Async Runtimes

Runtime Characteristics Use Case
tokio Most popular, feature-rich General async applications
async-std std-like API Prefer std-style APIs
smol Minimal, embeddable Lightweight applications
async-executors Unified interface Need runtime portability
# Web services
tokio = { version = "1", features = ["full"] }
axum = "0.7"

# Lightweight
async-std = "1"

# Minimal
Related skills
Installs
13
GitHub Stars
29
First Seen
Jan 28, 2026