Cargo.toml

 1[package]
 2name = "project_panel"
 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 = "../db" }
15drag_and_drop = { path = "../drag_and_drop" }
16editor = { path = "../editor" }
17gpui = { path = "../gpui" }
18menu = { path = "../menu" }
19project = { path = "../project" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22util = { path = "../util" }
23workspace = { path = "../workspace" }
24postage.workspace = true
25futures.workspace = true
26serde.workspace = true
27serde_derive.workspace = true
28serde_json.workspace = true
29anyhow.workspace = true
30schemars.workspace = true
31pretty_assertions.workspace = true
32unicase = "2.6"
33
34[dev-dependencies]
35client = { path = "../client", features = ["test-support"] }
36language = { path = "../language", features = ["test-support"] }
37editor = { path = "../editor", features = ["test-support"] }
38gpui = { path = "../gpui", features = ["test-support"] }
39workspace = { path = "../workspace", features = ["test-support"] }
40serde_json.workspace = true