diff --git a/Cargo.toml b/Cargo.toml index b118c937ca36..804fdf5807ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,3 +91,5 @@ arrow-schema = { version = "46.0.0", path = "./arrow-schema" } arrow-select = { version = "46.0.0", path = "./arrow-select" } arrow-string = { version = "46.0.0", path = "./arrow-string" } parquet = { version = "46.0.0", path = "./parquet", default-features = false } + +chrono = { version = "0.4.31", default-features = false, features = ["clock"] } diff --git a/arrow-arith/Cargo.toml b/arrow-arith/Cargo.toml index b5ea2e3c4354..57dc033e9645 100644 --- a/arrow-arith/Cargo.toml +++ b/arrow-arith/Cargo.toml @@ -38,7 +38,7 @@ arrow-array = { workspace = true } arrow-buffer = { workspace = true } arrow-data = { workspace = true } arrow-schema = { workspace = true } -chrono = { version = "0.4.23", default-features = false } +chrono = { workspace = true } half = { version = "2.1", default-features = false } num = { version = "0.4", default-features = false, features = ["std"] } diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml index 80a6eb3f541e..4f7ab24f9708 100644 --- a/arrow-array/Cargo.toml +++ b/arrow-array/Cargo.toml @@ -44,7 +44,7 @@ ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] arrow-buffer = { workspace = true } arrow-schema = { workspace = true } arrow-data = { workspace = true } -chrono = { version = "0.4.24", default-features = false, features = ["clock"] } +chrono = { workspace = true } chrono-tz = { version = "0.8", optional = true } num = { version = "0.4.1", default-features = false, features = ["std"] } half = { version = "2.1", default-features = false, features = ["num-traits"] } diff --git a/arrow-cast/Cargo.toml b/arrow-cast/Cargo.toml index 2758a4817814..2e0a9fdd4ebd 100644 --- a/arrow-cast/Cargo.toml +++ b/arrow-cast/Cargo.toml @@ -45,7 +45,7 @@ arrow-buffer = { workspace = true } arrow-data = { workspace = true } arrow-schema = { workspace = true } arrow-select = { workspace = true } -chrono = { version = "0.4.23", default-features = false, features = ["clock"] } +chrono = { workspace = true } half = { version = "2.1", default-features = false } num = { version = "0.4", default-features = false, features = ["std"] } lexical-core = { version = "^0.8", default-features = false, features = ["write-integers", "write-floats", "parse-integers", "parse-floats"] } diff --git a/arrow-csv/Cargo.toml b/arrow-csv/Cargo.toml index 1f1a762d5065..66a6d7dbcaa5 100644 --- a/arrow-csv/Cargo.toml +++ b/arrow-csv/Cargo.toml @@ -39,7 +39,7 @@ arrow-buffer = { workspace = true } arrow-cast = { workspace = true } arrow-data = { workspace = true } arrow-schema = { workspace = true } -chrono = { version = "0.4.23", default-features = false, features = ["clock"] } +chrono = { workspace = true } csv = { version = "1.1", default-features = false } csv-core = { version = "0.1" } lazy_static = { version = "1.4", default-features = false } diff --git a/arrow-json/Cargo.toml b/arrow-json/Cargo.toml index 137d53557790..977ed4390c99 100644 --- a/arrow-json/Cargo.toml +++ b/arrow-json/Cargo.toml @@ -44,7 +44,7 @@ indexmap = { version = "2.0", default-features = false, features = ["std"] } num = { version = "0.4", default-features = false, features = ["std"] } serde = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["std"] } -chrono = { version = "0.4.23", default-features = false, features = ["clock"] } +chrono = { workspace = true } lexical-core = { version = "0.8", default-features = false } [dev-dependencies] diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index bc75207c2230..8abb4f73a384 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -88,7 +88,7 @@ ffi = ["arrow-schema/ffi", "arrow-data/ffi"] chrono-tz = ["arrow-array/chrono-tz"] [dev-dependencies] -chrono = { version = "0.4.23", default-features = false, features = ["clock"] } +chrono = { workspace = true } criterion = { version = "0.5", default-features = false } half = { version = "2.1", default-features = false } rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] } diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml index b8d4391321fd..72722df5483a 100644 --- a/object_store/Cargo.toml +++ b/object_store/Cargo.toml @@ -32,7 +32,7 @@ all-features = true [dependencies] # In alphabetical order async-trait = "0.1.53" bytes = "1.0" -chrono = { version = "0.4.23", default-features = false, features = ["clock"] } +chrono = { version = "0.4.31", default-features = false, features = ["clock"] } futures = "0.3" humantime = "2.1" itertools = "0.11.0" diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml index c4f3696b43c9..7c346248acbb 100644 --- a/parquet/Cargo.toml +++ b/parquet/Cargo.toml @@ -53,7 +53,7 @@ brotli = { version = "3.3", default-features = false, features = ["std"], option flate2 = { version = "1.0", default-features = false, features = ["rust_backend"], optional = true } lz4 = { version = "1.23", default-features = false, optional = true } zstd = { version = "0.12.0", optional = true, default-features = false } -chrono = { version = "0.4.23", default-features = false, features = ["alloc"] } +chrono = { workspace = true } num = { version = "0.4", default-features = false } num-bigint = { version = "0.4", default-features = false } base64 = { version = "0.21", default-features = false, features = ["std", ], optional = true } diff --git a/parquet_derive_test/Cargo.toml b/parquet_derive_test/Cargo.toml index be24db85a109..a5d2e76d4503 100644 --- a/parquet_derive_test/Cargo.toml +++ b/parquet_derive_test/Cargo.toml @@ -31,4 +31,4 @@ rust-version = { workspace = true } [dependencies] parquet = { workspace = true } parquet_derive = { path = "../parquet_derive", default-features = false } -chrono = { version="0.4.23", default-features = false, features = [ "clock" ] } +chrono = { workspace = true }