From a9b062425bc27edd5133a3537cbe4becea88a433 Mon Sep 17 00:00:00 2001 From: tito <92818759+0xtito@users.noreply.github.com> Date: Thu, 30 May 2024 02:53:55 -0400 Subject: [PATCH] add 'vulkan-portability' feature to wgpu when target family is unix (#101) --- crates/bevy_openxr/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_openxr/Cargo.toml b/crates/bevy_openxr/Cargo.toml index 992c942..fa09d98 100644 --- a/crates/bevy_openxr/Cargo.toml +++ b/crates/bevy_openxr/Cargo.toml @@ -32,6 +32,7 @@ ash = { version = "0.37.3", optional = true } [target.'cfg(target_family = "unix")'.dependencies] openxr = { version = "0.18.0", features = ["mint"] } +wgpu = { version = "0.19.3", features = ["vulkan-portability"] } [target.'cfg(target_family = "windows")'.dependencies] openxr = { version = "0.18.0", features = ["mint", "static"] }