From 6dca02860c18c3a2be4fd317060a618492094087 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 23 Sep 2025 11:53:39 +0000 Subject: [PATCH] Allow clippy::needless-update. Signed-off-by: Jason Volk --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c9ed4abf..1b7eb457 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -879,6 +879,9 @@ multiple_crate_versions = { level = "allow", priority = 1 } ################### complexity = { level = "warn", priority = -1 } +# promotes forward-compat for literal ..default() construction +needless_update = { level = "allow", priority = 1 } + ################### correctness = { level = "warn", priority = -1 }