1[package]
2name = "workspace"
3version = "0.1.0"
4edition = "2021"
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" }
15collections = { path = "../collections" }
16gpui = { path = "../gpui" }
17language = { path = "../language" }
18project = { path = "../project" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21anyhow = "1.0.38"
22log = "0.4"
23parking_lot = "0.11.1"
24postage = { version = "0.4.1", features = ["futures-traits"] }
25
26[dev-dependencies]
27client = { path = "../client", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29project = { path = "../project", features = ["test-support"] }
30serde_json = { version = "1.0.64", features = ["preserve_order"] }