File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,7 @@ license = "MIT OR Apache-2.0"
8
8
autobenches = false
9
9
10
10
[dev-dependencies ]
11
- glam = " 0.29"
12
- rand = " 0.8"
13
- rand_chacha = " 0.3"
14
- criterion = { version = " 0.3" , features = [" html_reports" ] }
11
+ # Bevy crates
15
12
bevy_app = { path = " ../crates/bevy_app" }
16
13
bevy_ecs = { path = " ../crates/bevy_ecs" , features = [" multi_threaded" ] }
17
14
bevy_hierarchy = { path = " ../crates/bevy_hierarchy" }
@@ -24,7 +21,14 @@ bevy_render = { path = "../crates/bevy_render" }
24
21
bevy_tasks = { path = " ../crates/bevy_tasks" }
25
22
bevy_utils = { path = " ../crates/bevy_utils" }
26
23
27
- # make bevy_render compile on linux. x11 vs wayland does not matter here as the benches do not actually use a window
24
+ # Other crates
25
+ criterion = { version = " 0.5.1" , features = [" html_reports" ] }
26
+ glam = " 0.29"
27
+ rand = " 0.8"
28
+ rand_chacha = " 0.3"
29
+
30
+ # Make `bevy_render` compile on Linux with x11 windowing. x11 vs. Wayland does not matter here
31
+ # because the benches do not actually open any windows.
28
32
[target .'cfg(target_os = "linux")' .dev-dependencies ]
29
33
bevy_winit = { path = " ../crates/bevy_winit" , features = [" x11" ] }
30
34
You can’t perform that action at this time.
0 commit comments