Cargo.toml

 1[package]
 2description = "Shared logic for communication between the Zed app and the zed.dev server"
 3edition = "2021"
 4name = "rpc"
 5version = "0.1.0"
 6
 7[lib]
 8path = "src/rpc.rs"
 9
10[features]
11test-support = ["gpui/test-support"]
12
13[dependencies]
14anyhow = "1.0"
15async-lock = "2.4"
16async-tungstenite = "0.16"
17base64 = "0.13"
18futures = "0.3"
19log = "0.4"
20parking_lot = "0.11.1"
21postage = { version = "0.4.1", features = ["futures-traits"] }
22prost = "0.8"
23rand = "0.8"
24rsa = "0.4"
25serde = { version = "1", features = ["derive"] }
26smol-timeout = "0.6"
27zstd = "0.9"
28gpui = { path = "../gpui", optional = true }
29
30[build-dependencies]
31prost-build = "0.8"
32
33[dev-dependencies]
34gpui = { path = "../gpui", features = ["test-support"] }
35smol = "1.2.5"
36tempdir = "0.3.7"