From 2d036a61c7a507820573ff2df11a29976024b8e9 Mon Sep 17 00:00:00 2001 From: mitchellhansen Date: Wed, 10 Jul 2019 00:28:48 -0700 Subject: [PATCH] For some reason I was getting trait errors when using a local version of vulkano in my project toml, and a cargo version of vulkano in the shade_runner toml. Switching to the other toml syntax fixed the issue. spooky --- Cargo.toml | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f3e864..ccdce8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,12 +10,22 @@ readme = "README.md" license = "MIT" keywords = ["vulkan", "vulkano", "shaders", "hotloading"] -[dependencies] -notify = "4" -shaderc = "0.5" -spirv-reflect = "0.2" -vulkano = "0.12" - -[dev-dependencies] -color-backtrace = "0.1" -difference = "2" +[dependencies.notify] +version = "4" + +[dependencies.shaderc] +version = "0.5" + +[dependencies.spirv-reflect] +version = "0.2" + +[dependencies.vulkano] +version = "0.12.0" + +[dev-dependencies.color-backtrace] +version = "0.1" + +[dev-dependencies.difference] +version = "2" + +