//! Benchmarks for `runtime::iobuf`.
//!
//! This entry point registers four suites:
//!
//! - [`iobuf`]: fixed-size decode benchmarks comparing `Bytes` with `IoBuf`
//! backed by external `Bytes` or native heap storage. `Vec<u8>` modes
//! provide the deep-clone baseline.
//! - [`allocation`]: end-to-end steady-state `BufferPool` allocation and
//! reuse, compared against direct aligned allocation.
//! - [`reuse`]: end-to-end global reuse with thread-local caching disabled,
//! plus forced thread-local cache refill and spill cycles.
//! - [`freelist`]: microbenchmarks of the global freelist that stores free
//! pooled buffers shared across threads, compared against `Mutex<Vec<_>>` and
//! `ArrayQueue`.
//!
//! Shared threading and measurement helpers live in [`utils`].
//!
//! Run with: `cargo bench --bench iobuf -p commonware-runtime --features bench`
use ;
criterion_group!;
criterion_main!;