From 4cefa8b46d1c3e8fc4d430caa16313352fc22a97 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Thu, 23 Jan 2025 09:18:58 +0000 Subject: [PATCH] fix lint for Rust 1.84 (#183) --- crates/jiter/src/py_string_cache.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/jiter/src/py_string_cache.rs b/crates/jiter/src/py_string_cache.rs index b5ec424..1fa1098 100644 --- a/crates/jiter/src/py_string_cache.rs +++ b/crates/jiter/src/py_string_cache.rs @@ -136,6 +136,7 @@ const ARRAY_REPEAT_VALUE: Entry = None; impl Default for PyStringCache { fn default() -> Self { Self { + #[allow(clippy::large_stack_arrays)] entries: Box::new([ARRAY_REPEAT_VALUE; CAPACITY]), hash_builder: RandomState::default(), }