bevy/crates/bevy_ecs/Cargo.toml
Carter Anderson 8d3a5ae0f1 ecs: initial parallel schedule executor
currently only considers component archetypes. still missing proper handling of thread local systems and resources
2020-07-13 19:36:41 -07:00

17 lines
No EOL
394 B
TOML

[package]
name = "bevy_ecs"
version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
profiler = []
[dependencies]
hecs = { path = "hecs", features = ["macros", "serialize"] }
rand = "0.7.2"
rayon = "1.3"
crossbeam-channel = "0.4.2"
fixedbitset = "0.3.0"