From cb9301696ab640bb0c13b4244e6aa50248eb0939 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Jul 2023 08:51:09 +0000 Subject: [PATCH] Update wgpu requirement from 0.16.0 to 0.17.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/trunk/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/v0.16.0...v0.17.0) --- updated-dependencies: - dependency-name: wgpu dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/render-wgpu/Cargo.toml | 2 +- inox2d-wgpu/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/render-wgpu/Cargo.toml b/examples/render-wgpu/Cargo.toml index 9951aec..bb41286 100644 --- a/examples/render-wgpu/Cargo.toml +++ b/examples/render-wgpu/Cargo.toml @@ -15,4 +15,4 @@ raw-window-handle = "0.5.1" tracing = "0.1.37" tracing-subscriber = "0.3.16" winit = "0.28.2" -wgpu = "0.16.0" +wgpu = "0.17.0" diff --git a/inox2d-wgpu/Cargo.toml b/inox2d-wgpu/Cargo.toml index 43b16ca..0f1a766 100644 --- a/inox2d-wgpu/Cargo.toml +++ b/inox2d-wgpu/Cargo.toml @@ -15,7 +15,7 @@ encase = { version = "0.6.1", features = ["glam"] } glam = { version = "0.24.0", features = ["bytemuck"] } thiserror = "1.0.39" tracing = "0.1.37" -wgpu = { version = "0.16.0", features = ["webgl"] } +wgpu = { version = "0.17.0", features = ["webgl"] } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] clap = { version = "4.1.8", features = ["derive"] }