chore(deps): Bump comfy-table from 6.2.0 to 7.0.0 (#7944)
Bumps [comfy-table](https://github.com/nukesor/comfy-table) from 6.2.0 to 7.0.0. - [Release notes](https://github.com/nukesor/comfy-table/releases) - [Changelog](https://github.com/Nukesor/comfy-table/blob/main/CHANGELOG.md) - [Commits](https://github.com/nukesor/comfy-table/compare/v6.2.0...v7.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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dom <dom@itsallbroken.com>pull/24376/head
parent
89e0763421
commit
f7d84a8438
|
@ -218,7 +218,7 @@ dependencies = [
|
||||||
"arrow-schema",
|
"arrow-schema",
|
||||||
"arrow-select",
|
"arrow-select",
|
||||||
"chrono",
|
"chrono",
|
||||||
"comfy-table",
|
"comfy-table 6.2.0",
|
||||||
"lexical-core",
|
"lexical-core",
|
||||||
"num",
|
"num",
|
||||||
]
|
]
|
||||||
|
@ -370,7 +370,7 @@ dependencies = [
|
||||||
"ahash 0.8.3",
|
"ahash 0.8.3",
|
||||||
"arrow",
|
"arrow",
|
||||||
"chrono",
|
"chrono",
|
||||||
"comfy-table",
|
"comfy-table 7.0.0",
|
||||||
"datafusion",
|
"datafusion",
|
||||||
"hashbrown 0.13.2",
|
"hashbrown 0.13.2",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
|
@ -972,6 +972,17 @@ dependencies = [
|
||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "comfy-table"
|
||||||
|
version = "7.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f9e1f7e5d046697d34b593bdba8ee31f4649366e452a2ccabb3baf3511e503d1"
|
||||||
|
dependencies = [
|
||||||
|
"strum",
|
||||||
|
"strum_macros",
|
||||||
|
"unicode-width",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "compactor"
|
name = "compactor"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
@ -2504,7 +2515,7 @@ dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"clap",
|
"clap",
|
||||||
"clap_blocks",
|
"clap_blocks",
|
||||||
"comfy-table",
|
"comfy-table 7.0.0",
|
||||||
"compactor",
|
"compactor",
|
||||||
"console-subscriber",
|
"console-subscriber",
|
||||||
"data_types",
|
"data_types",
|
||||||
|
@ -2585,7 +2596,7 @@ dependencies = [
|
||||||
"arrow_util",
|
"arrow_util",
|
||||||
"bytes",
|
"bytes",
|
||||||
"client_util",
|
"client_util",
|
||||||
"comfy-table",
|
"comfy-table 7.0.0",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"generated_types",
|
"generated_types",
|
||||||
"influxdb-line-protocol",
|
"influxdb-line-protocol",
|
||||||
|
|
|
@ -12,7 +12,7 @@ ahash = { version = "0.8", default-features = false, features = ["runtime-rng"]
|
||||||
arrow = { workspace = true, features = ["prettyprint", "dyn_cmp_dict"] }
|
arrow = { workspace = true, features = ["prettyprint", "dyn_cmp_dict"] }
|
||||||
# used by arrow anyway (needed for printing workaround)
|
# used by arrow anyway (needed for printing workaround)
|
||||||
chrono = { version = "0.4", default-features = false }
|
chrono = { version = "0.4", default-features = false }
|
||||||
comfy-table = { version = "6.2", default-features = false }
|
comfy-table = { version = "7.0", default-features = false }
|
||||||
hashbrown = { workspace = true }
|
hashbrown = { workspace = true }
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
once_cell = { version = "1.18", features = ["parking_lot"] }
|
once_cell = { version = "1.18", features = ["parking_lot"] }
|
||||||
|
|
|
@ -50,7 +50,7 @@ arrow = { workspace = true, features = ["prettyprint"] }
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
bytes = "1.4"
|
bytes = "1.4"
|
||||||
clap = { version = "4", features = ["derive", "env"] }
|
clap = { version = "4", features = ["derive", "env"] }
|
||||||
comfy-table = { version = "6.2", default-features = false }
|
comfy-table = { version = "7.0", default-features = false }
|
||||||
console-subscriber = { version = "0.1.9", optional = true, features = ["parking_lot"] }
|
console-subscriber = { version = "0.1.9", optional = true, features = ["parking_lot"] }
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
|
|
@ -16,7 +16,7 @@ arrow-flight = { workspace = true, optional = true, features=["flight-sql-experi
|
||||||
arrow_util = { path = "../arrow_util", optional = true }
|
arrow_util = { path = "../arrow_util", optional = true }
|
||||||
bytes = "1.4"
|
bytes = "1.4"
|
||||||
client_util = { path = "../client_util" }
|
client_util = { path = "../client_util" }
|
||||||
comfy-table = { version = "6.2", default-features = false}
|
comfy-table = { version = "7.0", default-features = false}
|
||||||
futures-util = { version = "0.3" }
|
futures-util = { version = "0.3" }
|
||||||
influxdb-line-protocol = { path = "../influxdb_line_protocol"}
|
influxdb-line-protocol = { path = "../influxdb_line_protocol"}
|
||||||
generated_types = { path = "../generated_types" }
|
generated_types = { path = "../generated_types" }
|
||||||
|
|
Loading…
Reference in New Issue