From 3f0f316f4d16a7c4ed8053700d6b35df1d7701da Mon Sep 17 00:00:00 2001 From: localcc Date: Wed, 2 Jul 2025 00:45:05 +0200 Subject: [PATCH] Fix windows manifest inclusion (#33745) Fixes a regression which prevented zed from starting on windows due to the lack of the embedded manifest. Caused by #bff5d85 Release Notes: - N/A --- crates/zed/Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/crates/zed/Cargo.toml b/crates/zed/Cargo.toml index 4e426c3837..5d5d718f80 100644 --- a/crates/zed/Cargo.toml +++ b/crates/zed/Cargo.toml @@ -63,7 +63,12 @@ git.workspace = true git_hosting_providers.workspace = true git_ui.workspace = true go_to_line.workspace = true -gpui = { workspace = true, features = ["wayland", "x11", "font-kit"] } +gpui = { workspace = true, features = [ + "wayland", + "x11", + "font-kit", + "windows-manifest", +] } gpui_tokio.workspace = true http_client.workspace = true