subms-mpsc-queue 0.5.2

submillisecond.com cookbook recipe - concurrency: subms-mpsc-queue. Vyukov-style multi-producer single-consumer linked queue with dangling-tail handling.
Documentation
//! Opt-in feature catalog. Each submodule is gated by its own Cargo
//! feature flag and adds a specific capability to the base MPSC queue
//! without bloating the core build.
//!
//! See `Cargo.toml` `[features]` for the catalog + the README's
//! "Features" section for per-feature p99 numbers and use cases.

#[cfg(feature = "mpmc")]
pub mod mpmc;

#[cfg(feature = "bounded")]
pub mod bounded;

#[cfg(feature = "batch")]
pub mod batch;

#[cfg(feature = "metrics")]
pub mod metrics;

#[cfg(feature = "affinity")]
pub mod affinity;