Package: rust-tabled / 0.14.0-3

Metadata

Package Version Patches format
rust-tabled 0.14.0-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
disable tests testing_table.patch | (download)

tests/main.rs | 6 3 3 - 0 !
1 file changed, 3 insertions( ), 3 deletions(-)

---
fix missing datafile in example.patch | (download)

examples/table_width_2.rs | 2 1 1 - 0 !
1 file changed, 1 insertion( ), 1 deletion(-)

---
treat ascii control chars zero width.patch | (download)

src/lib.rs | 24 23 1 - 0 !
src/settings/width/util.rs | 10 5 5 - 0 !
src/settings/width/wrap.rs | 18 9 9 - 0 !
src/tables/extended.rs | 2 1 1 - 0 !
4 files changed, 38 insertions( ), 16 deletions(-)

 treat ascii control characters as zero width
 to deal with unicode-width 0.1.13 behavior change, which the upstream states
 is not for terminal use. Here we naively skip them.
 Based on the prettytable-rs patch by Peter Green (plugwash).
 In addition to its counterpart for papergrid, this patch also disables 2
 tests that tests.. emoji and Unicode control characters. It's too much a
 hassle.