1[package]
2name = "workspace"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/workspace.rs"
9doctest = false
10
11[features]
12test-support = [
13 "call/test-support",
14 "client/test-support",
15 "project/test-support",
16 "settings/test-support",
17 "gpui/test-support",
18 "fs/test-support"
19]
20
21[dependencies]
22db = { path = "../db" }
23call = { path = "../call" }
24client = { path = "../client" }
25collections = { path = "../collections" }
26context_menu = { path = "../context_menu" }
27drag_and_drop = { path = "../drag_and_drop" }
28fs = { path = "../fs" }
29gpui = { path = "../gpui" }
30install_cli = { path = "../install_cli" }
31language = { path = "../language" }
32menu = { path = "../menu" }
33project = { path = "../project" }
34settings = { path = "../settings" }
35terminal = { path = "../terminal" }
36theme = { path = "../theme" }
37util = { path = "../util" }
38
39async-recursion = "1.0.0"
40bincode = "1.2.1"
41anyhow.workspace = true
42futures.workspace = true
43lazy_static.workspace = true
44log.workspace = true
45parking_lot.workspace = true
46postage.workspace = true
47serde.workspace = true
48serde_derive.workspace = true
49serde_json.workspace = true
50smallvec.workspace = true
51uuid = { version = "1.1.2", features = ["v4"] }
52
53[dev-dependencies]
54call = { path = "../call", features = ["test-support"] }
55client = { path = "../client", features = ["test-support"] }
56gpui = { path = "../gpui", features = ["test-support"] }
57project = { path = "../project", features = ["test-support"] }
58settings = { path = "../settings", features = ["test-support"] }
59fs = { path = "../fs", features = ["test-support"] }
60db = { path = "../db", features = ["test-support"] }
61
62indoc = "1.0.4"
63env_logger.workspace = true