orengine 0.7.0-alpha.1

Optimized ring engine for Rust. It is a lighter and faster asynchronous library than tokio-rs, async-std, may, and even smol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Unix-specific I/O with `io-uring`.
pub mod config;
pub(crate) mod fd;
pub(crate) mod io_uring;
pub(crate) mod open_options;
pub(super) mod os_message_header;
pub(crate) mod os_path;

pub use config::*;
pub(crate) use io_uring::*;
pub(crate) use open_options::*;