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
pub(crate) mod assert_hint;
pub mod core;
#[cfg(test)]
pub(crate) mod droppable_element;
pub(crate) mod each_addr;
pub(crate) mod never_wait_lock;
pub mod ptr;
pub(crate) mod sealed;
pub mod spin_lock;
pub(crate) mod write_result;

pub(crate) use assert_hint::assert_hint;
pub use core::*;
pub use ptr::*;
pub(crate) use sealed::Sealed;
pub use spin_lock::*;