-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 1.09 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
[package]
name = "yaks"
version = "0.1.0"
description = "Minimalistic framework for automatic multithreading of hecs via rayon"
authors = ["Alexander Sepity <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ratysz/yaks"
readme = "README.md"
keywords = ["hecs", "parallel", "ecs", "entity", "component"]
categories = ["concurrency", "game-engines"]
[package.metadata.docs.rs]
all-features = true
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["parallel"]
# If disabled, forces everything to work on a single thread.
parallel = ["crossbeam-channel", "fixedbitset", "rayon"]
# If enabled, allows `Executor::run()` to also accept `resources::Resources`.
resources-interop = ["resources"]
[dependencies]
crossbeam-channel = { version = "0.5.0", optional = true }
fixedbitset = { version = "0.3.0", optional = true }
hecs = "0.3.0"
parking_lot = "0.11.0"
paste = "1.0.0"
rayon = { version = "1.3.0", optional = true }
resources = { version = "1.1.0", features = ["fetch"], optional = true }
[dev-dependencies]
rand = "0.7.3"