2021-10-05 12:19:57 +00:00
|
|
|
[package]
|
|
|
|
name = "project_panel"
|
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-10-05 12:19:57 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/project_panel.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 12:19:57 +00:00
|
|
|
[dependencies]
|
2022-05-25 08:23:43 +00:00
|
|
|
context_menu = { path = "../context_menu" }
|
2023-07-14 03:46:24 +00:00
|
|
|
collections = { path = "../collections" }
|
2023-05-22 13:55:44 +00:00
|
|
|
db = { path = "../db" }
|
2022-11-07 22:00:01 +00:00
|
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
2022-04-29 23:27:45 +00:00
|
|
|
editor = { path = "../editor" }
|
2021-10-05 12:19:57 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-05-26 14:36:30 +00:00
|
|
|
menu = { path = "../menu" }
|
2021-10-05 12:19:57 +00:00
|
|
|
project = { path = "../project" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2021-10-05 12:19:57 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-07 16:38:37 +00:00
|
|
|
util = { path = "../util" }
|
2021-10-05 12:19:57 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 00:41:55 +00:00
|
|
|
postage.workspace = true
|
|
|
|
futures.workspace = true
|
2023-05-22 11:52:50 +00:00
|
|
|
serde.workspace = true
|
2023-05-23 03:23:07 +00:00
|
|
|
serde_derive.workspace = true
|
2023-05-22 13:55:44 +00:00
|
|
|
serde_json.workspace = true
|
2023-05-23 03:23:07 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
schemars.workspace = true
|
2023-06-21 22:23:52 +00:00
|
|
|
pretty_assertions.workspace = true
|
2022-04-21 13:08:45 +00:00
|
|
|
unicase = "2.6"
|
2021-10-05 12:19:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-17 00:29:21 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2023-05-11 21:40:35 +00:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-04-30 00:17:04 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2021-11-24 16:39:15 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
serde_json.workspace = true
|