2021-06-08 23:07:06 +03:00
|
|
|
[package]
|
|
|
|
description = "Shared logic for communication between the Zed app and the zed.dev server"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2021-10-04 22:28:00 +03:00
|
|
|
name = "rpc"
|
2021-06-08 23:07:06 +03:00
|
|
|
version = "0.1.0"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/rpc.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-07-09 03:33:08 +03:00
|
|
|
[features]
|
2022-04-08 12:27:53 +03:00
|
|
|
test-support = ["collections/test-support", "gpui/test-support"]
|
2021-07-09 03:33:08 +03:00
|
|
|
|
2021-06-08 23:07:06 +03:00
|
|
|
[dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2021-06-16 19:01:26 +03:00
|
|
|
async-lock = "2.4"
|
2022-01-04 02:20:40 +03:00
|
|
|
async-tungstenite = "0.16"
|
2021-06-08 23:07:06 +03:00
|
|
|
base64 = "0.13"
|
2024-01-31 05:41:29 +03:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
gpui = { path = "../gpui", optional = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
2023-08-21 22:00:43 +03:00
|
|
|
prost.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2021-06-19 00:12:22 +03:00
|
|
|
rsa = "0.4"
|
2024-01-03 23:09:08 +03:00
|
|
|
serde.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_derive.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde_json.workspace = true
|
2021-11-23 00:23:55 +03:00
|
|
|
smol-timeout = "0.6"
|
2023-10-05 00:16:32 +03:00
|
|
|
strum.workspace = true
|
2022-05-12 19:17:37 +03:00
|
|
|
tracing = { version = "0.1.34", features = ["log"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
util = { path = "../util" }
|
2022-06-02 11:50:26 +03:00
|
|
|
zstd = "0.11"
|
2021-06-09 22:15:25 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-06-03 03:24:57 +03:00
|
|
|
prost-build = "0.9"
|
2021-06-09 22:15:25 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-04-08 12:27:53 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2024-01-24 20:58:09 +03:00
|
|
|
tempfile.workspace = true
|