Cargo.toml

 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    "gpui/test-support",
18    "fs2/test-support"
19]
20
21[dependencies]
22db2 = { path = "../db2" }
23client2 = { path = "../client2" }
24collections = { path = "../collections" }
25# context_menu = { path = "../context_menu" }
26fs2 = { path = "../fs2" }
27gpui = { package = "gpui2", path = "../gpui2" }
28install_cli2 = { path = "../install_cli2" }
29language2 = { path = "../language2" }
30#menu = { path = "../menu" }
31node_runtime = { path = "../node_runtime" }
32project2 = { path = "../project2" }
33settings2 = { path = "../settings2" }
34terminal2 = { path = "../terminal2" }
35theme2 = { path = "../theme2" }
36util = { path = "../util" }
37ui = { package = "ui2", path = "../ui2" }
38
39async-trait.workspace = true
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]
57call2 = { path = "../call2", features = ["test-support"] }
58client2 = { path = "../client2", features = ["test-support"] }
59gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
60project2 = { path = "../project2", features = ["test-support"] }
61settings2 = { path = "../settings2", features = ["test-support"] }
62fs2 = { path = "../fs2", features = ["test-support"] }
63db2 = { path = "../db2", features = ["test-support"] }
64
65indoc.workspace = true
66env_logger.workspace = true