qubit-cas 0.3.2

Typed compare-and-swap executor with retry-aware conflict handling
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026.
 *    Haixing Hu, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! CAS event context and hook types.

mod cas_alert_hook;
mod cas_context;
mod cas_event;
mod cas_event_hook;
mod cas_hooks;

pub use cas_alert_hook::CasAlertHook;
pub use cas_context::CasContext;
pub use cas_event::CasEvent;
pub use cas_event_hook::CasEventHook;
pub use cas_hooks::CasHooks;