Skip to content

Commit

Permalink
Remove serde-serialize feature of wasm-bindgen
Browse files Browse the repository at this point in the history
Serde-serialize is deprecated, see rustwasm/wasm-bindgen#3031.

This fix is required to prevent circular dependencies, see rust-random/getrandom#231

Fixes seanmonstar#2155
  • Loading branch information
brianmay committed Mar 5, 2024
1 parent ba550f0 commit ce5e338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ features = [
]

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen = { version = "0.2.68", features = ["serde-serialize"] }
wasm-bindgen = { version = "0.2.68" }
wasm-bindgen-test = "0.3"

[[example]]
Expand Down

0 comments on commit ce5e338

Please sign in to comment.