build: unify ash version

This commit is contained in:
chyyran 2023-11-30 01:56:12 -05:00 committed by Ronny Chan
parent 2be2178502
commit d17503be71
5 changed files with 7 additions and 8 deletions

View file

@ -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
View file

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

View file

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

View file

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

View file

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