mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
29 lines
762 B
TOML
29 lines
762 B
TOML
[package]
|
|
name = "workspace"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/workspace.rs"
|
|
|
|
[features]
|
|
test-support = ["client/test-support", "project/test-support"]
|
|
|
|
[dependencies]
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
project = { path = "../project" }
|
|
theme = { path = "../theme" }
|
|
anyhow = "1.0.38"
|
|
log = "0.4"
|
|
parking_lot = "0.11.1"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
[dev-dependencies]
|
|
client = { path = "../client", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|