2022-09-27 13:17:00 +03:00
|
|
|
[package]
|
2022-09-28 20:14:31 +03:00
|
|
|
name = "collab_ui"
|
2022-09-27 13:17:00 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-09-27 13:17:00 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-09-28 20:14:31 +03:00
|
|
|
path = "src/collab_ui.rs"
|
2022-09-27 13:17:00 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
2022-09-29 18:24:31 +03:00
|
|
|
"call/test-support",
|
2022-09-27 13:17:00 +03:00
|
|
|
"client/test-support",
|
|
|
|
"collections/test-support",
|
|
|
|
"editor/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"project/test-support",
|
|
|
|
"settings/test-support",
|
|
|
|
"util/test-support",
|
|
|
|
"workspace/test-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 21:52:40 +03:00
|
|
|
auto_update = { path = "../auto_update" }
|
2024-01-03 21:30:52 +03:00
|
|
|
db = { package = "db2", path = "../db2" }
|
|
|
|
call = { package = "call2", path = "../call2" }
|
|
|
|
client = { package = "client2", path = "../client2" }
|
|
|
|
channel = { package = "channel2", path = "../channel2" }
|
2022-09-27 13:17:00 +03:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
2024-01-03 21:30:52 +03:00
|
|
|
# context_menu = { path = "../context_menu" }
|
|
|
|
# drag_and_drop = { path = "../drag_and_drop" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 21:55:34 +03:00
|
|
|
feedback = { path = "../feedback" }
|
2024-01-03 21:30:52 +03:00
|
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
language = { package = "language2", path = "../language2" }
|
|
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
|
|
notifications = { package = "notifications2", path = "../notifications2" }
|
|
|
|
rich_text = { package = "rich_text2", path = "../rich_text2" }
|
2024-01-03 21:55:34 +03:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 21:30:52 +03:00
|
|
|
project = { package = "project2", path = "../project2" }
|
2024-01-03 21:47:33 +03:00
|
|
|
recent_projects = { path = "../recent_projects" }
|
2024-01-03 21:30:52 +03:00
|
|
|
rpc = { package ="rpc2", path = "../rpc2" }
|
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
feature_flags = { package = "feature_flags2", path = "../feature_flags2"}
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2024-01-03 21:38:23 +03:00
|
|
|
theme_selector = { path = "../theme_selector" }
|
2023-07-10 18:18:12 +03:00
|
|
|
vcs_menu = { path = "../vcs_menu" }
|
2024-01-03 21:30:52 +03:00
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2022-09-27 13:17:00 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 21:30:52 +03:00
|
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
|
|
zed-actions = { package="zed_actions2", path = "../zed_actions2"}
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2023-10-18 03:59:42 +03:00
|
|
|
lazy_static.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2023-07-25 00:39:16 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2023-09-07 21:16:51 +03:00
|
|
|
time.workspace = true
|
2023-10-19 22:03:44 +03:00
|
|
|
smallvec.workspace = true
|
2022-09-27 13:17:00 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:30:52 +03:00
|
|
|
call = { package = "call2", path = "../call2", features = ["test-support"] }
|
|
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
2022-09-27 13:17:00 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 21:30:52 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
|
|
notifications = { package = "notifications2", path = "../notifications2", features = ["test-support"] }
|
|
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
|
|
rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
|
|
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
|
2022-09-27 13:17:00 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2024-01-03 21:30:52 +03:00
|
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
2023-10-18 06:15:49 +03:00
|
|
|
|
2023-10-23 13:50:57 +03:00
|
|
|
pretty_assertions.workspace = true
|
2023-10-18 06:15:49 +03:00
|
|
|
tree-sitter-markdown.workspace = true
|