Cargo.toml

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