-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
45 lines (40 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
authors = ["leudz <dylan.ancel@gmail.com>"]
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.7.0"
[workspace]
members = ["bunny_demo", "shipyard_proc", "square_eater", "visualizer"]
[dependencies]
hashbrown = { version = "0.14.0", default-features = false, features = [
"inline-more",
"allocator-api2",
] }
lock_api = "0.4.0"
rayon = { version = "1.5.1", optional = true }
serde = { version = "1.0.0", optional = true, default-features = false, features = [
"derive",
] }
shipyard_proc = { git = "https://github.com/leudz/shipyard", optional = true }
siphasher = "1.0.0"
tracing = { version = "0.1.0", default-features = false, optional = true }
[features]
default = ["parallel", "proc", "std"]
parallel = ["rayon", "shipyard_proc/parallel"]
proc = ["shipyard_proc"]
serde1 = ["serde", "hashbrown/serde"]
std = ["hashbrown/ahash"]
thread_local = []
[dev-dependencies]
bincode = "1.3.3"
parking_lot = "0.12.0"
serde_json = "1.0.78"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]