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