zed/crates/workspace/Cargo.toml

56 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "workspace"
version = "0.1.0"
edition = "2021"
[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]
2022-10-21 01:07:58 +03:00
db = { path = "../db" }
call = { path = "../call" }
client = { path = "../client" }
collections = { path = "../collections" }
context_menu = { path = "../context_menu" }
2022-07-26 20:04:16 +03:00
drag_and_drop = { path = "../drag_and_drop" }
2022-10-12 01:25:54 +03:00
fs = { path = "../fs" }
gpui = { path = "../gpui" }
2021-10-20 23:51:40 +03:00
language = { path = "../language" }
menu = { path = "../menu" }
project = { path = "../project" }
settings = { path = "../settings" }
theme = { path = "../theme" }
util = { path = "../util" }
2022-11-19 01:20:52 +03:00
async-recursion = "1.0.0"
bincode = "1.2.1"
anyhow = "1.0.38"
futures = "0.3"
lazy_static = "1.4"
env_logger = "0.9.1"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
parking_lot = "0.11.1"
postage = { version = "0.4.1", features = ["futures-traits"] }
serde = { version = "1.0", features = ["derive", "rc"] }
2022-05-26 10:34:39 +03:00
serde_json = { version = "1.0", features = ["preserve_order"] }
smallvec = { version = "1.6", features = ["union"] }
indoc = "1.0.4"
[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"] }
2022-11-16 01:45:04 +03:00
fs = { path = "../fs", features = ["test-support"] }
db = { path = "../db", features = ["test-support"] }