From af817bc03ecd0a55c01db87a2f1bd20951633449 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Thu, 30 Jul 2026 00:53:18 +0200 Subject: [PATCH] fix(lock): cursor-probe's pf-frame dep reaches the lockfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1f59498c added pf-frame to tools/cursor-probe (a workspace member) without the Cargo.lock entry. The pinned 1.96 toolchain shrugs, but Arch's cargo 1.97 refuses to resolve under --locked — every arch build died with 'cannot update the lock file' right after the windows-rs fetch, which made it look like a cache problem. One line, written by the pinned toolchain. Co-Authored-By: Claude Fable 5 --- Cargo.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.lock b/Cargo.lock index 63b9340d..43591a44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -951,6 +951,7 @@ version = "0.21.0" dependencies = [ "anyhow", "pf-capture", + "pf-frame", "pf-inject", "pf-vdisplay", "punktfunk-core",