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