From ace371a0d8d300d8f8101af49505d1e47b0ac131 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sat, 25 May 2024 11:04:22 -0400 Subject: [PATCH] node_runtime: Restrict the `windows` dependency to the Windows target (#12284) This PR fixes an issue where the `windows` dependency was being included on non-Windows targets. Resolves https://github.com/zed-industries/zed/issues/12282. Release Notes: - N/A --- crates/node_runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node_runtime/Cargo.toml b/crates/node_runtime/Cargo.toml index a73e14a063..a87d9d92e5 100644 --- a/crates/node_runtime/Cargo.toml +++ b/crates/node_runtime/Cargo.toml @@ -31,10 +31,10 @@ smol.workspace = true tempfile = { workspace = true, optional = true } util.workspace = true walkdir = "2.5.0" -windows.workspace = true [target.'cfg(windows)'.dependencies] async-std = { version = "1.12.0", features = ["unstable"] } +windows.workspace = true [dev-dependencies] tempfile.workspace = true