From 39e2f26671cca9dcbcfeec8cc9e1900c115f7da9 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Fri, 16 Jan 2026 17:39:35 -0700 Subject: [PATCH] Bump async-task (#47036) This reduces total code-size of the project crate by ~25%, and reduces release build time by ~35s thanks to @osiewicz's proposed fix https://github.com/smol-rs/async-task/issues/66 Release Notes: - N/A Co-authored-by: Piotr --- Cargo.lock | 3 +-- Cargo.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d7875fabd09d7ef7509f28181c2e2f30b734d223..c05093a1eb84a57019b1a3639053b322524c0970 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1224,8 +1224,7 @@ dependencies = [ [[package]] name = "async-task" version = "4.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" +source = "git+https://github.com/smol-rs/async-task.git?rev=b4486cd71e4e94fbda54ce6302444de14f4d190e#b4486cd71e4e94fbda54ce6302444de14f4d190e" [[package]] name = "async-trait" diff --git a/Cargo.toml b/Cargo.toml index 22de122d412317c9ac79dadc40a04cec3c7deff8..60487de0946eb65c9cc9deee3cb5ea24d487b697 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -784,6 +784,7 @@ 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 = "b4588b2e5aee68f4c0e100f140e808cbce7b1419" } notify-types = { git = "https://github.com/zed-industries/notify.git", rev = "b4588b2e5aee68f4c0e100f140e808cbce7b1419" } windows-capture = { git = "https://github.com/zed-industries/windows-capture.git", rev = "f0d6c1b6691db75461b732f6d5ff56eed002eeb9" }