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"]
12
13[dependencies]
14client = { path = "../client" }
15clock = { path = "../clock" }
16collections = { path = "../collections" }
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19project = { path = "../project" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22anyhow = "1.0.38"
23futures = "0.3"
24log = "0.4"
25parking_lot = "0.11.1"
26postage = { version = "0.4.1", features = ["futures-traits"] }
27schemars = "0.8"
28serde = { version = "1", features = ["derive", "rc"] }
29serde_json = { version = "1", 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"] }