Cargo.toml

 1[package]
 2name = "project_panel2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/project_panel.rs"
 9doctest = false
10
11[dependencies]
12collections = { path = "../collections" }
13db = { path = "../db2", package = "db2" }
14editor = { path = "../editor2", package = "editor2" }
15gpui = { path = "../gpui2", package = "gpui2" }
16menu = { path = "../menu2", package = "menu2" }
17project = { path = "../project2", package = "project2" }
18settings = { path = "../settings2", package = "settings2" }
19theme = { path = "../theme2", package = "theme2" }
20ui = { path = "../ui2", package = "ui2" }
21util = { path = "../util" }
22workspace = { path = "../workspace2", package = "workspace2" }
23anyhow.workspace = true
24postage.workspace = true
25futures.workspace = true
26serde.workspace = true
27serde_derive.workspace = true
28serde_json.workspace = true
29schemars.workspace = true
30smallvec.workspace = true
31pretty_assertions.workspace = true
32unicase = "2.6"
33
34[dev-dependencies]
35client = { path = "../client2", package = "client2", features = ["test-support"] }
36language = { path = "../language2", package = "language2", features = ["test-support"] }
37editor = { path = "../editor2", package = "editor2", features = ["test-support"] }
38gpui = { path = "../gpui2", package = "gpui2", features = ["test-support"] }
39workspace = { path = "../workspace2", package = "workspace2", features = ["test-support"] }
40serde_json.workspace = true