Skip to main content

timber_rs/
lib.rs

1// Declare our modules
2pub mod accelerated;
3pub mod analyzer;
4pub mod cli;
5pub mod formatter; // New SIMD-accelerated module
6
7// Re-export key types for convenience
8pub use analyzer::{AnalysisResult, LogAnalyzer};
9pub use cli::Args;
10pub use formatter::print_results;