1[package]
2name = "workspace2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/workspace2.rs"
9doctest = false
10
11[features]
12test-support = [
13 "call2/test-support",
14 "client2/test-support",
15 "project2/test-support",
16 "settings2/test-support",
17 "gpui2/test-support",
18 "fs2/test-support"
19]
20
21[dependencies]
22db2 = { path = "../db2" }
23call2 = { path = "../call2" }
24client2 = { path = "../client2" }
25collections = { path = "../collections" }
26# context_menu = { path = "../context_menu" }
27fs2 = { path = "../fs2" }
28gpui2 = { path = "../gpui2" }
29install_cli2 = { path = "../install_cli2" }
30language2 = { path = "../language2" }
31#menu = { path = "../menu" }
32node_runtime = { path = "../node_runtime" }
33project2 = { path = "../project2" }
34settings2 = { path = "../settings2" }
35terminal2 = { path = "../terminal2" }
36theme2 = { path = "../theme2" }
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.workspace = true
54
55[dev-dependencies]
56call2 = { path = "../call2", features = ["test-support"] }
57client2 = { path = "../client2", features = ["test-support"] }
58gpui2 = { path = "../gpui2", features = ["test-support"] }
59project2 = { path = "../project2", features = ["test-support"] }
60settings2 = { path = "../settings2", features = ["test-support"] }
61fs2 = { path = "../fs2", features = ["test-support"] }
62db2 = { path = "../db2", features = ["test-support"] }
63
64indoc.workspace = true
65env_logger.workspace = true