compact_arena 0.5.0

A crate with some types to allow indexed arenas with small memory footprint
Documentation
[package]
authors = ["Andre Bogus <bogusandre@gmail.de>"]
categories = ["memory-management", "data-structures", "no-std"]
description = "A crate with some types to allow indexed arenas with small memory footprint"
edition = "2018"
keywords = ["arena", "no-std", "no-heap"]
license = "MIT OR Apache-2.0"
name = "compact_arena"
readme = "README.md"
repository = "https://github.com/llogiq/compact_arena"
version = "0.5.0"

[badges]
travis-ci = { repository = "llogiq/compact_arena" }

[features]
# This feature is deprecated and will be removed in a future version. As of
# 0.4.0, all Tiny- and NanoArenas use `MaybeUninit` to manage their data.
uninit = []
alloc = []
default = ["alloc"]

[dev-dependencies]
crossbeam-utils = "0.8.0"