From dbbe8c642dc37c9cb841d8f3a9bdf5fb4bcccb07 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Thu, 7 Aug 2025 18:38:05 -0400 Subject: [PATCH] fix(rust): ignore new mismatched-lifetime-syntaxes lint (cherry picked from commit 46a0e94de7817667aeb1ce2564f65b146b58f1e7) --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 134bb086..7b582287 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,6 +78,9 @@ unnecessary_wraps = "allow" unused_self = "allow" used_underscore_items = "allow" +[workspace.lints.rust] +mismatched_lifetime_syntaxes = "allow" + [profile.optimize] inherits = "release" strip = true # Automatically strip symbols from the binary.