logss 0.0.4

A simple command line tool that helps you visualize an input stream of text.
Documentation
/// Application.
pub mod app;

/// Terminal events handler.
pub mod event;

/// Terminal user interface.
pub mod tui;

/// Event handler.
pub mod handler;

/// CircularBuffer.
pub mod cb;

/// Threaded Stdin.
pub mod tstdin;

/// Command line arguments
pub mod args;

/// Container matcher
pub mod container;

/// Help menu
pub mod help;

/// BarChart
pub mod bars;

/// State of app and containers
pub mod states;

/// Popup box
pub mod popup;

/// Input widget
pub mod input;