flawz 0.3.0

A Terminal UI for browsing CVEs
Documentation
//! A Terminal UI for browsing CVEs.

#![warn(missing_docs, clippy::unwrap_used)]

/// Application.
pub mod app;

/// Terminal event.
pub mod event;

/// TUI renderer.
pub mod tui;

/// Terminal handler
pub mod terminal;

/// Application theme.
pub mod theme;

/// Custom widgets.
pub mod widgets;

/// Event handler.
pub mod handler;

/// Error implementation.
pub mod error;

/// Command-line arguments.
pub mod args;

/// CVE wrapper.
pub mod cve;