From 35ebc459fa2fe7064c9443811961b5ae52557ac7 Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 26 Jan 2024 19:15:21 -0500 Subject: [PATCH] add explicit_outlives_requirements rustc lint Signed-off-by: strawberry --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 937d5dd3..4e87e4d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -192,6 +192,7 @@ missing_abi = "warn" # missing_docs = "warn" noop_method_call = "warn" pointer_structural_match = "warn" +explicit_outlives_requirements = "warn" # unreachable_pub = "warn" unused_extern_crates = "warn" unused_import_braces = "warn"