eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
#![allow(unused_imports)]
//! Decomposed renderer modules for improved readability and maintainability.
//!
//! Each module handles a specific UI component's rendering logic.

pub mod conflicts;
pub mod debug_panel;
pub mod feedback;
pub mod op_log;
pub mod pr_helper;
// pub mod autocomplete;  // TODO: implement
// pub mod merge_base;  // TODO: implement
// pub mod runtime;  // TODO: implement
pub mod theme_picker;
pub mod utils;

// Re-export render functions for ease of use
pub use conflicts::render as render_conflicts;
pub use debug_panel::render as render_debug_panel;
pub use feedback::render as render_feedback;
// pub use merge_base::render as render_merge_base;
pub use op_log::render as render_op_log;
pub use pr_helper::render as render_pr_helper;
pub use theme_picker::render as render_theme_picker;