mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
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:
parent
035ec7b763
commit
c6d4c63f42
1 changed files with 1 additions and 1 deletions
|
@ -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"] }
|
||||
|
|
Loading…
Reference in a new issue