tokio 1.51.1

An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications.
Documentation
pub(crate) mod context;
pub(super) use context::{LocalContext, TempLocalContext};

pub(crate) mod cancellation_queue;

mod entry;
pub(crate) use entry::Handle as EntryHandle;
use entry::{CancellationQueueEntry, RegistrationQueueEntry, WakeQueueEntry};
use entry::{Entry, EntryList};

mod registration_queue;
pub(crate) use registration_queue::RegistrationQueue;

mod timer;
pub(crate) use timer::Timer;

mod wheel;
pub(super) use wheel::Wheel;

mod wake_queue;
pub(crate) use wake_queue::WakeQueue;

#[cfg(test)]
mod tests;