pausable-tokio 1.52.1

A fork of tokio that adds a runtime-controllable pause/resume primitive on its clock. Drop-in replacement for tokio with a few extra methods on the Builder and Runtime types.
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;