rab-agent 0.1.5

rab is a lightweight, extensible, Rust-based coding agent.
Documentation
pub mod r#box;
pub mod diff;
pub mod dynamic_lines;
pub mod editor;
pub mod loader;
pub mod markdown;
pub mod rc_ref_cell_component;
pub use markdown::{
    DefaultTextStyle, Markdown, MarkdownTheme, StyleFn, highlight_code, path_to_language,
};
pub use rc_ref_cell_component::RcRefCellComponent;
pub mod select_list;
pub mod spacer;
pub mod text;

pub use r#box::TuiBox as Box;
pub use dynamic_lines::DynamicLines;
pub use editor::Editor;
pub use loader::Loader;

pub use select_list::{SelectItem, SelectList};
pub use spacer::Spacer;
pub use text::Text;