boundary_core/lib.rs
1pub mod analyzer;
2pub mod cache;
3pub mod config;
4pub mod custom_rules;
5pub mod evolution;
6pub mod forensics;
7pub mod graph;
8pub mod layer;
9pub mod metrics;
10pub mod metrics_report;
11pub mod pipeline;
12pub mod types;
13
14pub use analyzer::{LanguageAnalyzer, ParsedFile};
15pub use config::Config;
16pub use graph::DependencyGraph;
17pub use layer::LayerClassifier;
18pub use metrics::{AnalysisResult, ArchitectureScore};
19pub use types::*;