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    "gpui/test-support",
17    "fs/test-support"
18]
19
20[dependencies]
21call = { path = "../call" }
22client = { path = "../client" }
23collections = { path = "../collections" }
24context_menu = { path = "../context_menu" }
25drag_and_drop = { path = "../drag_and_drop" }
26fs = { path = "../fs" }
27gpui = { path = "../gpui" }
28language = { path = "../language" }
29menu = { path = "../menu" }
30project = { path = "../project" }
31settings = { path = "../settings" }
32theme = { path = "../theme" }
33util = { path = "../util" }
34anyhow = "1.0.38"
35futures = "0.3"
36log = { version = "0.4.16", features = ["kv_unstable_serde"] }
37parking_lot = "0.11.1"
38postage = { version = "0.4.1", features = ["futures-traits"] }
39serde = { version = "1.0", features = ["derive", "rc"] }
40serde_json = { version = "1.0", features = ["preserve_order"] }
41smallvec = { version = "1.6", features = ["union"] }
42
43[dev-dependencies]
44call = { path = "../call", features = ["test-support"] }
45client = { path = "../client", features = ["test-support"] }
46gpui = { path = "../gpui", features = ["test-support"] }
47project = { path = "../project", features = ["test-support"] }
48settings = { path = "../settings", features = ["test-support"] }
49fs = { path = "../fs", features = ["test-support"] }