From 73e742d8774070f12a9bbc1778e72ddd2fb3c55c Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Wed, 29 Jul 2026 17:58:20 +0200 Subject: [PATCH] fix(client/session): the declared GTK deps reach the lockfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 61bdf11e declared gtk4/libadwaita/relm4/async-channel on the session shell but the corresponding Cargo.lock entries never rode along, and CI's `--locked` clippy does not degrade to a re-resolve — it fails outright. One resolve, no version changes. Co-Authored-By: Claude Fable 5 --- Cargo.lock | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 2219fceb..756c6440 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3335,11 +3335,15 @@ name = "punktfunk-client-session" version = "0.21.0" dependencies = [ "anyhow", + "async-channel", "glib-build-tools", + "gtk4", + "libadwaita", "pf-client-core", "pf-console-ui", "pf-presenter", "punktfunk-core", + "relm4", "serde_json", "tracing", "tracing-subscriber",