Cargo.toml

 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"
22futures = "0.3"
23log = "0.4"
24parking_lot = "0.11.1"
25postage = { version = "0.4.1", features = ["futures-traits"] }
26
27[dev-dependencies]
28client = { path = "../client", features = ["test-support"] }
29gpui = { path = "../gpui", features = ["test-support"] }
30project = { path = "../project", features = ["test-support"] }
31serde_json = { version = "1.0.64", features = ["preserve_order"] }