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
12
13
14
15
16
17
18
//! This module contains async io operations, utils for working with them and structs
//! for working with them.
pub mod buf;
pub(crate) mod close;
pub mod config;
pub mod fs;
pub(crate) mod io_request_data;
pub mod net;
pub mod sys;
pub(crate) mod time_bounded_io_task;
pub(crate) mod worker;

pub use buf::*;
pub use close::AsyncClose;
pub use config::IoWorkerConfig;
pub use fs::*;
pub use net::*;
pub use sys::IOUringConfig;