timberjack 0.1.0-alpha.4

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

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