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