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