aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-02-21 23:25:40 -0530
committermat <git@matdoes.dev>2026-02-21 23:25:40 -0530
commitb4e4d2c001dddd530c6e416e841c571c7e127138 (patch)
treeff45d9d1bae16be06a1a71651f7ad2f86182b0f9 /Cargo.toml
parent2756eb419af2210eed3d0574e20a620918e4e577 (diff)
downloadazalea-drasl-b4e4d2c001dddd530c6e416e841c571c7e127138.tar.xz
enable threaded ecs and implement some micro-optimizations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9f050d7f..f866ba75 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -35,7 +35,9 @@ anyhow = "1.0.100"
async-compat = "0.2.5"
base64 = "0.22.1"
bevy_app = "0.18.0"
-bevy_ecs = { version = "0.18.0", default-features = false }
+bevy_ecs = { version = "0.18.0", default-features = false, features = [
+ "multi_threaded",
+] }
bevy_utils = { version = "0.18.0", default-features = false }
bevy_log = "0.18.0"
bevy_tasks = "0.18.0"