From 93dd3cadad861a3fc667cb6d33a29f2d23626282 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Thu, 28 Sep 2023 09:42:15 +0200 Subject: [PATCH] Unpin winit version The new version of winit fixes an important bug for macOS Sonoma, and the bugvix for the workaround won't happen before winit 0.29. The branch that port to winit 0.29 already removed the workaround Fixes #3559 --- internal/backends/winit/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/backends/winit/Cargo.toml b/internal/backends/winit/Cargo.toml index 1ff94884031..2b9a2953947 100644 --- a/internal/backends/winit/Cargo.toml +++ b/internal/backends/winit/Cargo.toml @@ -44,8 +44,7 @@ lyon_path = "1.0" once_cell = "1.5" pin-weak = "1" scoped-tls-hkt = "0.1" -# Pinned due to https://github.com/slint-ui/slint/issues/2424 -winit = { version = "=0.28.6", default-features = false } +winit = { version = "0.28.7", default-features = false } instant = "0.1" raw-window-handle = { version = "0.5", features = ["alloc"] } scopeguard = { version = "1.1.0", default-features = false }