Skip to main content

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 pattern_detection;
12pub mod pipeline;
13pub mod rule_filter;
14pub mod types;
15
16pub use analyzer::{LanguageAnalyzer, ParsedFile};
17pub use config::Config;
18pub use graph::DependencyGraph;
19pub use layer::LayerClassifier;
20pub use metrics::{AnalysisResult, ArchitectureScore};
21pub use pattern_detection::{PatternDetection, PatternScore};
22pub use types::*;