async-runtime 0.3.3

A priority-aware native async runtime for the smol ecosystem with host-driven local domains
Documentation
1
2
3
4
5
6
7
use async_runtime::LocalSpawner;

fn assert_send_sync<T: Send + Sync>() {}

fn main() {
    assert_send_sync::<LocalSpawner>();
}