Update shaderc to 0.6 in order to significantly reduce compile-times … (#1226)

* Update shaderc to 0.6 in order to significantly reduce compile-times on (Arch/Void)Linux again by linking towards shared libraries

* Add "shaderc-build-from-source" feature in order to allow shaderc to build from source if linking to system libraries fails

* Remove trailing whitespace to please Travis (CI)
This commit is contained in:
Abendstolz 2019-08-12 11:54:15 +02:00 committed by Lucas Kent
parent 85be6295d0
commit 0a8944362a
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Unreleased
- Update shaderc to 0.6. This again allows to use locally installed libraries which reduces the build-time significantly on Arch/Voidlinux (see https://github.com/google/shaderc-rs/issues/58)
- Removed faulty debug_assert in `SwapchainAcquireFuture::drop`.
# Version 0.13.0 (2019-07-02)

View File

@ -15,10 +15,13 @@ categories = ["rendering::graphics-api"]
proc-macro = true
[dependencies]
shaderc = "0.5"
shaderc = "0.6"
syn = "0.15"
quote = "0.6"
proc-macro2 = "0.4"
[dev-dependencies]
vulkano = { version = "0.13", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]