qubit-clock 0.11.0

Injectable wall and monotonic clocks with deterministic timers
Documentation
// =============================================================================
//    Copyright (c) 2025 - 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Internal helpers for the manual monotonic clock.

mod advance_effects;
mod manual_monotonic_state;
mod manual_time_domain;
pub(crate) mod manual_waiter_registry;
mod waiter_registration_guard;

pub(crate) use advance_effects::AdvanceEffects;
pub(crate) use manual_monotonic_state::ManualMonotonicState;
pub(crate) use manual_time_domain::ManualTimeDomain;
pub(crate) use waiter_registration_guard::WaiterRegistrationGuard;