mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
a7a4e2e369
Rearrange channel crate structure Get channel buffer from database co-authored-by: Max <max@zed.dev>
67 lines
1.7 KiB
TOML
67 lines
1.7 KiB
TOML
[package]
|
|
name = "workspace"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/workspace.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"call/test-support",
|
|
"client/test-support",
|
|
"project/test-support",
|
|
"settings/test-support",
|
|
"gpui/test-support",
|
|
"fs/test-support"
|
|
]
|
|
|
|
[dependencies]
|
|
db = { path = "../db" }
|
|
call = { path = "../call" }
|
|
client = { path = "../client" }
|
|
channel = { path = "../channel" }
|
|
collections = { path = "../collections" }
|
|
context_menu = { path = "../context_menu" }
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
|
fs = { path = "../fs" }
|
|
gpui = { path = "../gpui" }
|
|
install_cli = { path = "../install_cli" }
|
|
language = { path = "../language" }
|
|
menu = { path = "../menu" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
terminal = { path = "../terminal" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
|
|
async-recursion = "1.0.0"
|
|
itertools = "0.10"
|
|
bincode = "1.2.1"
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
smallvec.workspace = true
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
call = { path = "../call", features = ["test-support"] }
|
|
client = { path = "../client", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
db = { path = "../db", features = ["test-support"] }
|
|
|
|
indoc.workspace = true
|
|
env_logger.workspace = true
|