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" }
13drag_and_drop = { path = "../drag_and_drop" }
14editor = { path = "../editor" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22postage.workspace = true
23futures.workspace = true
24unicase = "2.6"
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29workspace = { path = "../workspace", features = ["test-support"] }
30serde_json.workspace = true