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"
20postage = { version = "0.4.1", features = ["futures-traits"] }
21
22[dev-dependencies]
23client = { path = "../client", features = ["test-support"] }
24gpui = { path = "../gpui", features = ["test-support"] }
25project = { path = "../project", features = ["test-support"] }
26serde_json = { version = "1.0.64", features = ["preserve_order"] }