Fix remote binary bundling (#33845)
Kirill Bulatov
created 5 months ago
Follow-up of https://github.com/zed-industries/zed/pull/32937
Fixes remote server bundling:
https://github.com/zed-industries/zed/actions/runs/16043840539/job/45271137215#step:6:2079
Excludes `screen-capture` feature from Zed's default, use it only in the
components that need it.
Release Notes:
- N/A
Change summary
Cargo.toml | 1 -
crates/call/Cargo.toml | 2 +-
crates/collab/Cargo.toml | 1 +
crates/livekit_client/Cargo.toml | 2 +-
crates/title_bar/Cargo.toml | 2 +-
5 files changed, 4 insertions(+), 4 deletions(-)
Detailed changes
@@ -276,7 +276,6 @@ go_to_line = { path = "crates/go_to_line" }
google_ai = { path = "crates/google_ai" }
gpui = { path = "crates/gpui", default-features = false, features = [
"http_client",
- "screen-capture",
] }
gpui_macros = { path = "crates/gpui_macros" }
gpui_tokio = { path = "crates/gpui_tokio" }
@@ -29,7 +29,7 @@ client.workspace = true
collections.workspace = true
fs.workspace = true
futures.workspace = true
-gpui.workspace = true
+gpui = { workspace = true, features = ["screen-capture"] }
language.workspace = true
log.workspace = true
postage.workspace = true
@@ -35,6 +35,7 @@ dashmap.workspace = true
derive_more.workspace = true
envy = "0.4.2"
futures.workspace = true
+gpui = { workspace = true, features = ["screen-capture"] }
hex.workspace = true
http_client.workspace = true
jsonwebtoken.workspace = true
@@ -25,7 +25,7 @@ async-trait.workspace = true
collections.workspace = true
cpal.workspace = true
futures.workspace = true
-gpui = { workspace = true, features = ["x11", "wayland"] }
+gpui = { workspace = true, features = ["screen-capture", "x11", "wayland"] }
gpui_tokio.workspace = true
http_client_tls.workspace = true
image.workspace = true
@@ -32,7 +32,7 @@ call.workspace = true
chrono.workspace = true
client.workspace = true
db.workspace = true
-gpui.workspace = true
+gpui = { workspace = true, features = ["screen-capture"] }
notifications.workspace = true
project.workspace = true
remote.workspace = true