chore: update dependencies

Also switches `alacritty_terminal` to use the crate version, rather than an old git commit.
This commit is contained in:
Vukašin Vojinović 2025-11-06 12:33:54 +01:00
parent d20dbadd02
commit 034435273c
5 changed files with 117 additions and 125 deletions

View file

@ -199,7 +199,7 @@ pub struct Profile {
#[serde(default)]
pub working_directory: String,
#[serde(default)]
pub hold: bool,
pub drain_on_exit: bool,
}
impl Default for Profile {
@ -211,7 +211,7 @@ impl Default for Profile {
syntax_theme_light: COSMIC_THEME_LIGHT.to_string(),
tab_title: String::new(),
working_directory: String::new(),
hold: false,
drain_on_exit: false,
}
}
}