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"
Installs
18
GitHub Stars
47
First Seen
Jan 28, 2026
rust-ecosystem — huiali/rust-skills