chore: update dependencies

Includes the `calloop` timer buildup fix.
This commit is contained in:
Vukašin Vojinović 2026-02-17 14:28:04 +01:00 committed by Victoria Brekenfeld
parent fa3ffd18da
commit 8768e46577
6 changed files with 953 additions and 774 deletions

View file

@ -637,7 +637,7 @@ pub fn window_from_handle<W: Window + 'static>(handle: ZcosmicToplevelHandleV1)
pub fn window_from_ext<'a, W: Window + 'static, D>(
state: &'a D,
handle: &ForeignToplevelHandle,
handle: ForeignToplevelHandle,
) -> Option<&'a W>
where
D: ToplevelInfoHandler<Window = W>,
@ -662,7 +662,7 @@ where
D: ToplevelInfoHandler<Window = W>,
{
let handle = ForeignToplevelHandle::from_resource(foreign_toplevel)?;
window_from_ext(state, &handle)
window_from_ext(state, handle)
}
macro_rules! delegate_toplevel_info {