Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_gilrs/Cargo.toml
6596 views
1
[package]
2
name = "bevy_gilrs"
3
version = "0.17.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.17.0-dev" }
14
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-dev" }
15
bevy_input = { path = "../bevy_input", version = "0.17.0-dev" }
16
bevy_time = { path = "../bevy_time", version = "0.17.0-dev" }
17
bevy_platform = { path = "../bevy_platform", version = "0.17.0-dev", default-features = false, features = [
18
"std",
19
] }
20
21
# other
22
gilrs = "0.11.0"
23
thiserror = { version = "2", default-features = false }
24
tracing = { version = "0.1", default-features = false, features = ["std"] }
25
26
[lints]
27
workspace = true
28
29
[package.metadata.docs.rs]
30
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
31
all-features = true
32
33