From ac806458f91a7d5136fda57b85bb962868f10e3d Mon Sep 17 00:00:00 2001 From: David Shah Date: Tue, 10 Nov 2020 20:28:41 +0000 Subject: [PATCH] [rs] Bump winit version to 0.23.0 This fixes the following error trying to run the hello-triangle (and probably other) examples on GNOME/Wayland: [wayland-client error] Attempted to dispatch unknown opcode 0 for wl_shm, aborting. Signed-off-by: David Shah --- wgpu/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 1b8d12a9c0..135fa2e0fd 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -57,7 +57,7 @@ gfx-backend-gl = { version = "0.6", features = ["x11"] } cgmath = "0.17" log = "0.4" png = "0.16" -winit = { version = "0.22.1", features = ["web-sys"] } +winit = { version = "0.23.0", features = ["web-sys"] } rand = { version = "0.7.2", features = ["wasm-bindgen"] } bytemuck = { version = "1.4", features = ["derive"] } noise = "0.6"