subms-arena-allocator 0.4.0

submillisecond.com cookbook recipe - memory: subms-arena-allocator. Bump-pointer arena with chunked growth, alignment math, and reset() for per-request reuse.
Documentation
# Arena allocator - Rust

Bump-pointer arena with chunked growth and reset() for per-request reuse. Allocate is ~10 ns; reset is constant-time.

Part of the [submillisecond.com cookbook](https://submillisecond.com/cookbook/recipes/subms-arena-allocator). Zero external dependencies; `std` only.

## Install

```toml
[dependencies]
subms-arena-allocator = "0.4"
```

## Quickstart

```sh
cargo test --release
cargo run --example demo
```

## Public API

- `pub struct Bump`
- `pub fn new() -> Self`
- `pub fn with_capacity(initial_bytes: usize) -> Self`
- `pub fn alloc_copy<T: Copy>(&mut self, value: T) -> &mut T`
- `pub fn alloc_raw(&mut self, layout: Layout) -> *mut u8`
- `pub fn reset(&mut self)`
- `pub fn total_capacity(&self) -> usize`

## Files

- `src/lib.rs` - implementation.
- `tests/` - integration tests; correctness, edge cases, property/stress.
- `examples/demo.rs` - stdout walkthrough.
- `examples/perf_main.rs` - bench entry (behind the `harness` feature).

## License

Dual-licensed under MIT OR Apache-2.0.