cargo fmt

This commit is contained in:
2026-05-26 14:42:05 +04:00
parent 76cb232b1e
commit 47ed183cfe
9 changed files with 23 additions and 22 deletions

View File

@@ -2,7 +2,9 @@ use criterion::{black_box, criterion_group, criterion_main, Criterion};
use testing::sploosh;
pub fn sploosh_benchmark(c: &mut Criterion) {
c.bench_function("sploosh", |b| b.iter(|| sploosh(black_box(8), black_box(9), black_box(10))));
c.bench_function("sploosh", |b| {
b.iter(|| sploosh(black_box(8), black_box(9), black_box(10)))
});
}
criterion_group!(benches, sploosh_benchmark);