redicat_lib/utils/mod.rs
1//! Backwards-compatible utility re-exports.
2//!
3//! The new architecture consolidates shared helpers under `crate::core`. This module
4//! re-exports the previous `utils::*` API to avoid breaking existing downstream code
5//! while steering new development toward `core::prelude`.
6
7pub use crate::core::concurrency::{determine_allowed_cpus, set_rayon_global_pools_size};
8pub use crate::core::errors::is_broken_pipe;
9pub use crate::core::fs::{is_bgzipped, make_parent_dirs};
10pub use crate::core::io::{get_reader, get_writer};