You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
274 B

use criterion::{criterion_group, Criterion};
fn some_benchmark(c: &mut Criterion) {
let mut group = c.benchmark_group("\"*group/\"");
group.bench_function("\"*benchmark/\" '", |b| b.iter(|| 1 + 1));
group.finish();
}
criterion_group!(benches, some_benchmark);