[package]
edition = "2021"
name = "shipyard"
version = "0.11.1"
authors = ["leudz <dylan.ancel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Entity Component System"
readme = "README.md"
keywords = [
"ecs",
"entity",
"component",
]
categories = [
"data-structures",
"game-development",
"concurrency",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/leudz/shipyard"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[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"
[[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"
[dependencies.hashbrown]
version = "0.16.1"
features = [
"inline-more",
"allocator-api2",
"default-hasher",
]
default-features = false
[dependencies.lock_api]
version = "0.4.14"
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
default-features = false
[dependencies.shipyard_proc]
version = "0.6"
optional = true
[dependencies.tracing]
version = "0.1.44"
optional = true
default-features = false
[dev-dependencies.bincode]
version = "1.3.3"
[dev-dependencies.parking_lot]
version = "0.12.5"
[dev-dependencies.serde_derive]
version = "1"
features = ["deserialize_in_place"]
[dev-dependencies.serde_json]
version = "1.0.148"