
Now the distinguishing factor will be their module path, removing the need to rename the group itself if it switches modules.
32 lines
616 B
Rust
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,
|
|
);
|