[package]
edition = "2024"
name = "mtb-entity-slab"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Slab-style entity storage: stable IDs, internal mutability; not a full ECS."
documentation = "https://docs.rs/mtb-entity-slab"
readme = "README.md"
keywords = [
"entity",
"slab",
"arena",
"id",
"allocator",
]
categories = [
"data-structures",
"memory-management",
]
license = "MIT"
repository = "https://codeberg.org/medihbt/mtb-entity-slab"
[features]
default = []
random-generation = ["fastrand"]
serde = ["serde_core"]
[lib]
name = "mtb_entity_slab"
path = "src/lib.rs"
[dependencies.fastrand]
version = "2.3.0"
optional = true
[dependencies.mtb-entity-slab-macros]
version = "0.2.2"
[dependencies.serde_core]
version = "1.0.228"
optional = true