text_table 0.0.4

A library to create formatted plain-text tables from arbitrary data.
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(io)]
pub use alignment::Alignment;
pub use cell::{Cell, ToCell};
pub use row::{Row, ToRow};
pub use table::{RowOrSep, Table};
pub use renderer::Renderer;

mod alignment;
mod cell;
mod row;
mod table;
mod renderer;