Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_gilrs/Cargo.toml
9418 views
1
[package]
2
name = "bevy_gilrs"
3
version = "0.19.0-dev"
4
edition = "2024"
5
description = "Gamepad system made using Gilrs for Bevy Engine"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy"]
10
11
[dependencies]
12
# bevy
13
bevy_app = { path = "../bevy_app", version = "0.19.0-dev" }
14
bevy_ecs = { path = "../bevy_ecs", version = "0.19.0-dev" }
15
bevy_input = { path = "../bevy_input", version = "0.19.0-dev", features = [
16
"gamepad",
17
] }
18
bevy_time = { path = "../bevy_time", version = "0.19.0-dev" }
19
bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev", default-features = false, features = [
20
"std",
21
] }
22
23
# other
24
gilrs = "0.11.0"
25
thiserror = { version = "2", default-features = false }
26
tracing = { version = "0.1", default-features = false, features = ["std"] }
27
28
[lints]
29
workspace = true
30
31
[package.metadata.docs.rs]
32
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
33
all-features = true
34
35