Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
description = "Shared logic for communication between the Zed app and the zed.dev server"
|
|
edition.workspace = true
|
|
name = "rpc"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/rpc.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
gpui = ["dep:gpui"]
|
|
test-support = ["collections/test-support", "gpui/test-support", "proto/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-tungstenite.workspace = true
|
|
base64.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui = { workspace = true, optional = true }
|
|
parking_lot.workspace = true
|
|
proto.workspace = true
|
|
rand.workspace = true
|
|
rsa.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
strum.workspace = true
|
|
tracing = { version = "0.1.34", features = ["log"] }
|
|
util.workspace = true
|
|
zstd.workspace = true
|
|
|
|
[dev-dependencies]
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
proto = { workspace = true, features = ["test-support"] }
|
|
zlog.workspace = true
|