cli-table
cli-table copied to clipboard
Rust crate for printing tables on command line.
Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. Release notes Sourced from syn's releases. 2.0.18 Permit empty attr in syn::meta::parser (#1460) Commits 4cae0a2 Release 2.0.18 278dbe1 Merge pull...
Hi, I am printing a table without any particular style, configured with blank border and separator: ```rs table .border(Border::builder().build()) .separator(Separator::builder().build()), ``` Problem is it seems that the output of the...
Hi! I used the same code here to render a table in my terminal that looks pretty nice when I run it with `cargo run`. 👍  I was trying to write an integration test and verify that the correct std output was printed to the console. Now I would...
There are now a few libraries for pretty-printing tables to the console. It would be really helpful to have a bit of a comparison to allow users (including myself!) to...
Support for something like this (`Table` inside a `Cell`): ``` +------------+----------------+ | Name | Age (in years) | +------------+----------------+ | Tom | 10 | +------------+----------------+ | Jerry | +-----+ |...
Browsing the docs, it doesn't seem like there is any option for controlling wrapping or truncation. The ability to customize this per column would be great. As in: wrap splits...