From add642ced840ccb8f394ce4976b474f413b8f49d Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 7 Aug 2023 19:07:01 -0400 Subject: [PATCH] enable the `multi-threaded` feature for `bevy_ecs` (#450) # Objective This allows systems to run in parallel on different threads # Solution --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 58ffa19d1..3429541ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,7 +107,7 @@ async-trait = "0.1.60" atty = "0.2.14" base64 = "0.21.0" bevy_app = { version = "0.11", default-features = false } -bevy_ecs = { version = "0.11", default-features = false } +bevy_ecs = { version = "0.11", default-features = false, features = ["multi-threaded"] } bevy_hierarchy = { version = "0.11", default-features = false } bevy_log = { version = "0.11" } bevy_mod_debugdump = { version = "0.8.0", default-features = false }