mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:38:02 +00:00
bebe24ea77
This will allow us to compile debug builds of the remote-server for a different architecture than the one we are developing on. This also adds a CI step for building our remote server with minimal dependencies. Release Notes: - N/A
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
description = "Shared logic for communication between the Zed app and the zed.dev server"
|
|
edition = "2021"
|
|
name = "rpc"
|
|
version = "0.1.0"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/rpc.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
gpui = ["dep:gpui"]
|
|
test-support = ["collections/test-support", "gpui/test-support", "proto/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-tungstenite.workspace = true
|
|
base64.workspace = true
|
|
chrono.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui = { workspace = true, optional = true }
|
|
parking_lot.workspace = true
|
|
proto.workspace = true
|
|
rand.workspace = true
|
|
rsa.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
strum.workspace = true
|
|
tracing = { version = "0.1.34", features = ["log"] }
|
|
util.workspace = true
|
|
zstd.workspace = true
|
|
|
|
[dev-dependencies]
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
proto = { workspace = true, features = ["test-support"] }
|