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 "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 = "../db2", package = "db2" }
23call = { path = "../call2", package = "call2" }
24client = { path = "../client2", package = "client2" }
25collections = { path = "../collections" }
26# context_menu = { path = "../context_menu" }
27fs = { path = "../fs2", package = "fs2" }
28gpui = { package = "gpui2", path = "../gpui2" }
29install_cli = { path = "../install_cli2", package = "install_cli2" }
30language = { path = "../language2", package = "language2" }
31#menu = { path = "../menu" }
32node_runtime = { path = "../node_runtime" }
33project = { path = "../project2", package = "project2" }
34settings = { path = "../settings2", package = "settings2" }
35terminal = { path = "../terminal2", package = "terminal2" }
36theme = { path = "../theme2", package = "theme2" }
37util = { path = "../util" }
38ui = { package = "ui2", path = "../ui2" }
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.workspace = true
55
56[dev-dependencies]
57call = { path = "../call2", package = "call2", features = ["test-support"] }
58client = { path = "../client2", package = "client2", features = ["test-support"] }
59gpui = { path = "../gpui2", package = "gpui2", features = ["test-support"] }
60project = { path = "../project2", package = "project2", features = ["test-support"] }
61settings = { path = "../settings2", package = "settings2", features = ["test-support"] }
62fs = { path = "../fs2", package = "fs2", features = ["test-support"] }
63db = { path = "../db2", package = "db2", features = ["test-support"] }
64
65indoc.workspace = true
66env_logger.workspace = true