rustvello 0.1.6

Distributed task library for Rust, inspired by pynenc
Documentation
1
2
3
4
5
6
#[rustvello::task]
async fn my_async_task(x: i32) -> i32 {
    x + 1
}

fn main() {}