Cargo.toml

 1[package]
 2name = "project_panel"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/project_panel.rs"
 8doctest = false
 9
10[dependencies]
11context_menu = { path = "../context_menu" }
12drag_and_drop = { path = "../drag_and_drop" }
13editor = { path = "../editor" }
14gpui = { path = "../gpui" }
15menu = { path = "../menu" }
16project = { path = "../project" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19util = { path = "../util" }
20workspace = { path = "../workspace" }
21postage = { version = "0.4.1", features = ["futures-traits"] }
22futures = "0.3"
23unicase = "2.6"
24
25[dev-dependencies]
26editor = { path = "../editor", features = ["test-support"] }
27gpui = { path = "../gpui", features = ["test-support"] }
28workspace = { path = "../workspace", features = ["test-support"] }
29serde_json = { version = "1.0", features = ["preserve_order"] }