subms-arena-allocator 0.5.2

submillisecond.com cookbook recipe - memory: subms-arena-allocator. Fixed-capacity bump-pointer arena with reset() for per-request reuse.
Documentation
//! Opt-in feature catalog. Each submodule is gated by its own Cargo
//! feature flag and adds a specific capability to the base bump arena
//! without bloating the core build.
//!
//! See `Cargo.toml` `[features]` for the catalog + the cookbook page
//! for the per-feature p99 + memory cost + use cases.

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

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

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

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

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