From 136498fcf14f7bbeff6633298fd3a51bd17de91a Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 25 Jun 2024 22:57:29 +0700 Subject: [PATCH] Update dev dependency `wgpu` to 0.20 --- Cargo.toml | 2 +- tests/wgpu.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d4108c5..1088613 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ static-rc = { version = "0.6", features = ["alloc"], default-features = false, o criterion = { version = "0.4", features = ["cargo_bench_support", "html_reports"], default-features = false } rand = { version = "0.8", features = ["std_rng"], default-features = false } mimalloc = { version = "0.1", default-features = false } -wgpu = { version = "0.19", features = ["wgsl"] } +wgpu = { version = "0.20", features = ["wgsl"] } futures = { version = "0.3", features = ["executor"], default-features = false } pprof = { version = "0.11", features = ["criterion", "flamegraph"], default-features = false } trybuild = { version = "1", default-features = false } diff --git a/tests/wgpu.rs b/tests/wgpu.rs index 734fc95..21be80b 100644 --- a/tests/wgpu.rs +++ b/tests/wgpu.rs @@ -236,6 +236,7 @@ fn in_out( layout: Some(&pipeline_layout), module: &shader, entry_point: "main", + compilation_options: wgpu::PipelineCompilationOptions::default(), }); let bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor {