Cargo.toml

 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" }
25channel = { path = "../channel" }
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"
41itertools = "0.10"
42bincode = "1.2.1"
43anyhow.workspace = true
44futures.workspace = true
45lazy_static.workspace = true
46log.workspace = true
47parking_lot.workspace = true
48postage.workspace = true
49schemars.workspace = true
50serde.workspace = true
51serde_derive.workspace = true
52serde_json.workspace = true
53smallvec.workspace = true
54uuid = { version = "1.1.2", features = ["v4"] }
55
56[dev-dependencies]
57call = { path = "../call", features = ["test-support"] }
58client = { path = "../client", features = ["test-support"] }
59gpui = { path = "../gpui", features = ["test-support"] }
60project = { path = "../project", features = ["test-support"] }
61settings = { path = "../settings", features = ["test-support"] }
62fs = { path = "../fs", features = ["test-support"] }
63db = { path = "../db", features = ["test-support"] }
64
65indoc.workspace = true
66env_logger.workspace = true