Split format_table into separate crate and reduce k2v-client dependencies

This commit is contained in:
Alex Auvolat
2023-05-17 13:01:37 +02:00
parent b66f247580
commit a1cec2cd60
14 changed files with 102 additions and 47 deletions
+13
View File
@@ -0,0 +1,13 @@
# `format_table`
Format tables with a stupid API. [Documentation](https://docs.rs/format_table).
Example:
```rust
let mut table = vec!["product\tquantity\tprice".to_string()];
for (p, q, r) in [("tomato", 12, 15), ("potato", 10, 20), ("rice", 5, 12)] {
table.push(format!("{}\t{}\t{}", p, q, r));
}
format_table::format_table(table);
```