Cargo.toml

 1[package]
 2name = "workspace"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/workspace.rs"
 8doctest = false
 9
10[features]
11test-support = [
12    "call/test-support",
13    "client/test-support",
14    "project/test-support",
15    "settings/test-support"
16]
17
18[dependencies]
19call = { path = "../call" }
20client = { path = "../client" }
21collections = { path = "../collections" }
22context_menu = { path = "../context_menu" }
23drag_and_drop = { path = "../drag_and_drop" }
24gpui = { path = "../gpui" }
25language = { path = "../language" }
26menu = { path = "../menu" }
27project = { path = "../project" }
28settings = { path = "../settings" }
29theme = { path = "../theme" }
30util = { path = "../util" }
31anyhow = "1.0.38"
32futures = "0.3"
33log = { version = "0.4.16", features = ["kv_unstable_serde"] }
34parking_lot = "0.11.1"
35postage = { version = "0.4.1", features = ["futures-traits"] }
36serde = { version = "1.0", features = ["derive", "rc"] }
37serde_json = { version = "1.0", features = ["preserve_order"] }
38smallvec = { version = "1.6", features = ["union"] }
39
40[dev-dependencies]
41call = { path = "../call", features = ["test-support"] }
42client = { path = "../client", features = ["test-support"] }
43gpui = { path = "../gpui", features = ["test-support"] }
44project = { path = "../project", features = ["test-support"] }
45settings = { path = "../settings", features = ["test-support"] }