cli-table icon indicating copy to clipboard operation
cli-table copied to clipboard

Rust crate for printing tables on command line.

Results 7 cli-table issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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`. 👍 ![Screen Shot 2023-04-03 at...

Hi again! :) In [my other issue](https://github.com/devashishdxt/cli-table/issues/38) 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 | +-----+ |...

help wanted
good first issue
Hacktoberfest

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...

help wanted
good first issue