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" }
35async-recursion = "1.0.0"
36bincode = "1.2.1"
37anyhow = "1.0.38"
38futures = "0.3"
39lazy_static = "1.4"
40env_logger = "0.9.1"
41log = { version = "0.4.16", features = ["kv_unstable_serde"] }
42parking_lot = "0.11.1"
43postage = { version = "0.4.1", features = ["futures-traits"] }
44serde = { version = "1.0", features = ["derive", "rc"] }
45serde_json = { version = "1.0", features = ["preserve_order"] }
46smallvec = { version = "1.6", features = ["union"] }
47indoc = "1.0.4"
48
49[dev-dependencies]
50call = { path = "../call", features = ["test-support"] }
51client = { path = "../client", features = ["test-support"] }
52gpui = { path = "../gpui", features = ["test-support"] }
53project = { path = "../project", features = ["test-support"] }
54settings = { path = "../settings", features = ["test-support"] }
55fs = { path = "../fs", features = ["test-support"] }
56db = { path = "../db", features = ["test-support"] }