tokio — popular async runtime. async-std — std-like async runtime.
tokio:
async-std:
1// Tokio2#[tokio::main]3async fn main() {4 tokio::time::sleep(Duration::from_secs(1)).await;5}67// async-std8#[async_std::main]9async fn main() {10 async_std::task::sleep(Duration::from_secs(1)).await;11}
Key: tokio for ecosystem, async-std for familiarity.