From 9fe4c9facf56b829283a8bd33f8d12053afe3fe3 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 10 Jan 2025 08:34:24 +0100 Subject: [PATCH] Cargo.toml: allow large_stack_arrays lint due to https://github.com/rust-lang/rust-clippy/issues/13774 --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index ea51f6f99..2b62476f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -564,6 +564,8 @@ multiple_crate_versions = "allow" cargo_common_metadata = "allow" uninlined_format_args = "allow" missing_panics_doc = "allow" +# TODO remove when https://github.com/rust-lang/rust-clippy/issues/13774 is fixed +large_stack_arrays = "allow" use_self = "warn" needless_pass_by_value = "warn"