Update vulnerable dependencies and migrate to Iced 0.14.

This commit is contained in:
2026-08-09 17:16:26 +02:00
parent c757314c91
commit 520e1d86ea
38 changed files with 1105 additions and 1237 deletions

View File

@@ -134,7 +134,7 @@ pub fn view(
.spacing(6)
} else {
row![
Space::with_width(Length::Fixed(14.0)),
Space::new().width(Length::Fixed(14.0)),
text(name)
.size(12)
.shaping(Shaping::Advanced)
@@ -161,7 +161,7 @@ pub fn view(
// Separator
items.push(
container(Space::new(Length::Fill, Length::Fixed(1.0)))
container(Space::new().width(Length::Fill).height(Length::Fixed(1.0)))
.style(|_theme: &Theme| container::Style {
background: Some(Background::Color(Color::from_rgb(0.30, 0.30, 0.35))),
..container::Style::default()