mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "workspace"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/workspace.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["client/test-support", "project/test-support", "settings/test-support"]
|
|
|
|
[dependencies]
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
context_menu = { path = "../context_menu" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
menu = { path = "../menu" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0.38"
|
|
futures = "0.3"
|
|
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"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
[dev-dependencies]
|
|
client = { path = "../client", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] } |