fix: allow dead_code in data/ml crates (unintegrated provider/model infrastructure)

This commit is contained in:
Administrator
2026-02-25 10:32:34 +00:00
parent 2af537d37c
commit c821f2bec8
2 changed files with 2 additions and 0 deletions

View File

@@ -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

View File

@@ -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