mirror of
https://github.com/kristoferssolo/project-finder.git
synced 2025-10-21 19:50:35 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
use criterion::Criterion;
|
|
|
|
pub fn benchmark_edge_cases(c: &mut Criterion) {
|
|
let group = c.benchmark_group("edge_cases");
|
|
group.finish();
|
|
}
|