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