qubit-thread-pool 0.4.0

Dynamic and fixed thread pool executor services for Qubit Rust libraries
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Fixed-size thread pool implementation.

mod fixed_thread_pool;
mod fixed_thread_pool_builder;
mod fixed_thread_pool_inner;
mod fixed_thread_pool_state;
mod fixed_worker;
mod fixed_worker_runtime;

pub use fixed_thread_pool::FixedThreadPool;
pub use fixed_thread_pool_builder::FixedThreadPoolBuilder;