mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-24 15:18:02 +00:00
6e296eb4b6
Co-authored-by: Conrad Irwin <conrad@zed.dev>
45 lines
990 B
TOML
45 lines
990 B
TOML
[package]
|
|
name = "remote"
|
|
description = "Client-side subsystem for remote editing"
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/remote.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
default = []
|
|
test-support = ["fs/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
collections.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
itertools.workspace = true
|
|
log.workspace = true
|
|
paths.workspace = true
|
|
parking_lot.workspace = true
|
|
prost.workspace = true
|
|
rpc = { workspace = true, features = ["gpui"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
shlex.workspace = true
|
|
smol.workspace = true
|
|
tempfile.workspace = true
|
|
thiserror.workspace = true
|
|
util.workspace = true
|
|
release_channel.workspace = true
|
|
which.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
fs = { workspace = true, features = ["test-support"] }
|