From cbdbdafecdfd6113ef1cdc15e0a4140b46420f0b Mon Sep 17 00:00:00 2001 From: chyyran Date: Sun, 6 Oct 2024 16:07:06 -0400 Subject: [PATCH] chore: Release --- Cargo.lock | 34 ++++++++++++++-------------- librashader-cache/Cargo.toml | 6 ++--- librashader-capi/Cargo.toml | 4 ++-- librashader-cli/Cargo.toml | 6 ++--- librashader-common/Cargo.toml | 2 +- librashader-pack/Cargo.toml | 6 ++--- librashader-preprocess/Cargo.toml | 4 ++-- librashader-presets/Cargo.toml | 4 ++-- librashader-reflect/Cargo.toml | 10 ++++---- librashader-runtime-d3d11/Cargo.toml | 16 ++++++------- librashader-runtime-d3d12/Cargo.toml | 16 ++++++------- librashader-runtime-d3d9/Cargo.toml | 16 ++++++------- librashader-runtime-gl/Cargo.toml | 16 ++++++------- librashader-runtime-mtl/Cargo.toml | 14 ++++++------ librashader-runtime-vk/Cargo.toml | 16 ++++++------- librashader-runtime-wgpu/Cargo.toml | 16 ++++++------- librashader-runtime/Cargo.toml | 12 +++++----- librashader/Cargo.toml | 30 ++++++++++++------------ 18 files changed, 114 insertions(+), 114 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea0b78f..9c77fa5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1522,7 +1522,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "librashader" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ash", "glob", @@ -1561,7 +1561,7 @@ dependencies = [ [[package]] name = "librashader-cache" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bincode", "blake3", @@ -1577,7 +1577,7 @@ dependencies = [ [[package]] name = "librashader-capi" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ash", "glow 0.14.1", @@ -1593,7 +1593,7 @@ dependencies = [ [[package]] name = "librashader-cli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "ash", @@ -1623,7 +1623,7 @@ dependencies = [ [[package]] name = "librashader-common" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ash", "glow 0.14.1", @@ -1640,7 +1640,7 @@ dependencies = [ [[package]] name = "librashader-pack" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "base64 0.22.1", @@ -1657,7 +1657,7 @@ dependencies = [ [[package]] name = "librashader-preprocess" -version = "0.5.0" +version = "0.5.1" dependencies = [ "encoding_rs", "glob", @@ -1670,7 +1670,7 @@ dependencies = [ [[package]] name = "librashader-presets" -version = "0.5.0" +version = "0.5.1" dependencies = [ "glob", "librashader-common", @@ -1686,7 +1686,7 @@ dependencies = [ [[package]] name = "librashader-reflect" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bitflags 2.6.0", "bytemuck", @@ -1707,7 +1707,7 @@ dependencies = [ [[package]] name = "librashader-runtime" -version = "0.5.0" +version = "0.5.1" dependencies = [ "arc-swap", "array-concat", @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "librashader-runtime-d3d11" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "bytemuck", @@ -1742,7 +1742,7 @@ dependencies = [ [[package]] name = "librashader-runtime-d3d12" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "array-init", @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "librashader-runtime-d3d9" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "bytemuck", @@ -1789,7 +1789,7 @@ dependencies = [ [[package]] name = "librashader-runtime-gl" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-init", "bytemuck", @@ -1809,7 +1809,7 @@ dependencies = [ [[package]] name = "librashader-runtime-mtl" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "bytemuck", @@ -1831,7 +1831,7 @@ dependencies = [ [[package]] name = "librashader-runtime-vk" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "ash", @@ -1855,7 +1855,7 @@ dependencies = [ [[package]] name = "librashader-runtime-wgpu" -version = "0.5.0" +version = "0.5.1" dependencies = [ "array-concat", "bytemuck", diff --git a/librashader-cache/Cargo.toml b/librashader-cache/Cargo.toml index 56cf4c5..3e79b3a 100644 --- a/librashader-cache/Cargo.toml +++ b/librashader-cache/Cargo.toml @@ -2,7 +2,7 @@ name = "librashader-cache" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,8 +12,8 @@ description = "RetroArch shaders for all." [dependencies] serde = { version = "1.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0", features = ["serde"] } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1", features = ["serde"] } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } platform-dirs = "0.3.0" blake3 = { version = "1.5.4" } thiserror = "1.0.38" diff --git a/librashader-capi/Cargo.toml b/librashader-capi/Cargo.toml index 50f2342..28b3c06 100644 --- a/librashader-capi/Cargo.toml +++ b/librashader-capi/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-capi" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -47,7 +47,7 @@ ash = { workspace = true, optional = true } [dependencies.librashader] path = "../librashader" -version = "0.5.0" +version = "0.5.1" default-features = false features = ["reflect", "presets", "preprocess"] diff --git a/librashader-cli/Cargo.toml b/librashader-cli/Cargo.toml index 4d510af..7ca016c 100644 --- a/librashader-cli/Cargo.toml +++ b/librashader-cli/Cargo.toml @@ -2,7 +2,7 @@ name = "librashader-cli" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -19,8 +19,8 @@ name = "librashader-cli" path = "src/cli/main.rs" [dependencies] -librashader = { version = "0.5.0", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false } -librashader-runtime = { version = "0.5.0", path = "../librashader-runtime"} +librashader = { version = "0.5.1", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false } +librashader-runtime = { version = "0.5.1", path = "../librashader-runtime"} wgpu = { version = "22", default-features = false, optional = true } wgpu-types = { version = "22", optional = true } anyhow = "1.0.86" diff --git a/librashader-common/Cargo.toml b/librashader-common/Cargo.toml index 24cbbb8..09bae7b 100644 --- a/librashader-common/Cargo.toml +++ b/librashader-common/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-common" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" diff --git a/librashader-pack/Cargo.toml b/librashader-pack/Cargo.toml index e3f9b36..7ad594c 100644 --- a/librashader-pack/Cargo.toml +++ b/librashader-pack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librashader-pack" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" authors = ["Ronny Chan "] @@ -11,8 +11,8 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-presets = { path = "../librashader-presets", version = "0.5.0", features = ["serde"] } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0", features = ["serde"] } +librashader-presets = { path = "../librashader-presets", version = "0.5.1", features = ["serde"] } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1", features = ["serde"] } thiserror = "1.0.64" serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/librashader-preprocess/Cargo.toml b/librashader-preprocess/Cargo.toml index ddadb61..9dcab83 100644 --- a/librashader-preprocess/Cargo.toml +++ b/librashader-preprocess/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-preprocess" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -14,7 +14,7 @@ description = "RetroArch shaders for all." [dependencies] thiserror = "1.0.37" nom = "7.1.1" -librashader-common = { path = "../librashader-common", version = "0.5.0" } +librashader-common = { path = "../librashader-common", version = "0.5.1" } encoding_rs = "0.8.31" serde = { version = "1.0", optional = true } diff --git a/librashader-presets/Cargo.toml b/librashader-presets/Cargo.toml index fe3bbd0..807fb8d 100644 --- a/librashader-presets/Cargo.toml +++ b/librashader-presets/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-presets" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -15,7 +15,7 @@ description = "RetroArch shaders for all." thiserror = "1.0.37" nom = "7.1.1" nom_locate = "4.0.0" -librashader-common = { path = "../librashader-common", version = "0.5.0" } +librashader-common = { path = "../librashader-common", version = "0.5.1" } num-traits = "0.2" once_cell = "1" # we don't need unicode diff --git a/librashader-reflect/Cargo.toml b/librashader-reflect/Cargo.toml index 3f2791e..a594862 100644 --- a/librashader-reflect/Cargo.toml +++ b/librashader-reflect/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-reflect" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -18,10 +18,10 @@ bytemuck = "1.13.0" thiserror = "1.0.37" bitflags = "2.4.2" -librashader-common = { path = "../librashader-common", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } +librashader-common = { path = "../librashader-common", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } spirv-cross2 = { workspace = true, optional = true } diff --git a/librashader-runtime-d3d11/Cargo.toml b/librashader-runtime-d3d11/Cargo.toml index 72ab523..2dfab36 100644 --- a/librashader-runtime-d3d11/Cargo.toml +++ b/librashader-runtime-d3d11/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d11" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] } +librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] } thiserror = "1.0.37" bytemuck = "1.12.3" diff --git a/librashader-runtime-d3d12/Cargo.toml b/librashader-runtime-d3d12/Cargo.toml index 6cfc935..b7f652a 100644 --- a/librashader-runtime-d3d12/Cargo.toml +++ b/librashader-runtime-d3d12/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d12" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0", features = ["dxil"] } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] } +librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1", features = ["dxil"] } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] } thiserror = "1.0.37" diff --git a/librashader-runtime-d3d9/Cargo.toml b/librashader-runtime-d3d9/Cargo.toml index 50d2edf..4712ebc 100644 --- a/librashader-runtime-d3d9/Cargo.toml +++ b/librashader-runtime-d3d9/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d9" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] } +librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] } thiserror = "1.0.37" bytemuck = "1.12.3" diff --git a/librashader-runtime-gl/Cargo.toml b/librashader-runtime-gl/Cargo.toml index 21c12af..2c42e7a 100644 --- a/librashader-runtime-gl/Cargo.toml +++ b/librashader-runtime-gl/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-gl" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0" } +librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime" , version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1" } spirv-cross2 = { workspace = true, features = ["glsl"] } glow = { workspace = true} diff --git a/librashader-runtime-mtl/Cargo.toml b/librashader-runtime-mtl/Cargo.toml index c075e78..6f9c8d2 100644 --- a/librashader-runtime-mtl/Cargo.toml +++ b/librashader-runtime-mtl/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-mtl" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -14,12 +14,12 @@ description = "RetroArch shaders for all." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0" } +librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime" , version = "0.5.1" } thiserror = "1.0" array-concat = "0.5.2" diff --git a/librashader-runtime-vk/Cargo.toml b/librashader-runtime-vk/Cargo.toml index 34cb3e9..c02ccc1 100644 --- a/librashader-runtime-vk/Cargo.toml +++ b/librashader-runtime-vk/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime-vk" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -14,13 +14,13 @@ description = "RetroArch shaders for all." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0" } +librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime" , version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1" } bytemuck = { version = "1.12.3", features = ["derive"] } thiserror = "1.0.37" diff --git a/librashader-runtime-wgpu/Cargo.toml b/librashader-runtime-wgpu/Cargo.toml index 9e84f55..1071164 100644 --- a/librashader-runtime-wgpu/Cargo.toml +++ b/librashader-runtime-wgpu/Cargo.toml @@ -2,7 +2,7 @@ name = "librashader-runtime-wgpu" edition = "2021" -version = "0.5.0" +version = "0.5.1" license = "MPL-2.0 OR GPL-3.0-only" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" @@ -14,13 +14,13 @@ description = "RetroArch shaders for all." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0", features = ["wgsl"], default-features = false } -librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0" } +librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1", features = ["wgsl"], default-features = false } +librashader-runtime = { path = "../librashader-runtime" , version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1" } wgpu = { workspace = true, default-features = false, features = ["wgsl"] } thiserror = "1.0.50" diff --git a/librashader-runtime/Cargo.toml b/librashader-runtime/Cargo.toml index 3b0b995..32b6e63 100644 --- a/librashader-runtime/Cargo.toml +++ b/librashader-runtime/Cargo.toml @@ -3,7 +3,7 @@ name = "librashader-runtime" edition = "2021" license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -12,11 +12,11 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } +librashader-common = { path = "../librashader-common", version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } bytemuck = { version = "1.12.3", features = ["derive"] } num-traits = "0.2.15" array-concat = "0.5.2" diff --git a/librashader/Cargo.toml b/librashader/Cargo.toml index 2ddf3ed..8cd7fca 100644 --- a/librashader/Cargo.toml +++ b/librashader/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only" -version = "0.5.0" +version = "0.5.1" authors = ["Ronny Chan "] repository = "https://github.com/SnowflakePowered/librashader" readme = "../README.md" @@ -13,20 +13,20 @@ keywords = ["shader", "retroarch", "SPIR-V"] description = "RetroArch shaders for all." [dependencies] -librashader-common = { path = "../librashader-common", version = "0.5.0" } -librashader-presets = { path = "../librashader-presets", version = "0.5.0" } -librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" } -librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" } -librashader-cache = { path = "../librashader-cache", version = "0.5.0" } -librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" } -librashader-pack = { path = "../librashader-pack", version = "0.5.0" } -librashader-runtime-d3d11 = { path = "../librashader-runtime-d3d11", version = "0.5.0", optional = true } -librashader-runtime-d3d12 = { path = "../librashader-runtime-d3d12", version = "0.5.0", optional = true } -librashader-runtime-d3d9 = { path = "../librashader-runtime-d3d9", version = "0.5.0", optional = true } -librashader-runtime-gl = { path = "../librashader-runtime-gl", version = "0.5.0", optional = true } -librashader-runtime-vk = { path = "../librashader-runtime-vk", version = "0.5.0", optional = true } -librashader-runtime-mtl = { path = "../librashader-runtime-mtl", version = "0.5.0", optional = true } -librashader-runtime-wgpu = { path = "../librashader-runtime-wgpu", version = "0.5.0", optional = true } +librashader-common = { path = "../librashader-common", version = "0.5.1" } +librashader-presets = { path = "../librashader-presets", version = "0.5.1" } +librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" } +librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" } +librashader-cache = { path = "../librashader-cache", version = "0.5.1" } +librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" } +librashader-pack = { path = "../librashader-pack", version = "0.5.1" } +librashader-runtime-d3d11 = { path = "../librashader-runtime-d3d11", version = "0.5.1", optional = true } +librashader-runtime-d3d12 = { path = "../librashader-runtime-d3d12", version = "0.5.1", optional = true } +librashader-runtime-d3d9 = { path = "../librashader-runtime-d3d9", version = "0.5.1", optional = true } +librashader-runtime-gl = { path = "../librashader-runtime-gl", version = "0.5.1", optional = true } +librashader-runtime-vk = { path = "../librashader-runtime-vk", version = "0.5.1", optional = true } +librashader-runtime-mtl = { path = "../librashader-runtime-mtl", version = "0.5.1", optional = true } +librashader-runtime-wgpu = { path = "../librashader-runtime-wgpu", version = "0.5.1", optional = true } ash = { version = "0.38", optional = true } halfbrown = "0.2.4"