44 lines
682 B
TOML
44 lines
682 B
TOML
[package]
|
|
name = "executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
heartbeat = []
|
|
spin-slow = []
|
|
cpu-pinning = []
|
|
work-stealing = []
|
|
prefer-local = []
|
|
never-local = []
|
|
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
# opt-level = 0
|
|
|
|
[dependencies]
|
|
|
|
futures = "0.3"
|
|
rayon = "1.10"
|
|
bevy_tasks = "0.15.1"
|
|
parking_lot = {version = "0.12.3"}
|
|
thread_local = "1.1.8"
|
|
crossbeam = "0.8.4"
|
|
st3 = "0.4"
|
|
chili = "0.2.0"
|
|
|
|
async-task = "4.7.1"
|
|
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = {version ="0.3.18", features = ["env-filter"]}
|
|
|
|
anyhow = "1.0.89"
|
|
thiserror = "2.0"
|
|
bitflags = "2.6"
|
|
core_affinity = "0.8.1"
|
|
parking_lot_core = "0.9.10"
|
|
# derive_more = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0.2.5"
|