ublx 0.1.2

TUI to index once, enrich with metadata, and browse a flat snapshot in a 3-pane layout with multiple modes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Panel layout, blocks, lists, and right-pane rendering.

mod layout;
mod middle;
mod right;
mod user_selected_mode;

pub mod delta_mode;
pub mod settings_mode;
pub mod snapshot_mode;

pub use layout::*;
pub use middle::*;
pub use right::*;
pub use user_selected_mode::{draw_duplicates_panes, draw_lenses_panes};