2021-10-05 15:19:57 +03:00
|
|
|
[package]
|
|
|
|
name = "project_panel"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/project_panel.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 15:19:57 +03:00
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2023-07-14 06:46:24 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 23:09:08 +03:00
|
|
|
db = { path = "../db" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 23:28:45 +03:00
|
|
|
menu = { path = "../menu" }
|
2024-01-31 05:41:29 +03:00
|
|
|
postage.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project" }
|
2024-01-31 05:41:29 +03:00
|
|
|
schemars.workspace = true
|
2024-01-03 21:52:40 +03:00
|
|
|
search = { path = "../search" }
|
2023-05-22 14:52:50 +03:00
|
|
|
serde.workspace = true
|
2023-05-23 06:23:07 +03:00
|
|
|
serde_derive.workspace = true
|
2023-05-22 16:55:44 +03:00
|
|
|
serde_json.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 21:47:33 +03:00
|
|
|
smallvec.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
ui = { path = "../ui" }
|
2022-04-21 16:08:45 +03:00
|
|
|
unicase = "2.6"
|
2024-01-31 05:41:29 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-31 23:05:51 +03:00
|
|
|
client = { path = "../client" }
|
2024-01-31 05:41:29 +03:00
|
|
|
workspace = { path = "../workspace", package = "workspace" }
|
2021-10-05 15:19:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 23:02:14 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|