|  13cbb9cf10 # Objective Fixes https://github.com/bevyengine/bevy/issues/11628 ## Migration Guide `Command` and `CommandQueue` have migrated from `bevy_ecs::system` to `bevy_ecs::world`, so `use bevy_ecs::world::{Command, CommandQueue};` when necessary. | ||
|---|---|---|
| .. | ||
| benches | ||
| Cargo.toml | ||
| README.md | ||
Bevy Benchmarks
This is a crate with a collection of benchmarks for Bevy, separate from the rest of the Bevy crates.
Running the benchmarks
- 
Setup everything you need for Bevy with the setup guide. 
- 
Move into the benchesdirectory (where this README is located).bevy $ cd benches
- 
Run the benchmarks with cargo (This will take a while) bevy/benches $ cargo benchIf you'd like to only compile the benchmarks (without running them), you can do that like this: bevy/benches $ cargo bench --no-run
Criterion
Bevy's benchmarks use Criterion. If you want to learn more about using Criterion for comparing performance against a baseline or generating detailed reports, you can read the Criterion.rs documentation.