From e4d943d79c54f466ecb10477efa5dc7c28be88ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Nov 2021 10:55:57 +0000 Subject: [PATCH] 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] --- Cargo.lock | 39 ++++++++++++++++++++++++++++++++++----- arrow_util/Cargo.toml | 2 +- influxdb_iox/Cargo.toml | 2 +- 3 files changed, 36 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a56863fe0d..50edc42e3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/arrow_util/Cargo.toml b/arrow_util/Cargo.toml index e6682746a2..e294c6739f 100644 --- a/arrow_util/Cargo.toml +++ b/arrow_util/Cargo.toml @@ -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" diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index 36c865d6b3..c1e7ab87bf 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -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 }