From 2adbe06f89679f0b46c7e0d2d43a818581267e04 Mon Sep 17 00:00:00 2001 From: Schmarni Date: Wed, 10 Jul 2024 15:32:50 +0200 Subject: [PATCH] fix windows and android example Signed-off-by: Schmarni --- crates/bevy_openxr/Cargo.toml | 2 +- crates/bevy_openxr/examples/android/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_openxr/Cargo.toml b/crates/bevy_openxr/Cargo.toml index 389478c..83b9eb0 100644 --- a/crates/bevy_openxr/Cargo.toml +++ b/crates/bevy_openxr/Cargo.toml @@ -42,4 +42,4 @@ wgpu = { version = "0.19.3", features = ["vulkan-portability"] } [target.'cfg(target_family = "windows")'.dependencies] openxr = { version = "0.18.0", features = ["mint", "static"] } winapi = { version = "0.3.9", optional = true } -d3d12 = { version = "0.19", features = ["libloading"], optional = true } +d3d12 = { version = "0.20", features = ["libloading"], optional = true } diff --git a/crates/bevy_openxr/examples/android/Cargo.toml b/crates/bevy_openxr/examples/android/Cargo.toml index 8e03c66..6ec7adc 100644 --- a/crates/bevy_openxr/examples/android/Cargo.toml +++ b/crates/bevy_openxr/examples/android/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] bevy_mod_openxr.path = "../.." -bevy.workspace = true +bevy = { workspace = true, default-features = true } bevy_xr_utils.path = "../../../bevy_xr_utils"