orthotope 0.2.0

Arena-based memory allocator with per-thread caches and fixed size classes, designed for allocation-heavy workloads like ML inference and tensor pipelines
Documentation
fmt:
    cargo fmt --all

fmt-check:
    cargo fmt --all --check

check:
    cargo check --all-targets

clippy:
    cargo clippy --all-targets --all-features -- -D warnings

test:
    cargo test --all-targets

test-release:
    cargo test --release --all-targets

bench:
    cargo run --release --manifest-path bench/Cargo.toml

qa: fmt fmt-check check clippy test

qa-release: fmt fmt-check check clippy test test-release