qubit-cas 0.4.0

Typed compare-and-swap executor with retry-aware conflict handling
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! 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;