From bbcfa5e40e22b7de09e1a93099850bf9b977292a Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 28 Jul 2026 23:05:12 +0000 Subject: [PATCH] chore: disable "large futures" lint again The lint is reasonable, but without some work to bring the future sizes way below the limit, this lint is frequently triggered in unrelated PRs that just add some local variables to async functions or extend some structure that is passed on the stack. --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 233a4a2f6..4f5000dfa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,6 @@ clippy::cloned_instead_of_copied, clippy::manual_is_variant_and )] -#![cfg_attr(not(test), warn(clippy::large_futures))] #![cfg_attr(not(test), warn(clippy::arithmetic_side_effects))] #![cfg_attr(not(test), forbid(clippy::indexing_slicing))] #![cfg_attr(not(test), forbid(clippy::string_slice))]