#list #csv #table

list_display

display list

1 unstable release

0.1.1 Mar 28, 2024
0.1.0 Mar 27, 2024

#107 in #csv

Download history 277/week @ 2024-03-23 69/week @ 2024-03-30 11/week @ 2024-04-06

357 downloads per month

MIT/Apache

15KB
286 lines

list_display

use list_display::*;
fn main() {
    let mut title = VecRowBox::new();
    let mut a1 = VecRowBox::new();
    title.push("Command".bold().blue());
    title.push("Summary".bold().blue());
    a1.push("install".purple());
    a1.push("help".purple());
    let mut box_list = VecBoxList::new();
    box_list.push(title);
    box_list.push(a1);
    box_list.build_rowlist_to_columslist().direction(vec![1], Right).print_list();
}

Dependencies

~2–13MB
~109K SLoC