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]
11gpui = { path = "../gpui" }
12project = { path = "../project" }
13theme = { path = "../theme" }
14util = { path = "../util" }
15workspace = { path = "../workspace" }
16postage = { version = "0.4.1", features = ["futures-traits"] }
17
18[dev-dependencies]
19gpui = { path = "../gpui", features = ["test-support"] }
20workspace = { path = "../workspace", features = ["test-support"] }
21serde_json = { version = "1.0.64", features = ["preserve_order"] }