lio 0.4.1

A platform-independent async I/O library with native support for io_uring (Linux), IOCP (Windows), and kqueue (macOS)
Documentation
// Re-export items from parent module for use by operation implementations

mod accept;
mod accept_unix;
mod bind;
mod close;
mod connect;
mod fsync;
mod linkat;
mod listen;
mod nop;
mod openat;
mod read;
mod read_at;
mod recv;
mod send;
mod shutdown;
mod socket;
mod symlink;
mod timeout;

#[cfg(linux)]
mod tee;

mod truncate;
mod write;
mod write_at;

pub use accept::*;
pub use accept_unix::*;
pub use bind::*;
pub use close::*;
pub use connect::*;
pub use fsync::*;
pub use linkat::*;
pub use listen::*;
pub use nop::*;
pub use openat::*;
pub use read::*;
pub use read_at::*;
pub use recv::*;
pub use send::*;
pub use shutdown::*;
pub use socket::*;
pub use symlink::*;
pub use timeout::*;

#[cfg(linux)]
pub use tee::*;

pub use truncate::*;
pub use write::*;
pub use write_at::*;