This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 96e4a007d7 Remove zstd pin (#7199)
96e4a007d7 is described below
commit 96e4a007d7f30363c202448595c71f12c0bdb395
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Wed Feb 26 15:04:27 2025 +0000
Remove zstd pin (#7199)
---
parquet/Cargo.toml | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 00d4c5b750..e0a9be6791 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -86,14 +86,6 @@ tokio = { version = "1.0", default-features = false,
features = ["macros", "rt-m
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"] }
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
-[target.'cfg(target_family = "wasm")'.dependencies]
-zstd-sys = { version = ">=2.0.0, <2.0.14", optional = true, default-features =
false }
-
-[target.'cfg(target_family = "wasm")'.dev-dependencies]
-zstd-sys = { version = ">=2.0.0, <2.0.14", default-features = false }
-
[package.metadata.docs.rs]
all-features = true
@@ -118,7 +110,7 @@ async = ["futures", "tokio"]
# Enable object_store integration
object_store = ["dep:object_store", "async"]
# Group Zstd dependencies
-zstd = ["dep:zstd", "zstd-sys"]
+zstd = ["dep:zstd"]
# Display memory in example/write_parquet.rs
sysinfo = ["dep:sysinfo"]
# Verify 32-bit CRC checksum when decoding parquet pages