1[package]
2description = "Shared logic for communication between the Zed app and the zed.dev server"
3edition = "2021"
4name = "rpc2"
5version = "0.1.0"
6publish = false
7
8[lib]
9path = "src/rpc.rs"
10doctest = false
11
12[features]
13test-support = ["collections/test-support", "gpui2/test-support"]
14
15[dependencies]
16clock = { path = "../clock" }
17collections = { path = "../collections" }
18gpui2 = { path = "../gpui2", 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.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"] }
40gpui2 = { path = "../gpui2", features = ["test-support"] }
41smol.workspace = true
42tempdir.workspace = true
43ctor.workspace = true
44env_logger.workspace = true