From fe9a373105eabbc173641a13705416104775bfb0 Mon Sep 17 00:00:00 2001 From: Dmitry Mottl Date: Sat, 26 Apr 2025 02:46:11 +0700 Subject: [PATCH 1/3] Bump crates --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d563db9..fcdf049 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,17 +32,17 @@ rust-version = "1.73" all-features = true [dependencies] -arrow = { version = ">= 53.1.0, < 55.0.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } -bytemuck = { version = "1.18.0", features = ["must_cast"] } -bytes = "1.4" -chrono = { version = ">= 0.4.37, < 0.4.40", default-features = false, features = ["std"] } +arrow = { version = "55.0.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } +bytemuck = { version = "1.22.0", features = ["must_cast"] } +bytes = "1.10.1" +chrono = { version = "0.4.40", default-features = false, features = ["std"] } chrono-tz = "0.10" -fallible-streaming-iterator = { version = "0.1" } +fallible-streaming-iterator = "0.1" flate2 = "1" lz4_flex = "0.11" lzokay-native = "0.1" num = "0.4.1" -prost = { version = "0.13" } +prost = "0.13" snafu = "0.8" snap = "1.1" zstd = "0.13" @@ -65,13 +65,13 @@ anyhow = { version = "1.0", optional = true } clap = { version = "4.5.4", features = ["derive"], optional = true } # opendal -opendal = { version = "0.50", optional = true, default-features = false } +opendal = { version = "0.53", optional = true, default-features = false } [dev-dependencies] -arrow-ipc = { version = "53.0.0", features = ["lz4"] } -arrow-json = "53.0.0" +arrow-ipc = { version = "55.0.0", features = ["lz4"] } +arrow-json = "55.0.0" criterion = { version = "0.5", default-features = false, features = ["async_tokio"] } -opendal = { version = "0.50", default-features = false, features = ["services-memory"] } +opendal = { version = "0.53", default-features = false, features = ["services-memory"] } pretty_assertions = "1.3.0" proptest = "1.0.0" serde_json = { version = "1.0", default-features = false, features = ["std"] } From 6c54fa941a32e77636bcaf04c1a349c932186ded Mon Sep 17 00:00:00 2001 From: Dmitry Mottl Date: Sun, 27 Apr 2025 03:27:05 +0700 Subject: [PATCH 2/3] Set minimum arrow version to 53.1.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fcdf049..9b071d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ rust-version = "1.73" all-features = true [dependencies] -arrow = { version = "55.0.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } +arrow = { version = ">= 53.1.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } bytemuck = { version = "1.22.0", features = ["must_cast"] } bytes = "1.10.1" chrono = { version = "0.4.40", default-features = false, features = ["std"] } From c2c17b75112a872f0e4a2f34acef2300e49630a8 Mon Sep 17 00:00:00 2001 From: Dmitry Mottl Date: Sun, 27 Apr 2025 03:39:23 +0700 Subject: [PATCH 3/3] Set minimum chorno version to 0.4.37 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9b071d6..4c5bf03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ all-features = true arrow = { version = ">= 53.1.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } bytemuck = { version = "1.22.0", features = ["must_cast"] } bytes = "1.10.1" -chrono = { version = "0.4.40", default-features = false, features = ["std"] } +chrono = { version = ">= 0.4.37", default-features = false, features = ["std"] } chrono-tz = "0.10" fallible-streaming-iterator = "0.1" flate2 = "1"