fastarena 0.1.3

A zero-dependency, bump-pointer arena allocator with RAII transactions, nested savepoints, optional LIFO destructor tracking, and ArenaVec — built for compilers, storage engines, and high-throughput request-scoped workloads.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core arena allocator implementation.
//!
//! This module provides the main `Arena` type along with supporting types
//! (`Block`, `Checkpoint`, `ArenaStats`) for bump-pointer allocation.

pub(crate) mod allocator;
mod block;
mod stats;

pub use allocator::{Arena, Checkpoint};
pub use stats::ArenaStats;