chore: bump deps

This commit is contained in:
drendog 2025-10-25 11:43:20 +02:00
parent 561f51c15b
commit 238bd150ad
Signed by: dwenya
GPG key ID: 8DD77074645332D0
3 changed files with 1416 additions and 1341 deletions

2736
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -20,16 +20,22 @@ module_name_repetitions = "allow"
unwrap_used = "warn" unwrap_used = "warn"
[dependencies] [dependencies]
glutin = { version = "0.32.0", default-features = false, features = [ glutin = { version = "0.32.3", default-features = false, features = [
"wayland", "wayland",
] } ] }
log = "0.4.22" log = "0.4.28"
raw-window-handle = "0.6.2" raw-window-handle = "0.6.2"
slint = { version = "1.7.2", default-features = false, features = [ # slint = { version = "1.14.1", default-features = false, features = [
# "compat-1-2",
# "renderer-femtovg",
# ] }
slint = { path = "../slint/api/rs/slint", default-features = false, features = [
"compat-1-2", "compat-1-2",
"renderer-femtovg", "renderer-femtovg",
"backend-winit-wayland",
] } ] }
slint-interpreter = "1.7.2" slint-interpreter = { path = "../slint/internal/interpreter", default-features = false, features = ["compat-1-2"] }
smithay-client-toolkit = "0.19.2" smithay-client-toolkit = "0.20.0"
thiserror = "1.0.63" thiserror = "2.0.17"
wayland-client = "0.31.5" wayland-client = "0.31.11"
wayland-protocols = { version = "0.32.6", features = ["client", "staging"] }

View file

@ -72,6 +72,7 @@ impl WindowState {
self.surface.commit(); self.surface.commit();
self.size = new_size; self.size = new_size;
self.window.request_redraw();
} }
#[allow(clippy::cast_possible_truncation)] #[allow(clippy::cast_possible_truncation)]