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

@ -328,7 +328,8 @@ impl Terminal {
let window_id = 0;
let pty = tty::new(&options, size.into(), window_id)?;
let pty_event_loop = EventLoop::new(term.clone(), event_proxy, pty, options.hold, false)?;
let pty_event_loop =
EventLoop::new(term.clone(), event_proxy, pty, options.drain_on_exit, false)?;
let notifier = Notifier(pty_event_loop.channel());
let _pty_join_handle = pty_event_loop.spawn();