From 5b0dfaeef6369fd34204cc3a3af78b90cc3367b9 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 23 Dec 2025 02:50:16 +0000 Subject: [PATCH] Allow clippy::toplevel-ref-arg. Signed-off-by: Jason Volk --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 31da7947..f9974e7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -982,6 +982,7 @@ assertions_on_constants = { level = "allow", priority = 1 } module_inception = { level = "allow", priority = 1 } obfuscated_if_else = { level = "allow", priority = 1 } collapsible_if = { level = "allow", priority = 1 } # TODO stable v. nightly 05-21-25 +toplevel-ref-arg = { level = "allow", priority = 1 } ################### suspicious = { level = "warn", priority = -1 }