diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2025-06-08 13:46:46 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2025-06-15 08:11:11 +0000 |
| commit | 38cba9f3ad25624bffe3c57820cff354e9760602 (patch) | |
| tree | 22b973607b908b74a148da26e42669468a69e8e4 /xtask/src/run | |
| parent | 9bc60cc5ed4c66fa24fa1a9c24e7e4c27b94d546 (diff) | |
xtask: Cargo clippy lints
Diffstat (limited to 'xtask/src/run')
| -rw-r--r-- | xtask/src/run/iter.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xtask/src/run/iter.rs b/xtask/src/run/iter.rs index d18ad49..d53a9d2 100644 --- a/xtask/src/run/iter.rs +++ b/xtask/src/run/iter.rs @@ -9,6 +9,7 @@ pub trait CoalescingRunner<'c> { } #[cfg(not(feature = "rayon"))] +#[allow(clippy::module_inception)] mod iter { use super::*; use crate::{argument_parsing::Globals, cargo_command::*, run::run_and_convert}; @@ -28,6 +29,7 @@ mod iter { } #[cfg(feature = "rayon")] +#[allow(clippy::module_inception)] mod iter { use super::*; use crate::{argument_parsing::Globals, cargo_command::*, run::run_and_convert}; |
