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 = ["client/test-support", "project/test-support", "settings/test-support"]
12
13[dependencies]
14client = { path = "../client" }
15clock = { path = "../clock" }
16collections = { path = "../collections" }
17context_menu = { path = "../context_menu" }
18gpui = { path = "../gpui" }
19language = { path = "../language" }
20menu = { path = "../menu" }
21project = { path = "../project" }
22settings = { path = "../settings" }
23theme = { path = "../theme" }
24util = { path = "../util" }
25anyhow = "1.0.38"
26futures = "0.3"
27log = { version = "0.4.16", features = ["kv_unstable_serde"] }
28parking_lot = "0.11.1"
29postage = { version = "0.4.1", features = ["futures-traits"] }
30serde = { version = "1.0", features = ["derive", "rc"] }
31serde_json = { version = "1.0", features = ["preserve_order"] }
32smallvec = { version = "1.6", features = ["union"] }
33
34[dev-dependencies]
35client = { path = "../client", features = ["test-support"] }
36gpui = { path = "../gpui", features = ["test-support"] }
37project = { path = "../project", features = ["test-support"] }
38settings = { path = "../settings", features = ["test-support"] }