1[package]
2name = "project_panel"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/project_panel.rs"
9doctest = false
10
11[dependencies]
12context_menu = { path = "../context_menu" }
13db = { path = "../db" }
14drag_and_drop = { path = "../drag_and_drop" }
15editor = { path = "../editor" }
16gpui = { path = "../gpui" }
17menu = { path = "../menu" }
18project = { path = "../project" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22workspace = { path = "../workspace" }
23postage.workspace = true
24futures.workspace = true
25serde.workspace = true
26serde_derive.workspace = true
27serde_json.workspace = true
28anyhow.workspace = true
29schemars.workspace = true
30unicase = "2.6"
31
32[dev-dependencies]
33client = { path = "../client", features = ["test-support"] }
34language = { path = "../language", features = ["test-support"] }
35editor = { path = "../editor", features = ["test-support"] }
36gpui = { path = "../gpui", features = ["test-support"] }
37workspace = { path = "../workspace", features = ["test-support"] }
38serde_json.workspace = true