qubit-retry 0.10.4

Retry module, providing a feature-complete, type-safe retry management system with support for multiple delay strategies and event listeners
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Retry executor and builder modules and public re-exports.

#[cfg(feature = "tokio")]
mod async_attempt;
#[cfg(feature = "tokio")]
mod async_attempt_future;
#[cfg(feature = "tokio")]
mod async_value_operation;
mod attempt_cancel_token;
mod blocking_attempt_message;
mod retry;
mod retry_builder;
mod retry_flow_action;
mod sync_attempt;
mod sync_value_operation;

pub use attempt_cancel_token::AttemptCancelToken;
pub use retry::Retry;
pub use retry_builder::RetryBuilder;