-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (39 loc) · 1.23 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "schminput"
license.workspace = true
version.workspace = true
edition.workspace = true
repository.workspace = true
description = "An Action Based Input Manager for Bevy"
keywords = ["bevy", "input", "vr", "xr", "action"]
[workspace.package]
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/Schmarni-Dev/Schminput/"
[workspace.dependencies]
schminput = { path = ".", version = "0.1.0" }
bevy = { version = "0.14", default-features = false }
bevy_mod_openxr = "0.1.0"
bevy_mod_xr = "0.1.0"
openxr = { version = "0.18", default-features = false }
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[[example]]
name = "xr"
required-features = ["xr"]
[features]
default = []
xr = ["dep:bevy_mod_openxr", "dep:bevy_mod_xr", "dep:openxr"]
[dependencies]
bevy.workspace = true
bevy_mod_xr = { workspace = true, optional = true }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
openxr = { workspace = true, optional = true }
bevy_mod_openxr = { workspace = true, optional = true }
[workspace]
members = ["schminput_rebinding"]
[dev-dependencies]
bevy_mod_openxr = { workspace = true, default-features = true }
bevy = { workspace = true, default-features = true }