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