From b99d58ea435090e561377949f428bce2c18451bb Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 19 Apr 2023 16:59:00 -0400 Subject: [PATCH] Update to version 0.12 --- Cargo.toml | 2 +- cli/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8772fa15a8..0ddef7b939 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naga" -version = "0.11.0" +version = "0.12.0" authors = ["Naga Developers"] edition = "2021" description = "Shader translation infrastructure" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 865130516d..ef6f6aff41 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naga-cli" -version = "0.11.0" +version = "0.12.0" authors = ["Naga Developers"] edition = "2021" description = "Shader translation command line tool" @@ -10,9 +10,9 @@ keywords = ["shader", "SPIR-V", "GLSL", "MSL"] license = "MIT OR Apache-2.0" [dependencies] -naga = { version = "0.11", path = "../", features = ["validate", "span", "wgsl-in", "wgsl-out", "glsl-in", "glsl-out", "spv-in", "spv-out", "msl-out", "hlsl-out", "dot-out", "serialize", "deserialize"] } +naga = { version = "0.12", path = "../", features = ["validate", "span", "wgsl-in", "wgsl-out", "glsl-in", "glsl-out", "spv-in", "spv-out", "msl-out", "hlsl-out", "dot-out", "serialize", "deserialize"] } bincode = "1" log = "0.4" codespan-reporting = "0.11" -env_logger = "0.9" +env_logger = "0.10" argh = "0.1.5"