shipyard 0.11.0

Entity Component System
Documentation
[dependencies.hashbrown]
default-features = false
features = ["inline-more", "allocator-api2", "default-hasher"]
version = "0.16.1"

[dependencies.lock_api]
version = "0.4.14"

[dependencies.rayon]
optional = true
version = "1.11.0"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1"

[dependencies.shipyard_proc]
optional = true
version = "0.6"

[dependencies.tracing]
default-features = false
optional = true
version = "0.1.44"

[dev-dependencies.bincode]
version = "1.3.3"

[dev-dependencies.parking_lot]
version = "0.12.5"

[dev-dependencies.serde_derive]
features = ["deserialize_in_place"]
version = "1"

[dev-dependencies.serde_json]
version = "1.0.148"

[features]
default = ["parallel", "proc", "std"]
extended_tuple = []
parallel = ["rayon", "shipyard_proc/parallel", "hashbrown/rayon"]
proc = ["shipyard_proc"]
serde1 = ["serde", "hashbrown/serde"]
std = ["hashbrown/default-hasher"]
thread_local = []

[lib]
name = "shipyard"
path = "src/lib.rs"

[package]
authors = ["leudz <dylan.ancel@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "game-development", "concurrency", "no-std"]
description = "Entity Component System"
edition = "2021"
keywords = ["ecs", "entity", "component"]
license = "MIT OR Apache-2.0"
name = "shipyard"
readme = "README.md"
repository = "https://github.com/leudz/shipyard"
version = "0.11.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "add_component"
path = "tests/add_component.rs"

[[test]]
name = "add_entity"
path = "tests/add_entity.rs"

[[test]]
name = "clear"
path = "tests/clear.rs"

[[test]]
name = "clone"
path = "tests/clone.rs"

[[test]]
name = "delete"
path = "tests/delete.rs"

[[test]]
name = "delete_any"
path = "tests/delete_any.rs"

[[test]]
name = "delete_entity"
path = "tests/delete_entity.rs"

[[test]]
name = "get"
path = "tests/get.rs"

[[test]]
name = "key"
path = "tests/key.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "readme"
path = "tests/readme.rs"

[[test]]
name = "remove"
path = "tests/remove.rs"

[[test]]
name = "retain"
path = "tests/retain.rs"

[[test]]
name = "spawn"
path = "tests/spawn.rs"

[[test]]
name = "swap"
path = "tests/swap.rs"

[[test]]
name = "system"
path = "tests/system.rs"

[[test]]
name = "tracking"
path = "tests/tracking.rs"

[[test]]
name = "unique"
path = "tests/unique.rs"

[[test]]
name = "world_add_component"
path = "tests/world_add_component.rs"

[[test]]
name = "world_add_entity"
path = "tests/world_add_entity.rs"

[[test]]
name = "world_delete_entity"
path = "tests/world_delete_entity.rs"

[[test]]
name = "world_remove"
path = "tests/world_remove.rs"