diff --git a/glsl-to-spirv/Cargo.toml b/glsl-to-spirv/Cargo.toml index 917fdae1..fb1dd7bd 100644 --- a/glsl-to-spirv/Cargo.toml +++ b/glsl-to-spirv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glsl-to-spirv" -version = "0.1.5" +version = "0.1.6" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" description = "Wrapper around the official GLSL to SPIR-V compiler" diff --git a/glsl-to-spirv/build/build.rs b/glsl-to-spirv/build/build.rs index 2c2b1dd0..17a4853d 100644 --- a/glsl-to-spirv/build/build.rs +++ b/glsl-to-spirv/build/build.rs @@ -16,7 +16,7 @@ fn main() { let path = if target.contains("windows") { const SHA256SUM: &'static str = - "b6ebab5bd07dc7c0b54c59a2a303df58f7132e5fd6c177ffed92d20934dafa41"; + "90b377479fb137f4ac69460d5f5cdc54cd23bace5eb6e6812516fdfa693b25cf"; let path = Path::new("build/glslangValidator.exe").to_owned(); let content = fs::read(&path).expect("failed to open executable"); let mut hasher = Sha256::default(); diff --git a/glsl-to-spirv/build/glslangValidator.exe b/glsl-to-spirv/build/glslangValidator.exe index 66b7b08f..e552247d 100644 Binary files a/glsl-to-spirv/build/glslangValidator.exe and b/glsl-to-spirv/build/glslangValidator.exe differ diff --git a/vulkano-shader-derive/Cargo.toml b/vulkano-shader-derive/Cargo.toml index ce75e78c..695facef 100644 --- a/vulkano-shader-derive/Cargo.toml +++ b/vulkano-shader-derive/Cargo.toml @@ -13,7 +13,7 @@ name = "vulkano_shader_derive" proc-macro = true [dependencies] -glsl-to-spirv = { version = "0.1.5", path = "../glsl-to-spirv" } +glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" } syn = "0.14" vulkano-shaders = { version = "0.9", path = "../vulkano-shaders" } diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index b87f1fe2..971a66ef 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -9,4 +9,4 @@ documentation = "http://tomaka.github.io/vulkano/vulkano/index.html" categories = ["rendering::graphics-api"] [dependencies] -glsl-to-spirv = { version = "0.1.5", path = "../glsl-to-spirv" } +glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" }