chore: clippy fixes and make benches compile again (#1449)

This commit is contained in:
Matthias Seitz
2023-02-18 13:44:06 +01:00
committed by GitHub
parent 1a31a21d31
commit dba6b24bde
16 changed files with 65 additions and 64 deletions

View File

@ -117,7 +117,7 @@ fn bench_put_rand_raw(c: &mut Criterion) {
criterion_group! {
name = benches;
config = Criterion::default().with_profiler(PProfProfiler::new(100, Output::Flamegraph(None)));
config = Criterion::default().with_profiler(pprof::criterion::PProfProfiler::new(100, pprof::criterion::Output::Flamegraph(None)));
targets = bench_get_rand, bench_get_rand_raw, bench_put_rand, bench_put_rand_raw
}
criterion_main!(benches);