logana 0.1.0

A TUI log analyzer/viewer built for speed - handles files with millions of lines with instant filtering and VIM like navigation.
Documentation
//! logana library — re-exports all public crate modules.
//!
//! The binary entry point is `main.rs`; this crate root exposes the same
//! modules for integration tests and external tooling.

pub mod auto_complete;
pub mod commands;
pub mod config;
pub mod date_filter;
pub mod db;
pub mod export;
pub mod field_filter;
pub mod file_reader;
pub mod filters;
pub mod log_manager;
pub mod mode;
pub mod parser;
pub mod search;
pub mod theme;
pub mod types;
pub mod ui;
pub mod value_colors;