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"
 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 = "1.0"
21async-lock = "2.4"
22async-tungstenite = "0.16"
23base64 = "0.13"
24futures = "0.3"
25parking_lot = "0.11.1"
26prost = "0.8"
27rand = "0.8"
28rsa = "0.4"
29serde = { workspace = true }
30serde_derive = { workspace = true }
31smol-timeout = "0.6"
32tracing = { version = "0.1.34", features = ["log"] }
33zstd = "0.11"
34
35[build-dependencies]
36prost-build = "0.9"
37
38[dev-dependencies]
39collections = { path = "../collections", features = ["test-support"] }
40gpui = { path = "../gpui", features = ["test-support"] }
41smol = "1.2.5"
42tempdir = "0.3.7"
43ctor = "0.1"
44env_logger = "0.9"