1
0
mirror of synced 2025-11-09 12:57:13 +00:00

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

This commit is contained in:
2019-07-10 00:28:48 -07:00
parent baf9c022ef
commit 2d036a61c7

View File

@@ -10,12 +10,22 @@ readme = "README.md"
license = "MIT" license = "MIT"
keywords = ["vulkan", "vulkano", "shaders", "hotloading"] keywords = ["vulkan", "vulkano", "shaders", "hotloading"]
[dependencies] [dependencies.notify]
notify = "4" version = "4"
shaderc = "0.5"
spirv-reflect = "0.2" [dependencies.shaderc]
vulkano = "0.12" 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"
[dev-dependencies]
color-backtrace = "0.1"
difference = "2"