From 59ed4d04d4fcbc9a211e7f7b6ff37a4bd3f0b2e2 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Mon, 24 Apr 2023 11:32:12 +0200 Subject: [PATCH] Fix bytemuck dependency (#2190) --- vulkano/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index b83bb096a5..be67e3a05a 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.9" +bytemuck = { version = "1.9", features = ["min_const_generics"] } crossbeam-queue = "0.3" half = { version = "2", features = ["bytemuck"] } libloading = "0.7"