From f6431bfcf7ce176ca55ceabdc0142bbb63e7af14 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Tue, 22 Oct 2024 22:31:43 +0530 Subject: [PATCH 1/2] chore: update `object_store` --- Cargo.lock | 5 +++-- Cargo.toml | 7 ------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c50d97083..7a79a475f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2961,8 +2961,9 @@ dependencies = [ [[package]] name = "object_store" -version = "0.11.0" -source = "git+https://github.com/apache/arrow-rs.git?rev=23b6ff9f432e8e29c08d47a315ba0b7cb8758225#23b6ff9f432e8e29c08d47a315ba0b7cb8758225" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6eb4c22c6154a1e759d7099f9ffad7cc5ef8245f9efbab4a41b92623079c82f3" dependencies = [ "async-trait", "base64 0.22.0", diff --git a/Cargo.toml b/Cargo.toml index 0e263dc4d..156820ec5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,3 @@ [workspace] members = ["server"] resolver = "2" - -[patch.crates-io] -# object_store added support for SSE-C headers in: -# - https://github.com/apache/arrow-rs/pull/6230 -# - https://github.com/apache/arrow-rs/pull/6260 -# But a new version hasn't been published to crates.io for this yet. So, we are using this patch temporarily. -object_store = { git = "https://github.com/apache/arrow-rs.git", rev = "23b6ff9f432e8e29c08d47a315ba0b7cb8758225" } From 4670b7babc7d904d9d4f753bd3cd3ce4942a7570 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Wed, 23 Oct 2024 18:00:49 +0530 Subject: [PATCH 2/2] chore: explicitly update dep --- server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 10da0f638..806909759 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -16,7 +16,7 @@ arrow-json = "53.0.0" arrow-ipc = { version = "53.0.0", features = ["zstd"] } arrow-select = "53.0.0" datafusion = "42.0.0" -object_store = { version = "0.11.0", features = ["cloud", "aws", "azure"] } +object_store = { version = "0.11.1", features = ["cloud", "aws", "azure"] } parquet = "53.0.0" arrow-flight = { version = "53.0.0", features = [ "tls" ] } tonic = {version = "0.12.3", features = ["tls", "transport", "gzip", "zstd"] }