From a4695c539783a8f8118cbfa783c93fee9b222325 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Fri, 9 Sep 2022 12:11:55 +0300 Subject: [PATCH] Specify minimum supported version for RWH 0.4 Winit uses raw-window-handle of version 0.4.3, but only 0.4.0 was specified. --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c39fcf4..02885b9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ And please only add new entries to the top of this list, right below the `# Unre - On Wayland, if not otherwise specified use upstream automatic CSD theme selection. - On Windows, fixed ALT+Space shortcut to open window menu. - On Wayland, fixed `Ime::Preedit` not being sent on IME reset. +- Fixed unbound version specified for `raw-window-handle` leading to compilation failures. # 0.27.2 (2022-8-12) diff --git a/Cargo.toml b/Cargo.toml index 6ca94680..fadfc52f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ once_cell = "1.12" log = "0.4" serde = { version = "1", optional = true, features = ["serde_derive"] } raw_window_handle = { package = "raw-window-handle", version = "0.5" } -raw_window_handle_04 = { package = "raw-window-handle", version = "0.4" } +raw_window_handle_04 = { package = "raw-window-handle", version = "0.4.3" } bitflags = "1" mint = { version = "0.5.6", optional = true }