pasts 0.14.3

Minimal and simpler alternative to the futures crate.
Documentation
1
2
3
4
5
6
7
use pasts::Executor;

fn main() {
    Executor::default().block_on(async {
        println!("Hello from a future!");
    });
}