Cargo.toml

 1[package]
 2name = "workspace"
 3version = "0.1.0"
 4edition = "2018"
 5
 6[lib]
 7path = "src/workspace.rs"
 8
 9[features]
10test-support = ["client/test-support", "project/test-support"]
11
12[dependencies]
13client = { path = "../client" }
14clock = { path = "../clock" }
15gpui = { path = "../gpui" }
16language = { path = "../language" }
17project = { path = "../project" }
18theme = { path = "../theme" }
19anyhow = "1.0.38"
20log = "0.4"
21parking_lot = "0.11.1"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23
24[dev-dependencies]
25client = { path = "../client", features = ["test-support"] }
26gpui = { path = "../gpui", features = ["test-support"] }
27project = { path = "../project", features = ["test-support"] }
28serde_json = { version = "1.0.64", features = ["preserve_order"] }