//! CPU parallel compute via [rayon], bridged to Tokio.
//!
//! Schedule heavy work with [`spawn_cpu`] so HTTP and I/O stay on the async runtime.
//! Use [`rayon`] (`par_iter`, `join`, etc.) inside the closure when you need parallelism.
pub use rayon;
/// Runs `f` on Tokio's blocking pool (appropriate for CPU-heavy or rayon work).
pub async