This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 27789d7c9a Update parquet object_store dependency to 0.11.0 (#6264)
27789d7c9a is described below
commit 27789d7c9abb50796a4042e7e193703efe3c95b3
Author: Andrew Lamb <[email protected]>
AuthorDate: Sat Aug 17 07:15:02 2024 -0400
Update parquet object_store dependency to 0.11.0 (#6264)
---
parquet/Cargo.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index ad740b0a2a..b97b2a5716 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -44,7 +44,7 @@ arrow-schema = { workspace = true, optional = true }
arrow-select = { workspace = true, optional = true }
arrow-ipc = { workspace = true, optional = true }
# Intentionally not a path dependency as object_store is released separately
-object_store = { version = "0.10.2", default-features = false, optional = true
}
+object_store = { version = "0.11.0", default-features = false, optional = true
}
bytes = { version = "1.1", default-features = false, features = ["std"] }
thrift = { version = "0.17", default-features = false }
@@ -82,7 +82,7 @@ serde_json = { version = "1.0", features = ["std"],
default-features = false }
arrow = { workspace = true, features = ["ipc", "test_utils", "prettyprint",
"json"] }
tokio = { version = "1.0", default-features = false, features = ["macros",
"rt", "io-util", "fs"] }
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"] }
-object_store = { version = "0.10.2", default-features = false, features =
["azure"] }
+object_store = { version = "0.11.0", default-features = false, features =
["azure"] }
# TODO: temporary to fix parquet wasm build
# upstream issue: https://github.com/gyscos/zstd-rs/issues/269