enable wasm-bindgen feature on gilrs (#3420)

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.
This commit is contained in:
Jakob Hellermann 2021-12-23 19:19:14 +00:00
parent 035ec7b763
commit c6d4c63f42

View file

@ -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"] }