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]
11editor = { path = "../editor" }
12gpui = { path = "../gpui" }
13project = { path = "../project" }
14settings = { path = "../settings" }
15theme = { path = "../theme" }
16util = { path = "../util" }
17workspace = { path = "../workspace" }
18unicase = "2.6"
19
20[dev-dependencies]
21editor = { path = "../editor", features = ["test-support"] }
22gpui = { path = "../gpui", features = ["test-support"] }
23workspace = { path = "../workspace", features = ["test-support"] }
24serde_json = { version = "1.0.64", features = ["preserve_order"] }