Compare commits

..

1 Commits

Author SHA1 Message Date
Siddhant Agarwal
9916488990
Merge 3d7a289334b56f39a7b8a5bc005735e0b6484537 into 7278d887cf05fadc9a96478830e5876739b78f53 2025-07-23 21:17:06 +05:30
3 changed files with 0 additions and 3 deletions

View File

@ -159,7 +159,6 @@ strip = true
[workspace.lints.clippy]
blocks_in_conditions = "allow"
comparison_chain = "allow"
iter_over_hash_type = "warn"
manual_range_contains = "allow"
mutable_key_type = "allow"
uninlined_format_args = "warn"

View File

@ -139,7 +139,6 @@ impl Watcher {
fn update(&mut self, iter: impl IntoIterator<Item = PathBuf>) -> StrResult<()> {
// Mark all files as not "seen" so that we may unwatch them if they
// aren't in the dependency list.
#[allow(clippy::iter_over_hash_type, reason = "order does not matter")]
for seen in self.watched.values_mut() {
*seen = false;
}

View File

@ -173,7 +173,6 @@ impl SystemWorld {
/// Reset the compilation state in preparation of a new compilation.
pub fn reset(&mut self) {
#[allow(clippy::iter_over_hash_type, reason = "order does not matter")]
for slot in self.slots.get_mut().values_mut() {
slot.reset();
}