1pub mod compare_functions;
2pub mod custom_measurement;
3pub mod external_process;
4pub mod iter_with_large_drop;
5pub mod iter_with_large_setup;
6pub mod iter_with_setup;
7pub mod measurement_overhead;
8pub mod sampling_mode;
9pub mod special_characters;
10pub mod with_inputs;
11
12#[cfg(feature = "async_futures")]
13pub mod async_measurement_overhead;
14
15#[cfg(not(feature = "async_futures"))]
16pub mod async_measurement_overhead {
17 use criterion::{criterion_group, Criterion};
18 fn some_benchmark(_c: &mut Criterion) {}
19
20 criterion_group!(benches, some_benchmark);
21}
22