From 884d357f8fd71b82c6b1f0aa3084cd504ffe7e26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Jul 2022 21:49:28 +0000 Subject: [PATCH] Update ruzstd requirement from 0.2.4 to 0.3.0 Updates the requirements on [ruzstd](https://github.com/KillingSpark/zstd-rs) to permit the latest version. - [Release notes](https://github.com/KillingSpark/zstd-rs/releases) - [Commits](https://github.com/KillingSpark/zstd-rs/compare/v0.2.4...v0.3.0) --- updated-dependencies: - dependency-name: ruzstd dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_render/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 000c845aca0c2d..3b85c67bb5d7d7 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -48,9 +48,9 @@ bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" } image = { version = "0.24", default-features = false } # misc -wgpu = { version = "0.12.0", features = ["spirv"] } +wgpu = { version = "0.13.1", features = ["spirv"] } codespan-reporting = "0.11.0" -naga = { version = "0.8.0", features = ["glsl-in", "spv-in", "spv-out", "wgsl-in", "wgsl-out"] } +naga = { version = "0.9.0", features = ["glsl-in", "spv-in", "spv-out", "wgsl-in", "wgsl-out"] } serde = { version = "1", features = ["derive"] } bitflags = "1.2.1" smallvec = { version = "1.6", features = ["union", "const_generics"] } @@ -62,14 +62,14 @@ futures-lite = "1.4.0" anyhow = "1.0" hex = "0.4.2" hexasphere = "7.2" -parking_lot = "0.11.0" +parking_lot = "0.12.1" regex = "1.5" copyless = "0.1.5" ddsfile = { version = "0.5.0", optional = true } ktx2 = { version = "0.3.0", optional = true } # For ktx2 supercompression flate2 = { version = "1.0.22", optional = true } -ruzstd = { version = "0.2.4", optional = true } +ruzstd = { version = "0.3.0", optional = true } # For transcoding of UASTC/ETC1S universal formats, and for .basis file support basis-universal = { version = "0.2.0", optional = true } encase = { version = "0.3", features = ["glam"] }