From 51c5e3e0bef991767f48a0c3bf6814426711b5f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:15:21 +0800 Subject: [PATCH] chore(deps): Bump chrono-tz from 0.9.0 to 0.10.0 (#18774) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 16 ++++++++-------- src/common/Cargo.toml | 2 +- src/expr/impl/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d833712d959ca..b93e941d152f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2746,12 +2746,12 @@ dependencies = [ [[package]] name = "chrono-tz" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" +checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6" dependencies = [ "chrono", - "chrono-tz-build 0.3.0", + "chrono-tz-build 0.4.0", "phf", "uncased", ] @@ -2769,13 +2769,13 @@ dependencies = [ [[package]] name = "chrono-tz-build" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" +checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7" dependencies = [ "parse-zoneinfo", - "phf", "phf_codegen", + "phf_shared", "uncased", ] @@ -10428,7 +10428,7 @@ dependencies = [ "byteorder", "bytes", "chrono", - "chrono-tz 0.9.0", + "chrono-tz 0.10.0", "clap", "coarsetime", "comfy-table", @@ -11056,7 +11056,7 @@ dependencies = [ "auto_enums", "bytes", "chrono", - "chrono-tz 0.9.0", + "chrono-tz 0.10.0", "criterion", "educe", "expect-test", diff --git a/src/common/Cargo.toml b/src/common/Cargo.toml index eb62fceea959e..5c90a8cd98a73 100644 --- a/src/common/Cargo.toml +++ b/src/common/Cargo.toml @@ -39,7 +39,7 @@ chrono = { version = "0.4", default-features = false, features = [ "clock", "std", ] } -chrono-tz = { version = "0.9", features = ["case-insensitive"] } +chrono-tz = { version = "0.10", features = ["case-insensitive"] } clap = { workspace = true } comfy-table = "7" crc32fast = "1" diff --git a/src/expr/impl/Cargo.toml b/src/expr/impl/Cargo.toml index 25a1c21444b42..cd8b5a3151eb3 100644 --- a/src/expr/impl/Cargo.toml +++ b/src/expr/impl/Cargo.toml @@ -36,7 +36,7 @@ chrono = { version = "0.4", default-features = false, features = [ "clock", "std", ] } -chrono-tz = { version = "0.9", features = ["case-insensitive"] } +chrono-tz = { version = "0.10", features = ["case-insensitive"] } educe = "0.6" fancy-regex = "0.13" futures-async-stream = { workspace = true }