chore(deps): bump comfy-table from 4.1.1 to 5.0.0

Bumps [comfy-table](https://github.com/nukesor/comfy-table) from 4.1.1 to 5.0.0.
- [Release notes](https://github.com/nukesor/comfy-table/releases)
- [Changelog](https://github.com/Nukesor/comfy-table/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nukesor/comfy-table/compare/v4.1.1...v5.0.0)

---
updated-dependencies:
- dependency-name: comfy-table
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
pull/24376/head
dependabot[bot] 2021-11-08 10:55:57 +00:00 committed by GitHub
parent bfe7eddb4a
commit e4d943d79c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 7 deletions

39
Cargo.lock generated
View File

@ -99,7 +99,7 @@ checksum = "a900a6164aa0abf26d7a6dfea727116a3619456decfbf573e60c7615bf49e84c"
dependencies = [
"bitflags",
"chrono",
"comfy-table",
"comfy-table 4.1.1",
"csv",
"flatbuffers",
"hex",
@ -139,7 +139,7 @@ dependencies = [
"ahash",
"arrow",
"chrono",
"comfy-table",
"comfy-table 5.0.0",
"hashbrown",
"num-traits",
"rand",
@ -587,8 +587,19 @@ version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11e95a3e867422fd8d04049041f5671f94d53c32a9dcd82e2be268714942f3f3"
dependencies = [
"strum",
"strum_macros",
"strum 0.21.0",
"strum_macros 0.21.1",
"unicode-width",
]
[[package]]
name = "comfy-table"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c42350b81f044f576ff88ac750419f914abb46a03831bb1747134344ee7a4e64"
dependencies = [
"strum 0.22.0",
"strum_macros 0.22.0",
"unicode-width",
]
@ -1563,7 +1574,7 @@ dependencies = [
"bytes",
"chrono",
"clap",
"comfy-table",
"comfy-table 5.0.0",
"csv",
"data_types",
"datafusion 0.1.0",
@ -4099,6 +4110,12 @@ version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
[[package]]
name = "strum"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
[[package]]
name = "strum_macros"
version = "0.21.1"
@ -4111,6 +4128,18 @@ dependencies = [
"syn",
]
[[package]]
name = "strum_macros"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "subtle"
version = "2.4.1"

View File

@ -14,7 +14,7 @@ snafu = "0.6"
hashbrown = "0.11"
# used by arrow anyway (needed for printing workaround)
chrono = "0.4"
comfy-table = { version = "4.0", default-features = false }
comfy-table = { version = "5.0", default-features = false }
[dev-dependencies]
rand = "0.8.3"

View File

@ -66,7 +66,7 @@ itertools = "0.10.1"
parquet = "6.0"
pin-project = "1.0"
# used by arrow/datafusion anyway
comfy-table = { version = "4.0", default-features = false }
comfy-table = { version = "5.0", default-features = false }
pprof = { version = "^0.5", default-features = false, features = ["flamegraph", "protobuf"], optional = true }
prost = "0.8"
rustyline = { version = "9.0", default-features = false }