ublx 0.1.5

TUI to index once, enrich with metadata, and browse a flat snapshot in a 3-pane layout with multiple modes.
//! Shared utilities: path/clipboard/terminal helpers, byte formatting, notifications, and small I/O
//! affordances (not the TUI or engine proper).

mod clipboard;
mod embedded_cover;
mod error_writer;
mod external_tools;
mod format;
mod notifications;
mod path;
mod perf;
mod terminal_osc;
mod tools;

pub use clipboard::*;
pub use embedded_cover::*;
pub use error_writer::*;
pub use external_tools::*;
pub use format::*;
pub use notifications::*;
pub use path::*;
pub use perf::*;
pub use terminal_osc::*;
pub use tools::*;