[package]
edition = "2024"
name = "ecs-tiny"
version = "0.4.0"
authors = ["GossiperLoturot"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal ECS supporting entity and component insertion/removal, association, and single-type iteration."
readme = "README.md"
keywords = [
"game",
"ecs",
]
categories = [
"data-structures",
"game-engines",
"game-development",
]
license = "MIT"
repository = "https://github.com/GossiperLoturot/ecs-tiny"
[lib]
name = "ecs_tiny"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.bytemuck]
version = "1"
features = ["derive"]
[dependencies.either]
version = "1"
[dependencies.slab]
version = "0.4"