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:
26
Cargo.toml
26
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"
|
||||
[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"
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
color-backtrace = "0.1"
|
||||
difference = "2"
|
||||
|
||||
Reference in New Issue
Block a user