Skip to content

Commit

Permalink
enable wasm-bindgen feature on gilrs (#3420)
Browse files Browse the repository at this point in the history
WIthout the feature, `gilrs` uses `stdweb` instead of `wasm-bindgen` which isn't compatible with the rest of bevy.

Unfortunately, the `stdweb` dependency is still in the dependency tree, it just isn't used (https://gitlab.com/gilrs-project/gilrs/-/issues/101). This will be fixed in `gilrs 0.9` when it releases.
  • Loading branch information
jakobhellermann committed Dec 23, 2021
1 parent 035ec7b commit c6d4c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_gilrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ bevy_input = { path = "../bevy_input", version = "0.5.0" }
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }

# other
gilrs = "0.8.0"
gilrs = { version = "0.8.0", features = ["wasm-bindgen"] }

0 comments on commit c6d4c63

Please sign in to comment.