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" }
14gpui = { path = "../gpui" }
15language = { path = "../language" }
16project = { path = "../project" }
17theme = { path = "../theme" }
18anyhow = "1.0.38"
19log = "0.4"
20parking_lot = "0.11.1"
21postage = { version = "0.4.1", features = ["futures-traits"] }
22
23[dev-dependencies]
24client = { path = "../client", features = ["test-support"] }
25gpui = { path = "../gpui", features = ["test-support"] }
26project = { path = "../project", features = ["test-support"] }
27serde_json = { version = "1.0.64", features = ["preserve_order"] }