mirror of
https://github.com/bevyengine/bevy
synced 2024-12-25 20:43:07 +00:00
c6d4c63f42
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.
19 lines
584 B
TOML
19 lines
584 B
TOML
[package]
|
|
name = "bevy_gilrs"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
description = "Gamepad system made using Gilrs for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" }
|
|
bevy_input = { path = "../bevy_input", version = "0.5.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|
|
|
# other
|
|
gilrs = { version = "0.8.0", features = ["wasm-bindgen"] }
|