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" }
20
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.workspace = true
31serde_json.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
45tempdir.workspace = true
46ctor.workspace = true
47env_logger.workspace = true