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

master
mitchellhansen 5 years ago
parent baf9c022ef
commit 2d036a61c7

@ -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"

Loading…
Cancel
Save