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