From 70f9ac4af876d631d7b07310983e7491113a5469 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 21 Aug 2025 09:06:53 +0300 Subject: Allow clippy::new_without_default It's more annoying than useful --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 395eafd2..5b6e9051 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -139,6 +139,9 @@ profile-with-tracy-allocations = ["profile-with-tracy"] # Enables dinit integration (global environment). dinit = [] +[lints.clippy] +new_without_default = "allow" + [profile.release] debug = "line-tables-only" overflow-checks = true -- cgit