revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Advanced Log Viewer widget
//!
//! Provides a feature-rich log viewer with regex search, filtering, bookmarks,
//! JSON log parsing, live tail mode, and timestamp navigation.

mod entry;
mod filter;
mod parser;
mod types;
mod view;

// Public exports
pub use entry::{LogEntry, SearchMatch};
pub use filter::LogFilter;
pub use parser::LogParser;
pub use types::{LogLevel, TimestampFormat};
pub use view::{log_entry, log_filter, log_parser, log_viewer, LogViewer};