qubit-batch 0.3.1

Batch task execution abstractions and sequential executor with progress reporting
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Batch executor traits and implementations.
//!

mod batch_call_result;
mod batch_executor;
mod sequential_batch_executor;

pub use batch_call_result::BatchCallResult;
pub use batch_executor::BatchExecutor;
pub use sequential_batch_executor::SequentialBatchExecutor;