fix windows and android example

Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
Schmarni
2024-07-10 15:32:50 +02:00
parent fceca59962
commit 2adbe06f89
2 changed files with 2 additions and 2 deletions

View File

@@ -42,4 +42,4 @@ wgpu = { version = "0.19.3", features = ["vulkan-portability"] }
[target.'cfg(target_family = "windows")'.dependencies] [target.'cfg(target_family = "windows")'.dependencies]
openxr = { version = "0.18.0", features = ["mint", "static"] } openxr = { version = "0.18.0", features = ["mint", "static"] }
winapi = { version = "0.3.9", optional = true } winapi = { version = "0.3.9", optional = true }
d3d12 = { version = "0.19", features = ["libloading"], optional = true } d3d12 = { version = "0.20", features = ["libloading"], optional = true }

View File

@@ -8,7 +8,7 @@ publish = false
[dependencies] [dependencies]
bevy_mod_openxr.path = "../.." bevy_mod_openxr.path = "../.."
bevy.workspace = true bevy = { workspace = true, default-features = true }
bevy_xr_utils.path = "../../../bevy_xr_utils" bevy_xr_utils.path = "../../../bevy_xr_utils"