chore: use the same version of chrono-tz (#5523)

* fix: use the same version of chrono-tz

Signed-off-by: yihong0618 <zouzou0208@gmail.com>

* fix: address comments

Signed-off-by: yihong0618 <zouzou0208@gmail.com>

---------

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
yihong
2025-02-14 01:23:29 +08:00
committed by GitHub
parent b4d5393080
commit 224b1d15cd
4 changed files with 8 additions and 51 deletions

54
Cargo.lock generated
View File

@@ -313,7 +313,7 @@ dependencies = [
"arrow-data",
"arrow-schema",
"chrono",
"chrono-tz 0.10.1",
"chrono-tz",
"half",
"hashbrown 0.15.2",
"num",
@@ -1508,28 +1508,6 @@ dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "chrono-tz"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
dependencies = [
"chrono",
"chrono-tz-build 0.2.1",
"phf",
]
[[package]]
name = "chrono-tz"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
dependencies = [
"chrono",
"chrono-tz-build 0.3.0",
"phf",
]
[[package]]
name = "chrono-tz"
version = "0.10.1"
@@ -1537,32 +1515,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c6ac4f2c0bf0f44e9161aec9675e1050aa4a530663c4a9e37e108fa948bca9f"
dependencies = [
"chrono",
"chrono-tz-build 0.4.0",
"chrono-tz-build",
"phf",
]
[[package]]
name = "chrono-tz-build"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
[[package]]
name = "chrono-tz-build"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
[[package]]
name = "chrono-tz-build"
version = "0.4.0"
@@ -2425,7 +2381,7 @@ version = "0.12.0"
dependencies = [
"arrow",
"chrono",
"chrono-tz 0.8.6",
"chrono-tz",
"common-error",
"common-macro",
"humantime",
@@ -7885,7 +7841,7 @@ dependencies = [
"bytemuck",
"bytes",
"chrono",
"chrono-tz 0.10.1",
"chrono-tz",
"fallible-streaming-iterator",
"flate2",
"futures",
@@ -8380,7 +8336,7 @@ dependencies = [
"async-trait",
"catalog",
"chrono",
"chrono-tz 0.9.0",
"chrono-tz",
"common-catalog",
"common-error",
"common-function",

View File

@@ -106,6 +106,7 @@ bitflags = "2.4.1"
bytemuck = "1.12"
bytes = { version = "1.7", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10.1"
clap = { version = "4.4", features = ["derive"] }
config = "0.13.0"
crossbeam-utils = "0.8"

View File

@@ -10,7 +10,7 @@ workspace = true
[dependencies]
arrow.workspace = true
chrono.workspace = true
chrono-tz = "0.8"
chrono-tz.workspace = true
common-error.workspace = true
common-macro.workspace = true
humantime.workspace = true

View File

@@ -16,7 +16,7 @@ arrow.workspace = true
async-trait.workspace = true
catalog.workspace = true
chrono.workspace = true
chrono-tz = "0.9.0"
chrono-tz.workspace = true
common-catalog.workspace = true
common-error.workspace = true
common-function.workspace = true