Cargo.toml

 1[package]
 2name = "workspace"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-only"
 7
 8
 9[lib]
10path = "src/workspace.rs"
11doctest = false
12
13[features]
14test-support = [
15    "call/test-support",
16    "client/test-support",
17    "project/test-support",
18    "settings/test-support",
19    "gpui/test-support",
20    "fs/test-support"
21]
22
23[dependencies]
24db = { path = "../db" }
25call = { path = "../call" }
26client = { path = "../client" }
27collections = { path = "../collections" }
28# context_menu = { path = "../context_menu" }
29fs = { path = "../fs" }
30gpui = { path = "../gpui" }
31install_cli = { path = "../install_cli" }
32language = { path = "../language" }
33#menu = { path = "../menu" }
34node_runtime = { path = "../node_runtime" }
35project = { path = "../project" }
36settings = { path = "../settings" }
37sqlez = { path = "../sqlez" }
38terminal = { path = "../terminal" }
39theme = { path = "../theme" }
40util = { path = "../util" }
41ui = { path = "../ui" }
42
43async-recursion = "1.0.0"
44itertools = "0.10"
45bincode = "1.2.1"
46anyhow.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