cargo-port 0.2.1

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
8
9
10
11
12
//! Cargo-port app-side keymap-overlay orchestration: capture flow
//! command routing + TOML save.
//!
//! Rendering and row-building live in the framework's
//! [`tui_pane::KeymapPane::render_overlay`]; this module retains only
//! the cargo-port-specific orchestration: dispatching overlay
//! actions, navigation keys inside the popup, capture-command
//! routing, conflict detection against currently-bound rows, and the
//! TOML save / reload path.
mod controller;

pub(super) use controller::*;