From ac8f36743e7cb7e6a85e563e3ff52e57ec1676a5 Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 11 Aug 2023 15:08:36 -0700 Subject: [PATCH] enable multithreading on benches (#9388) # Objective - Enable the new multithreading feature on benches --- benches/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 0c66806f34acc..a811b1a6ef039 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -12,7 +12,7 @@ rand = "0.8" rand_chacha = "0.3" criterion = { version = "0.3", features = ["html_reports"] } bevy_app = { path = "../crates/bevy_app" } -bevy_ecs = { path = "../crates/bevy_ecs" } +bevy_ecs = { path = "../crates/bevy_ecs", features = ["multi-threaded"] } bevy_reflect = { path = "../crates/bevy_reflect" } bevy_tasks = { path = "../crates/bevy_tasks" } bevy_utils = { path = "../crates/bevy_utils" }