Skip to content

Commit

Permalink
enable the multi-threaded feature for bevy_ecs (#450)
Browse files Browse the repository at this point in the history
# Objective

This allows systems to run in parallel on different threads

# Solution
  • Loading branch information
dyc3 authored Aug 7, 2023
1 parent c85724b commit add642c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit add642c

Please sign in to comment.