comfy-table 0.0.3

A easy to use, automatically wrapping and highly configurable commandline table builder library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod cell;
pub mod column;
pub mod row;
pub mod style;
pub mod table;
mod utils;

pub use prelude::*;

pub mod prelude {
    pub use crate::cell::Cell;
    pub use crate::column::Column;
    pub use crate::row::Row;
    pub use crate::style::CellAlignment;
    pub use crate::style::ColumnConstraint;
    pub use crate::style::ContentArrangement;
    pub use crate::table::Table;
}