Cargo.toml

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