runite 0.1.0

An event-loop-per-thread async runtime built on io_uring (Linux), kqueue (macOS), and IOCP (Windows)
Documentation
1
2
3
4
5
6
7
8
//! Internal and public operation-layer building blocks.
//!
//! The operation layer defines logical work units that bridge user-facing APIs and platform
//! backends without leaking platform details upward.

pub(crate) mod completion;
pub mod fs;
pub mod net;