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