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
 7license = "GPL-3.0-or-later"
 8
 9[lib]
10path = "src/rpc.rs"
11doctest = false
12
13[features]
14test-support = ["collections/test-support", "gpui/test-support"]
15
16[dependencies]
17clock = { path = "../clock" }
18collections = { path = "../collections" }
19gpui = { path = "../gpui", optional = true }
20util = { path = "../util" }
21anyhow.workspace = true
22async-lock = "2.4"
23async-tungstenite = "0.16"
24base64 = "0.13"
25futures.workspace = true
26parking_lot.workspace = true
27prost.workspace = true
28rand.workspace = true
29rsa = "0.4"
30serde_json.workspace = true
31serde.workspace = true
32serde_derive.workspace = true
33smol-timeout = "0.6"
34strum.workspace = true
35tracing = { version = "0.1.34", features = ["log"] }
36zstd = "0.11"
37
38[build-dependencies]
39prost-build = "0.9"
40
41[dev-dependencies]
42collections = { path = "../collections", features = ["test-support"] }
43gpui = { path = "../gpui", features = ["test-support"] }
44smol.workspace = true
45tempfile.workspace = true
46ctor.workspace = true
47env_logger.workspace = true