[package]
edition = "2024"
name = "typarena"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-keyed arena storage with stable per-type columns."
readme = "README.md"
keywords = [
"arena",
"type-map",
"storage",
"no_std",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/voxell-tech/typarena"
[features]
default = []
send = []
sync = []
[lib]
name = "typarena"
path = "src/lib.rs"
[dependencies.hashbrown]
version = "0.16.1"
[dependencies.indexmap]
version = "2.14"
default-features = false
[dependencies.sparse_map]
version = "0.3.0"