#pretty-table #grid #text #table

text-grid

A library to create formatted plain-text tables

6 releases (3 breaking)

0.4.1 Mar 5, 2024
0.4.0 Nov 12, 2023
0.3.0 Jun 10, 2023
0.2.0 Feb 26, 2019
0.1.1 Dec 17, 2018

#427 in Command-line interface

Download history 27/week @ 2024-12-24 33/week @ 2024-12-31 45/week @ 2025-01-07 38/week @ 2025-01-14 37/week @ 2025-01-21 41/week @ 2025-01-28 40/week @ 2025-02-04 61/week @ 2025-02-11 37/week @ 2025-02-18 40/week @ 2025-02-25 31/week @ 2025-03-04 74/week @ 2025-03-11 53/week @ 2025-03-18 39/week @ 2025-03-25 35/week @ 2025-04-01 57/week @ 2025-04-08

191 downloads per month
Used in 4 crates (via lgbm)

MIT/Apache

64KB
1.5K SLoC

text-grid-rs

Crates.io Docs.rs CI

A library to create formatted plain-text tables.

Example

use text_grid::*;
struct RowData {
    a: String,
    b: u32,
    c: u32,
    d: f64,
}
impl Cells for RowData {
    fn fmt(f: &mut CellsFormatter<Self>) {
        f.column("a", |s| &s.a);
        f.column("b", |s| s.b);
        f.column("c", |s| cell(s.c).left());
        f.column_with("d", |f| {
            f.column("x", |s| s.d);
            f.column("y", |s| cells_f!("{:.2e}", s.d));
        });
    }
}

let rows = [
    RowData { a: "ABC".to_string(), b: 300, c: 1,   d: 100.1 },
    RowData { a: "XY".to_string(),  b: 2,   c: 200, d: 1.234 },
];
let g = to_grid(rows);
assert_eq!(format!("\n{g}"), OUTPUT);

const OUTPUT: &str = r#"
  a  |  b  |  c  |         d          |
-----|-----|-----|--------------------|
     |     |     |    x    |    y     |
-----|-----|-----|---------|----------|
 ABC | 300 | 1   | 100.1   | 1.00 e 2 |
 XY  |   2 | 200 |   1.234 | 1.23 e 0 |
"#;

License

This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.6–3.5MB
~52K SLoC