// SPDX-FileCopyrightText: Copyright (c) 2026 Mike Li/Mikewolfli/Wei Li(mikewolfli@163.com)
// SPDX-License-Identifier: MIT
//! Memory management utilities: pool allocator, arena allocator, stack allocator,
//! and memory monitoring with pressure handling.
//!
//! # Reachability
//!
//! **State:** Production callers: `src/lib.rs:1`; the pool and allocator wrappers back the widget registry.
pub use *;
/// Arena, pool, and stack allocator implementations with a common
/// allocator interface.
pub use *;