From 4513b13906e70ffb85389189bf70b67640d0d9b6 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Sat, 1 Apr 2023 18:52:59 +0200 Subject: [PATCH] Fix bytemuck dependency (#2173) --- vulkano/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index cc46cd2ff3..b07d8a9bc0 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -21,7 +21,7 @@ ahash = "0.8" # When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses. # All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/main/registry/vk.xml. ash = "^0.37.2" -bytemuck = "1.7" +bytemuck = "1.9" crossbeam-queue = "0.3" half = { version = "2", features = ["bytemuck"] } libloading = "0.7"