Skip to content

Commit

Permalink
Set default-features = false for zstd in the parquet crate to sup…
Browse files Browse the repository at this point in the history
…port `wasm32-unknown-unknown` (#1414)

* Update zstd version for wasm support

* Bump to 0.11.1
  • Loading branch information
kylebarron committed Mar 16, 2022
1 parent 4027166 commit 486b084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ snap = { version = "1.0", optional = true }
brotli = { version = "3.3", optional = true }
flate2 = { version = "1.0", optional = true }
lz4 = { version = "1.23", optional = true }
zstd = { version = "0.11", optional = true }
zstd = { version = "0.11.1", optional = true, default-features = false }
chrono = { version = "0.4", default-features = false }
num = "0.4"
num-bigint = "0.4"
Expand Down

0 comments on commit 486b084

Please sign in to comment.