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