Bump tabled from 0.3.0 to 0.4.2 (#447)

* Bump tabled from 0.3.0 to 0.4.2

Bumps [tabled](https://github.com/zhiburt/tabled) from 0.3.0 to 0.4.2.
- [Release notes](https://github.com/zhiburt/tabled/releases)
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zhiburt/tabled/compare/v0.3.0...v0.4.2)

---
updated-dependencies:
- dependency-name: tabled
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias <matthias-endler@gmx.net>
This commit is contained in:
dependabot[bot] 2022-01-07 23:10:39 +01:00 committed by GitHub
parent 21f3160b71
commit 54b5be81c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View file

@ -2088,9 +2088,9 @@ dependencies = [
[[package]]
name = "papergrid"
version = "0.1.23"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fe93a33fc67c8a9d21f3fefa54c4a991e08d2eba5f2fd6f327ca520862eddfb"
checksum = "daff3d017ba874371c984a4eb5662e446362f13d11ee6bdb7fadbe1e3c223333"
dependencies = [
"unicode-width",
]
@ -2997,9 +2997,9 @@ dependencies = [
[[package]]
name = "tabled"
version = "0.3.0"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465c45048a4b177eee43527a3741866dd66839f15c3223b5047dbc43d8a5076e"
checksum = "7a0dca82254bf1031c194833992b10c8a8148a8f4966ae2d3b0afdabcb1bb4c8"
dependencies = [
"papergrid",
"tabled_derive",
@ -3007,9 +3007,9 @@ dependencies = [
[[package]]
name = "tabled_derive"
version = "0.1.8"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b366a04a152b687a209b2459f29da3650b74bc859390308949305211e28af4b9"
checksum = "a224735cbc8c30f06e52dc3891dc4b8eed07e5d4c8fb6f4cb6a839458e5a6465"
dependencies = [
"proc-macro2",
"quote",

View file

@ -36,7 +36,7 @@ ring = "0.16.20"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.74"
structopt = "0.3.25"
tabled = "0.3.0"
tabled = "0.4.2"
tokio = { version = "1.15.0", features = ["full"] }
toml = "0.5.8"
futures = "0.3.19"

View file

@ -45,7 +45,7 @@ fn stats_table(stats: &ResponseStats) -> String {
count: stats.errors + stats.failures,
},
];
let style = tabled::Style::github_markdown().header(Some(Line::bordered('-', '|', '|', '|')));
let style = tabled::Style::GITHUB_MARKDOWN.header(Some(Line::bordered('-', '|', '|', '|')));
Table::new(stats)
.with(Modify::new(Full).with(Alignment::left()))