From c01d08819adc4b6d3d5d2b2d1d70b0a9d9f7c056 Mon Sep 17 00:00:00 2001 From: "posthog[bot]" <206114724+posthog[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 16:51:27 +0000 Subject: [PATCH] fix(deps): bump mio to 1.2.3 to stop Windows daemon panic mio 1.2.0 panics in its Windows AFD selector when an I/O cancel returns error 1168 (ERROR_NOT_FOUND), which happens when the I/O request already finished. This race aborts the daemon process for Windows users. mio 1.2.3 replaces that panic with normal error propagation, so the panicking branch no longer exists. This bumps only the lockfile entry; no source change is required. tokio 1.52.3 requires mio ^1.2.0, and the dependency graph is unchanged. Verified with `cargo check --locked`. Co-Authored-By: Claude Opus 4.8 Generated-By: PostHog Desktop Task-Id: 5d9c08f4-d4dd-46b2-8048-a56421933242 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 879ac07..348d3c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2421,9 +2421,9 @@ dependencies = [ [[package]] name = "mio" -version = "1.2.0" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8" dependencies = [ "libc", "log",