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
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +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]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
|
|
|
menu.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
postage.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
schemars.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
search.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
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2024-01-03 18:47:33 +00:00
|
|
|
smallvec.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
2022-04-21 13:08:45 +00:00
|
|
|
unicase = "2.6"
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
|
|
|
client.workspace = true
|
|
|
|
workspace.workspace = true
|
2021-10-05 12:19:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00: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 00:41:55 +00:00
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|