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
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-06-10 21:49:53 +03:00
|
|
|
test-support = ["collections/test-support", "gpui/test-support", "proto/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
|
2024-07-24 01:01:05 +03:00
|
|
|
async-tungstenite.workspace = true
|
2024-03-07 06:51:43 +03:00
|
|
|
base64.workspace = true
|
2024-03-26 00:30:48 +03:00
|
|
|
chrono.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, optional = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
2024-06-10 21:49:53 +03:00
|
|
|
proto.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2024-07-24 03:11:48 +03:00
|
|
|
rsa.workspace = true
|
2024-01-03 23:09:08 +03:00
|
|
|
serde.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde_json.workspace = true
|
2024-07-24 04:25:25 +03:00
|
|
|
sha2.workspace = true
|
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-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2022-06-02 11:50:26 +03:00
|
|
|
zstd = "0.11"
|
2021-06-09 22:15:25 +03:00
|
|
|
|
2024-06-22 02:32:32 +03:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
zstd = { version = "0.11", features = [ "pkg-config" ] }
|
|
|
|
|
|
|
|
|
2021-06-09 22:15:25 +03:00
|
|
|
[dev-dependencies]
|
2024-06-10 21:49:53 +03:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
env_logger.workspace = true
|
2024-06-10 21:49:53 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
proto = { workspace = true, features = ["test-support"] }
|