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