1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#![cfg_attr(coverage_nightly, coverage(off))]
// Comply handlers - split for file health (CB-040)
use crate::cli::commands::{ComplyCommands, ComplyOutputFormat};
use anyhow::Result;
use chrono::Utc;
use std::fs;
use std::path::Path;
// Check handlers split into submodules
mod check_handlers;
pub(crate) use check_handlers::*;
// Migration, enforce, report, init, upgrade handlers
include!("migrate_handlers.rs");
// Command dispatch (needs access to both check_handlers and migrate_handlers items)
include!("command_dispatch.rs");
// CB-050/CB-060 detection logic
pub mod comply_cb_detect;
// CB-300: Muda Waste Score (COMPLY-040)
pub mod muda_handlers;
// CB-301/CB-302: Reproducibility & Golden Trace (COMPLY-041/042)
pub mod reproducibility_handlers;
// CB-303: Equation-Driven Development (COMPLY-043)
pub mod edd_handlers;
// CC-001 through CC-005: Cross-Crate Duplication Detection (#232)
pub mod cross_crate_handlers;
#[cfg(test)]
#[path = "comply_handlers_tests.rs"]
mod tests;
#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod falsification_tests;