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]
12context_menu = { path = "../context_menu" }
13collections = { path = "../collections" }
14db = { path = "../db2", package = "db2" }
15editor = { path = "../editor2", package = "editor2" }
16gpui = { path = "../gpui2", package = "gpui2" }
17menu = { path = "../menu2", package = "menu2" }
18project = { path = "../project2", package = "project2" }
19settings = { path = "../settings2", package = "settings2" }
20theme = { path = "../theme2", package = "theme2" }
21ui = { path = "../ui2", package = "ui2" }
22util = { path = "../util" }
23workspace = { path = "../workspace2", package = "workspace2" }
24anyhow.workspace = true
25postage.workspace = true
26futures.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30schemars.workspace = true
31smallvec.workspace = true
32pretty_assertions.workspace = true
33unicase = "2.6"
34
35[dev-dependencies]
36client = { path = "../client2", package = "client2", features = ["test-support"] }
37language = { path = "../language2", package = "language2", features = ["test-support"] }
38editor = { path = "../editor2", package = "editor2", features = ["test-support"] }
39gpui = { path = "../gpui2", package = "gpui2", features = ["test-support"] }
40workspace = { path = "../workspace2", package = "workspace2", features = ["test-support"] }
41serde_json.workspace = true