update dependencies

This commit is contained in:
Ferdinand Schober
2024-07-03 11:11:50 +02:00
parent 35e626976e
commit 9abec63313
4 changed files with 45 additions and 21 deletions

View File

@@ -21,8 +21,8 @@ once_cell = "1.19.0"
[target.'cfg(all(unix, not(target_os="macos")))'.dependencies]
wayland-client = { version="0.31.1", optional = true }
wayland-protocols = { version="0.31.0", features=["client", "staging", "unstable"], optional = true }
wayland-protocols-wlr = { version="0.2.0", features=["client"], optional = true }
wayland-protocols = { version="0.32.1", features=["client", "staging", "unstable"], optional = true }
wayland-protocols-wlr = { version="0.3.1", features=["client"], optional = true }
x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true }
ashpd = { version = "0.8", default-features = false, features = ["tokio"], optional = true }
reis = { version = "0.2", features = [ "tokio" ], optional = true }
@@ -31,7 +31,7 @@ reis = { version = "0.2", features = [ "tokio" ], optional = true }
core-graphics = { version = "0.23", features = ["highsierra"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.54.0", features = [
windows = { version = "0.57.0", features = [
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_Foundation",

View File

@@ -565,7 +565,7 @@ fn message_thread(ready_tx: mpsc::Sender<()>) {
}
} else {
/* other messages for window_procs */
TranslateMessage(&msg);
let _ = TranslateMessage(&msg);
DispatchMessageW(&msg);
}
}