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]
12collections = { path = "../collections" }
13db = { path = "../db" }
14editor = { path = "../editor" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17project = { path = "../project" }
18search = { path = "../search" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21ui = { path = "../ui" }
22util = { path = "../util" }
23workspace = { path = "../workspace", package = "workspace" }
24anyhow.workspace = true
25postage.workspace = true
26futures.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30schemars.workspace = true
31smallvec.workspace = true
32pretty_assertions.workspace = true
33unicase = "2.6"
34
35[dev-dependencies]
36client = { path = "../client", features = ["test-support"] }
37language = { path = "../language", features = ["test-support"] }
38editor = { path = "../editor", features = ["test-support"] }
39gpui = { path = "../gpui", features = ["test-support"] }
40workspace = { path = "../workspace", features = ["test-support"] }
41serde_json.workspace = true