diff --git a/Cargo.lock b/Cargo.lock index ad819be..e933824 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -758,7 +758,7 @@ dependencies = [ "bevy", "bevy_mod_xr", "bevy_xr_utils", - "d3d12 0.19.0", + "d3d12 0.20.0", "jni 0.20.0", "ndk-context", "openxr", 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"