From 366c4d996557a7b3880dc2a57cfeff8ce3f22b56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Sep 2022 09:02:28 +0000 Subject: [PATCH] chore(deps): Bump once_cell from 1.13.1 to 1.14.0 (#5555) Bumps [once_cell](https://github.com/matklad/once_cell) from 1.13.1 to 1.14.0. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.13.1...v1.14.0) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- garbage_collector/Cargo.toml | 2 +- influxdb2_client/Cargo.toml | 2 +- influxdb_iox/Cargo.toml | 2 +- iox_tests/Cargo.toml | 2 +- logfmt/Cargo.toml | 2 +- query_tests/Cargo.toml | 2 +- test_helpers_end_to_end/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de9956c162..29db6c6026 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3135,9 +3135,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e" +checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" dependencies = [ "parking_lot_core 0.9.3", ] diff --git a/garbage_collector/Cargo.toml b/garbage_collector/Cargo.toml index 9112cfb6c4..d051613640 100644 --- a/garbage_collector/Cargo.toml +++ b/garbage_collector/Cargo.toml @@ -21,6 +21,6 @@ clap_blocks = { path = "../clap_blocks" } data_types = { path = "../data_types" } filetime = "0.2" metric = { path = "../metric" } -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } parquet_file = { path = "../parquet_file" } tempfile = "3" diff --git a/influxdb2_client/Cargo.toml b/influxdb2_client/Cargo.toml index 41d167454c..65ed1e977e 100644 --- a/influxdb2_client/Cargo.toml +++ b/influxdb2_client/Cargo.toml @@ -16,7 +16,7 @@ uuid = { version = "1", features = ["v4"] } [dev-dependencies] # In alphabetical order mockito = "0.31" -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } parking_lot = "0.12" tokio = { version = "1.20", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } test_helpers = { path = "../test_helpers" } diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index 302538c1b2..de6ee23629 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -52,7 +52,7 @@ humantime = "2.1.0" itertools = "0.10.1" libc = { version = "0.2" } num_cpus = "1.13.0" -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } rustyline = { version = "10.0", default-features = false } serde_json = "1.0.83" snafu = "0.7" diff --git a/iox_tests/Cargo.toml b/iox_tests/Cargo.toml index b1a8dc593f..c0e77c7c44 100644 --- a/iox_tests/Cargo.toml +++ b/iox_tests/Cargo.toml @@ -16,7 +16,7 @@ metric = { path = "../metric" } mutable_batch_lp = { path = "../mutable_batch_lp" } object_store = "0.4.0" observability_deps = { path = "../observability_deps" } -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } parquet_file = { path = "../parquet_file" } iox_query = { path = "../iox_query" } schema = { path = "../schema" } diff --git a/logfmt/Cargo.toml b/logfmt/Cargo.toml index 808b44f5ab..36e074a69e 100644 --- a/logfmt/Cargo.toml +++ b/logfmt/Cargo.toml @@ -11,7 +11,7 @@ tracing-subscriber = "0.3" workspace-hack = { path = "../workspace-hack"} [dev-dependencies] # In alphabetical order -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } parking_lot = "0.12" regex = "1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } diff --git a/query_tests/Cargo.toml b/query_tests/Cargo.toml index 1a12d1c520..d40860b1a7 100644 --- a/query_tests/Cargo.toml +++ b/query_tests/Cargo.toml @@ -23,7 +23,7 @@ iox_tests = { path = "../iox_tests" } itertools = "0.10" mutable_batch = { path = "../mutable_batch" } mutable_batch_lp = { path = "../mutable_batch_lp" } -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } predicate = { path = "../predicate" } schema = { path = "../schema" } sharder = { path = "../sharder" } diff --git a/test_helpers_end_to_end/Cargo.toml b/test_helpers_end_to_end/Cargo.toml index 3c3d3b597c..df44056a0a 100644 --- a/test_helpers_end_to_end/Cargo.toml +++ b/test_helpers_end_to_end/Cargo.toml @@ -16,7 +16,7 @@ hyper = "0.14" influxdb_iox_client = { path = "../influxdb_iox_client", features = ["flight", "format", "write_lp"] } nix = "0.25" observability_deps = { path = "../observability_deps" } -once_cell = { version = "1.13.1", features = ["parking_lot"] } +once_cell = { version = "1.14.0", features = ["parking_lot"] } parking_lot = "0.12" prost = "0.11" rand = "0.8.3"