prettytable-rs icon indicating copy to clipboard operation
prettytable-rs copied to clipboard

A rust library to print aligned and formatted tables

Results 64 prettytable-rs issues
Sort by recently updated
recently updated
newest added

Not quite the same as #132. If you want Rust 1.32 support, you can still force term 0.6 as a dependency. (Can't test travis though.) Though honestly: It's high time...

I have a `Vec` that represents my output lines. I want to append a table to it but I can't seem to do that and preserve cell styles. I've tried...

Currently, `TableSlice::print_tty()` panics on I/O errors. I think it should return an error instead of panicking, because I/O errors are not exceptional situations. Panics are reserved to exceptional situations. For...

bug

Allows printing tables as markdown tables: ``` | Title 1 | Title 2 | |-------------|------------| | Value 1 | Value 2 | | Value three | Value four | ```...

See #138 This crate hasn't received a single commit or merged PR since about three years. There also doesn't seem to be any intent of the crate author to continue...

This crate hasn't received a single commit or merged PR since about three years. There also doesn't seem to be any intent of the crate author to continue working on...

Hi, I did some fuzzing of a crates that uses this library, and found the following crash: ``` thread 'main' panicked at 'attempt to subtract with overflow', src/utils.rs:106:5 stack backtrace:...

After adding trait bound `ToString` to `Cell::new()/Cell::new_align()`, maybe it will be more convenient to construct a row from another type because it will be unnecessary to transform the content to...

enhancement