tokio 0.2.18

An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
cfg_loom! {
    mod loom_blocking;
    mod loom_oneshot;
    mod loom_pool;
    mod loom_queue;
}

cfg_not_loom! {
    mod queue;

    #[cfg(miri)]
    mod task;
}