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"
|
|
|
|
|
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]
|
2022-04-08 12:27:53 +03:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
|
|
|
gpui = { path = "../gpui", optional = true }
|
|
|
|
util = { path = "../util" }
|
2021-06-08 23:07:06 +03:00
|
|
|
anyhow = "1.0"
|
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"
|
2021-06-16 19:01:26 +03:00
|
|
|
futures = "0.3"
|
2021-07-10 02:27:33 +03:00
|
|
|
parking_lot = "0.11.1"
|
2021-10-01 01:36:40 +03:00
|
|
|
prost = "0.8"
|
2021-06-08 23:07:06 +03:00
|
|
|
rand = "0.8"
|
2021-06-19 00:12:22 +03:00
|
|
|
rsa = "0.4"
|
2022-05-31 12:16:32 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2021-11-23 00:23:55 +03:00
|
|
|
smol-timeout = "0.6"
|
2022-05-12 19:17:37 +03:00
|
|
|
tracing = { version = "0.1.34", features = ["log"] }
|
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"] }
|
2022-01-12 21:19:17 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-06-09 22:15:25 +03:00
|
|
|
smol = "1.2.5"
|
2021-06-17 07:18:22 +03:00
|
|
|
tempdir = "0.3.7"
|
2022-06-23 00:41:40 +03:00
|
|
|
ctor = "0.1"
|
|
|
|
env_logger = "0.9"
|