Cargo.toml

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