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