build: unify ash version
This commit is contained in:
parent
2be2178502
commit
d17503be71
|
@ -2,7 +2,6 @@
|
|||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/test/shaders_slang" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -2089,9 +2089,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "shaderc"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "31cef52787a0db5108788ea20bed13d6bf4b96287c5c5201e55725f7070f3443"
|
||||
checksum = "27e07913ada18607bb60d12431cbe3358d3bbebbe95948e1618851dc01e63b7b"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"shaderc-sys",
|
||||
|
@ -2099,9 +2099,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "shaderc-sys"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1e8f8439fffcffd6efcd74197204addf935dbab5752696bd990a6cd36d54cf64"
|
||||
checksum = "73120d240fe22196300f39ca8547ca2d014960f27b19b47b21288b396272f7f7"
|
||||
dependencies = [
|
||||
"cmake",
|
||||
"libc",
|
||||
|
|
|
@ -28,7 +28,7 @@ thiserror = "1.0.37"
|
|||
paste = "1.0.9"
|
||||
gl = { version = "0.14.0", optional = true }
|
||||
rustc-hash = "1.1.0"
|
||||
ash = { version = "0.37.2+1.3.238", optional = true }
|
||||
ash = { version = "0.37", optional = true }
|
||||
spirv_cross = { package = "librashader-spirv-cross", version = "0.23" }
|
||||
|
||||
[target.'cfg(windows)'.dependencies.windows]
|
||||
|
|
|
@ -21,7 +21,7 @@ vulkan = ["ash"]
|
|||
|
||||
[dependencies]
|
||||
gl = { version = "0.14.0", optional = true }
|
||||
ash = { version = "0.37.1+1.3.235", optional = true }
|
||||
ash = { version = "0.37", optional = true }
|
||||
|
||||
num-traits = "0.2.15"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ librashader-runtime-vk = { path = "../librashader-runtime-vk", version = "0.1.4"
|
|||
|
||||
librashader-cache = { path = "../librashader-cache", version = "0.1.4" }
|
||||
|
||||
ash = { version = "0.37.1+1.3.235", optional = true }
|
||||
ash = { version = "0.37", optional = true }
|
||||
|
||||
[target.'cfg(windows)'.dependencies.windows]
|
||||
version = "0.48.0"
|
||||
|
|
Loading…
Reference in a new issue