From a7aeb945608ef9c4d23b6f49463b528e6f0c26bb Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 09:37:52 +0000 Subject: [PATCH] Update our notify crate to fix free after use panic (#49311) (cherry-pick to preview) (#49338) Cherry-pick of #49311 to preview ---- Closes #49067 See https://github.com/zed-industries/notify/pull/2 for more details Note: notify already fixed this upstream, and I'm planning on using their crate as our dependency once their v9 is officially released. Release Notes: - Fix panic that could occur when navigating external code Co-authored-by: Anthony Eid <56899983+Anthony-Eid@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12545dc79de5f31b3632e5d24b8085937cf47671..ec1a86c5db6d7177ef68afa6682d083e7e1899e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10652,7 +10652,7 @@ dependencies = [ [[package]] name = "notify" version = "8.2.0" -source = "git+https://github.com/zed-industries/notify.git?rev=6c550ac3c56cbd143c57ea6390e197af9d790908#6c550ac3c56cbd143c57ea6390e197af9d790908" +source = "git+https://github.com/zed-industries/notify.git?rev=ce58c24cad542c28e04ced02e20325a4ec28a31d#ce58c24cad542c28e04ced02e20325a4ec28a31d" dependencies = [ "bitflags 2.10.0", "fsevent-sys", @@ -10680,7 +10680,7 @@ dependencies = [ [[package]] name = "notify-types" version = "2.0.0" -source = "git+https://github.com/zed-industries/notify.git?rev=6c550ac3c56cbd143c57ea6390e197af9d790908#6c550ac3c56cbd143c57ea6390e197af9d790908" +source = "git+https://github.com/zed-industries/notify.git?rev=ce58c24cad542c28e04ced02e20325a4ec28a31d#ce58c24cad542c28e04ced02e20325a4ec28a31d" [[package]] name = "ntapi" diff --git a/Cargo.toml b/Cargo.toml index 2c964a16811a289f57c10647d43947ba6d776645..3ebf9138a388cf9ae4a73e9718cb39d0ecc69616 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -798,8 +798,8 @@ features = [ [patch.crates-io] async-task = { git = "https://github.com/smol-rs/async-task.git", rev = "b4486cd71e4e94fbda54ce6302444de14f4d190e" } -notify = { git = "https://github.com/zed-industries/notify.git", rev = "6c550ac3c56cbd143c57ea6390e197af9d790908" } -notify-types = { git = "https://github.com/zed-industries/notify.git", rev = "6c550ac3c56cbd143c57ea6390e197af9d790908" } +notify = { git = "https://github.com/zed-industries/notify.git", rev = "ce58c24cad542c28e04ced02e20325a4ec28a31d" } +notify-types = { git = "https://github.com/zed-industries/notify.git", rev = "ce58c24cad542c28e04ced02e20325a4ec28a31d" } windows-capture = { git = "https://github.com/zed-industries/windows-capture.git", rev = "f0d6c1b6691db75461b732f6d5ff56eed002eeb9" } calloop = { git = "https://github.com/zed-industries/calloop" }