2022-09-27 10:17:00 +00:00
|
|
|
[package]
|
2022-09-28 17:14:31 +00:00
|
|
|
name = "collab_ui"
|
2022-09-27 10:17:00 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-09-27 10:17:00 +00:00
|
|
|
|
|
|
|
[lib]
|
2022-09-28 17:14:31 +00:00
|
|
|
path = "src/collab_ui.rs"
|
2022-09-27 10:17:00 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
2022-09-29 15:24:31 +00:00
|
|
|
"call/test-support",
|
2022-09-27 10:17:00 +00: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]
|
2023-02-16 22:41:03 +00:00
|
|
|
auto_update = { path = "../auto_update" }
|
2023-07-24 21:39:16 +00:00
|
|
|
db = { path = "../db" }
|
2022-09-29 15:24:31 +00:00
|
|
|
call = { path = "../call" }
|
2022-09-27 10:17:00 +00:00
|
|
|
client = { path = "../client" }
|
2023-08-21 23:30:57 +00:00
|
|
|
channel = { path = "../channel" }
|
2022-09-27 10:17:00 +00:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
2023-02-23 00:58:49 +00:00
|
|
|
context_menu = { path = "../context_menu" }
|
2023-09-19 18:20:01 +00:00
|
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
2022-09-27 10:17:00 +00:00
|
|
|
editor = { path = "../editor" }
|
2023-03-10 20:48:11 +00:00
|
|
|
feedback = { path = "../feedback" }
|
2022-09-27 10:17:00 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
gpui = { path = "../gpui" }
|
2023-08-22 21:18:32 +00:00
|
|
|
language = { path = "../language" }
|
2022-09-27 13:55:02 +00:00
|
|
|
menu = { path = "../menu" }
|
2022-10-06 12:00:14 +00:00
|
|
|
picker = { path = "../picker" }
|
2022-09-27 10:17:00 +00:00
|
|
|
project = { path = "../project" }
|
2023-06-29 16:03:01 +00:00
|
|
|
recent_projects = {path = "../recent_projects"}
|
2022-09-27 10:17:00 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-08-26 00:00:53 +00:00
|
|
|
feature_flags = {path = "../feature_flags"}
|
2022-09-27 10:17:00 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-06-09 23:35:18 +00:00
|
|
|
theme_selector = { path = "../theme_selector" }
|
2023-07-10 15:18:12 +00:00
|
|
|
vcs_menu = { path = "../vcs_menu" }
|
2022-09-27 10:17:00 +00:00
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
2023-06-12 11:00:08 +00:00
|
|
|
zed-actions = {path = "../zed-actions"}
|
2023-04-25 00:41:55 +00:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
log.workspace = true
|
2023-07-24 21:39:16 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
postage.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2023-09-07 18:16:51 +00:00
|
|
|
time.workspace = true
|
2022-09-27 10:17:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-29 15:24:31 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
2022-09-27 10:17:00 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
|
|
util = { path = "../util", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|