From 46a0e94de7817667aeb1ce2564f65b146b58f1e7 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 --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index b57e8e66..57c01c7b 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.