From 698afe68f2f48d8e1dfed98eba9a074e6a10f57a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 06:05:33 +0000 Subject: [PATCH] Update wgpu requirement from 0.13.1 to 0.14.0 Updates the requirements on [wgpu](https://github.com/gfx-rs/wgpu) to permit the latest version. - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/v0.13.1...v0.14.0) --- updated-dependencies: - dependency-name: wgpu dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_render/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 9e7c676ac1564..c3508a590d165 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -49,7 +49,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } image = { version = "0.24", default-features = false } # misc -wgpu = { version = "0.13.1", features = ["spirv"] } +wgpu = { version = "0.14.0", features = ["spirv"] } codespan-reporting = "0.11.0" naga = { version = "0.9.0", features = ["glsl-in", "spv-in", "spv-out", "wgsl-in", "wgsl-out"] } serde = { version = "1", features = ["derive"] }