takyon 0.2.0

A simple, single threaded async runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(target_os = "linux")]
mod linux;

#[cfg(target_os = "linux")]
pub use linux::{
    sleep,
    socket_create,
    socket_close,
    socket_connect,
    socket_shutdown,
    socket_recv,
    socket_recv_from,
    socket_send,
    socket_send_to,
    socket_accept,
    Platform
};