diff --git a/benches/benchmarks/external_process.rs b/benches/benchmarks/external_process.rs index 3ec6092..87e6f58 100644 --- a/benches/benchmarks/external_process.rs +++ b/benches/benchmarks/external_process.rs @@ -13,6 +13,7 @@ fn create_command() -> Command { command } +#[allow(clippy::zombie_processes)] fn python_fibonacci(c: &mut Criterion) { let has_python3 = Command::new("python3") .arg("--version") diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 5f3ff17..6cc20ea 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.82.0" +channel = "1.83.0" profile = "default" diff --git a/src/measurement.rs b/src/measurement.rs index efa74ba..f717fd7 100644 --- a/src/measurement.rs +++ b/src/measurement.rs @@ -13,7 +13,7 @@ use crate::{format::short, Throughput}; /// nanoseconds, the values passed to the formatter will be in nanoseconds). /// /// Implementors are encouraged to format the values in a way that is intuitive for humans and -/// uses the SI prefix system. For example, the format used by [`WallTime`] can dsiplay the value +/// uses the SI prefix system. For example, the format used by [`WallTime`] can display the value /// in units ranging from picoseconds to seconds depending on the magnitude of the elapsed time /// in nanoseconds. pub trait ValueFormatter {