1[package]
2description = "Shared logic for communication between the Zed app and the zed.dev server"
3edition = "2021"
4name = "rpc"
5version = "0.1.0"
6publish = false
7
8[lib]
9path = "src/rpc.rs"
10doctest = false
11
12[features]
13test-support = ["collections/test-support", "gpui/test-support"]
14
15[dependencies]
16clock = { path = "../clock" }
17collections = { path = "../collections" }
18gpui = { path = "../gpui", optional = true }
19util = { path = "../util" }
20anyhow.workspace = true
21async-lock = "2.4"
22async-tungstenite = "0.16"
23base64 = "0.13"
24futures.workspace = true
25parking_lot.workspace = true
26prost.workspace = true
27rand.workspace = true
28rsa = "0.4"
29serde_json.workspace = true
30serde.workspace = true
31serde_derive.workspace = true
32smol-timeout = "0.6"
33strum.workspace = true
34tracing = { version = "0.1.34", features = ["log"] }
35zstd = "0.11"
36
37[build-dependencies]
38prost-build = "0.9"
39
40[dev-dependencies]
41collections = { path = "../collections", features = ["test-support"] }
42gpui = { path = "../gpui", features = ["test-support"] }
43smol.workspace = true
44tempdir.workspace = true
45ctor.workspace = true
46env_logger.workspace = true