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