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
9
10
//! OS-specific extensions to runite types, mirroring [`std::os`].
//!
//! Unix-flavored functionality lives elsewhere in the crate today —
//! `runite::fd` exposes descriptor readiness waits, `runite::signal::unix`
//! exposes POSIX signal streams, and the I/O types implement the `std::os`
//! fd-interop traits directly. This module hosts the surfaces that need
//! dedicated extension traits, currently the Windows filesystem extensions.

#[cfg(windows)]
pub mod windows;