From c821f2bec8185e70ca2a5d0daa167e27a0f66e6d Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 25 Feb 2026 10:32:34 +0000 Subject: [PATCH] fix: allow dead_code in data/ml crates (unintegrated provider/model infrastructure) --- data/src/lib.rs | 1 + ml/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/data/src/lib.rs b/data/src/lib.rs index a504e3941..ec4dc11dd 100644 --- a/data/src/lib.rs +++ b/data/src/lib.rs @@ -1,5 +1,6 @@ #![allow(unused_extern_crates)] #![allow(unused_crate_dependencies)] +#![allow(dead_code)] // Data providers and processors defined but not yet integrated from services #![allow(unsafe_code)] // Intentional unsafe for high-performance data processing #![allow(missing_docs)] // Internal implementation details don't require documentation #![allow(missing_debug_implementations)] // Not all types need Debug diff --git a/ml/src/lib.rs b/ml/src/lib.rs index 6a370a3c2..06663a64b 100644 --- a/ml/src/lib.rs +++ b/ml/src/lib.rs @@ -1,5 +1,6 @@ #![deny(clippy::unwrap_used, clippy::expect_used)] #![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))] +#![allow(dead_code)] // 10 ML model implementations with internal architecture not yet fully wired #![allow(missing_docs)] // Internal implementation details don't require documentation #![allow(missing_debug_implementations)] // Not all types need Debug #![allow(unused_crate_dependencies)] // Dev dependencies not used in lib.rs