summaryrefslogtreecommitdiff
path: root/ecs/Cargo.toml
blob: 5e1abac08773df51c2da19bc5ac70e998519c503 (plain)
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
[package]
name = "ecs"
version = "0.1.0"
edition = "2021"

[features]
debug = ["dep:tracing"]

[dependencies]
seq-macro = "0.3.5"
paste = "1.0.14"
thiserror = "1.0.49"
tracing = { version = "0.1.39", optional = true }
linkme = "0.3.29"
hashbrown = "0.15.2"
ecs-macros = { path = "../ecs-macros" }
util-macros = { path = "../util-macros" }

[dev-dependencies.criterion]
version = "0.5.1"
default-features = false
features = ["cargo_bench_support"]

[[bench]]
name = "query"
harness = false