1[package]
2name = "project_panel"
3version = "0.1.0"
4edition = "2018"
5
6[lib]
7path = "src/project_panel.rs"
8
9[dependencies]
10gpui = { path = "../gpui" }
11project = { path = "../project" }
12theme = { path = "../theme" }
13util = { path = "../util" }
14workspace = { path = "../workspace" }
15postage = { version = "0.4.1", features = ["futures-traits"] }
16
17[dev-dependencies]
18gpui = { path = "../gpui", features = ["test-support"] }
19workspace = { path = "../workspace", features = ["test-support"] }
20serde_json = { version = "1.0.64", features = ["preserve_order"] }