mirror of
https://github.com/kristoferssolo/project-finder.git
synced 2025-10-21 19:50:35 +00:00
fix: remove clippy warnings
This commit is contained in:
parent
c1e568aa3f
commit
1683728031
@ -54,10 +54,12 @@ pub fn run_binary_with_args(path: &Path, params: &BenchParams) -> anyhow::Result
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn create_deep_directory(base: &Path, depth: usize) -> anyhow::Result<()> {
|
||||
#[allow(dead_code)]
|
||||
pub fn create_deep_directory(_base: &Path, _depth: usize) -> anyhow::Result<()> {
|
||||
todo!()
|
||||
}
|
||||
|
||||
pub fn create_wide_directory(base: &Path, width: usize) -> anyhow::Result<()> {
|
||||
#[allow(dead_code)]
|
||||
pub fn create_wide_directory(_base: &Path, _width: usize) -> anyhow::Result<()> {
|
||||
todo!()
|
||||
}
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
use std::fmt::format;
|
||||
|
||||
use crate::common::{
|
||||
default,
|
||||
setup::{BenchParams, TEMP_DIR, init_temp_dir},
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
use criterion::Criterion;
|
||||
|
||||
pub fn benchmark_edge_cases(c: &mut Criterion) {
|
||||
let mut group = c.benchmark_group("edge_cases");
|
||||
let group = c.benchmark_group("edge_cases");
|
||||
group.finish();
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
use criterion::Criterion;
|
||||
|
||||
pub fn benchmark_specific_scenarios(c: &mut Criterion) {
|
||||
let mut group = c.benchmark_group("specific_scenarios");
|
||||
let group = c.benchmark_group("specific_scenarios");
|
||||
group.finish();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user