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
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
|
|
|
menu.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
postage.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
schemars.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
search.workspace = true
|
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-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-01-03 21:47:33 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
2022-04-21 16:08:45 +03:00
|
|
|
unicase = "2.6"
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
|
|
|
client.workspace = true
|
|
|
|
workspace.workspace = true
|
2021-10-05 15:19:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|