bevy/benches/benches/bevy_ecs/main.rs
BD103 cbe1688dcd refactor: make all criterion_group!s named benches
Now the distinguishing factor will be their module path, removing the need to rename the group itself if it switches modules.
2024-12-09 14:39:16 -05:00

32 lines
616 B
Rust

#![expect(
dead_code,
reason = "Many fields are unused/unread as they are just for benchmarking purposes."
)]
#![expect(clippy::type_complexity)]
use criterion::criterion_main;
mod change_detection;
mod components;
mod empty_archetypes;
mod events;
mod fragmentation;
mod iteration;
mod observers;
mod param;
mod scheduling;
mod world;
criterion_main!(
change_detection::benches,
components::benches,
empty_archetypes::benches,
events::benches,
iteration::benches,
fragmentation::benches,
observers::benches,
scheduling::benches,
world::benches,
param::benches,
);