timber-rs 0.1.0-alpha.3

A CLI tool that fells log files with speed and insight
Documentation
1
2
3
4
5
6
7
8
9
10
// Declare our modules
pub mod accelerated;
pub mod analyzer;
pub mod cli;
pub mod formatter; // New SIMD-accelerated module

// Re-export key types for convenience
pub use analyzer::{AnalysisResult, LogAnalyzer};
pub use cli::Args;
pub use formatter::print_results;