Skip to content

Commit

Permalink
Remove zstd pin (#7199)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold authored Feb 26, 2025
1 parent 2fddf85 commit 96e4a00
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 96e4a00

Please sign in to comment.