async-programming

Installation
SKILL.md

Async Programming Skill

Master Rust's asynchronous programming with async/await and Tokio.

Quick Start

Basic Setup

# Cargo.toml
[dependencies]
tokio = { version = "1", features = ["full"] }
use tokio;

#[tokio::main]
async fn main() {
Related skills
Installs
4
GitHub Stars
1
First Seen
Jan 24, 2026