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