rustalign_concurrency/lib.rs
1//! RustAlign Concurrency - Threading and synchronization primitives
2//!
3//! This crate provides thread-safe data structures and utilities
4//! used across RustAlign for parallel sequence alignment.
5
6#![warn(missing_docs)]
7#![warn(clippy::all)]
8
9mod thread_pool;
10mod thread_safe;
11mod work_queue;
12
13pub use thread_pool::ThreadPool;
14pub use thread_safe::ThreadSafe;
15pub use work_queue::WorkQueue;