diff options
| author | mat <git@matdoes.dev> | 2026-02-21 23:25:40 -0530 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-02-21 23:25:40 -0530 |
| commit | b4e4d2c001dddd530c6e416e841c571c7e127138 (patch) | |
| tree | ff45d9d1bae16be06a1a71651f7ad2f86182b0f9 /Cargo.toml | |
| parent | 2756eb419af2210eed3d0574e20a620918e4e577 (diff) | |
| download | azalea-drasl-b4e4d2c001dddd530c6e416e841c571c7e127138.tar.xz | |
enable threaded ecs and implement some micro-optimizations
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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" |
