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" }
26# context_menu = { path = "../context_menu" }
27fs = { path = "../fs" }
28gpui = { path = "../gpui" }
29install_cli = { path = "../install_cli" }
30language = { path = "../language" }
31#menu = { path = "../menu" }
32node_runtime = { path = "../node_runtime" }
33project = { path = "../project" }
34settings = { path = "../settings" }
35sqlez = { path = "../sqlez" }
36terminal = { path = "../terminal" }
37theme = { path = "../theme" }
38util = { path = "../util" }
39ui = { path = "../ui" }
40
41async-recursion = "1.0.0"
42itertools = "0.10"
43bincode = "1.2.1"
44anyhow.workspace = true
45futures.workspace = true
46lazy_static.workspace = true
47log.workspace = true
48parking_lot.workspace = true
49postage.workspace = true
50schemars.workspace = true
51serde.workspace = true
52serde_derive.workspace = true
53serde_json.workspace = true
54smallvec.workspace = true
55uuid.workspace = true
56
57[dev-dependencies]
58call = { path = "../call", features = ["test-support"] }
59client = { path = "../client", features = ["test-support"] }
60gpui = { path = "../gpui", features = ["test-support"] }
61project = { path = "../project", features = ["test-support"] }
62settings = { path = "../settings", features = ["test-support"] }
63fs = { path = "../fs", features = ["test-support"] }
64db = { path = "../db", features = ["test-support"] }
65
66indoc.workspace = true
67env_logger.workspace = true