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]
|
2024-01-09 02:54:59 +00:00
|
|
|
default = []
|
|
|
|
stories = ["dep:story"]
|
2022-09-27 10:17:00 +00:00
|
|
|
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]
|
2024-01-03 18:52:40 +00:00
|
|
|
auto_update = { path = "../auto_update" }
|
2024-01-03 20:09:08 +00:00
|
|
|
db = { path = "../db" }
|
2024-01-03 20:02:14 +00:00
|
|
|
call = { path = "../call" }
|
|
|
|
client = { path = "../client" }
|
|
|
|
channel = { path = "../channel" }
|
2022-09-27 10:17:00 +00:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
2024-01-03 18:30:52 +00:00
|
|
|
# context_menu = { path = "../context_menu" }
|
|
|
|
# drag_and_drop = { path = "../drag_and_drop" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 18:55:34 +00:00
|
|
|
feedback = { path = "../feedback" }
|
2024-01-03 19:58:02 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 20:28:45 +00:00
|
|
|
menu = { path = "../menu" }
|
2024-01-03 20:09:08 +00:00
|
|
|
notifications = { path = "../notifications" }
|
2024-01-03 19:48:46 +00:00
|
|
|
rich_text = { path = "../rich_text" }
|
2024-01-03 18:55:34 +00:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 18:47:33 +00:00
|
|
|
recent_projects = { path = "../recent_projects" }
|
2024-01-03 20:09:08 +00:00
|
|
|
rpc = { path = "../rpc" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-09 02:54:59 +00:00
|
|
|
story = { path = "../story", optional = true }
|
2024-01-03 19:48:46 +00:00
|
|
|
feature_flags = { path = "../feature_flags"}
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 18:38:23 +00:00
|
|
|
theme_selector = { path = "../theme_selector" }
|
2023-07-10 15:18:12 +00:00
|
|
|
vcs_menu = { path = "../vcs_menu" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
2022-09-27 10:17:00 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 19:48:46 +00:00
|
|
|
zed_actions = { path = "../zed_actions"}
|
2023-04-25 00:41:55 +00:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2023-10-18 00:59:42 +00:00
|
|
|
lazy_static.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
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
|
2024-01-07 13:14:21 +00:00
|
|
|
serde_json.workspace = true
|
2023-09-07 18:16:51 +00:00
|
|
|
time.workspace = true
|
2023-10-19 19:03:44 +00:00
|
|
|
smallvec.workspace = true
|
2022-09-27 10:17:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 20:02:14 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2022-09-27 10:17:00 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 20:09:08 +00:00
|
|
|
notifications = { path = "../notifications", features = ["test-support"] }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2024-01-03 20:09:08 +00:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2022-09-27 10:17:00 +00:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-10-18 03:15:49 +00:00
|
|
|
|
2023-10-23 10:50:57 +00:00
|
|
|
pretty_assertions.workspace = true
|
2023-10-18 03:15:49 +00:00
|
|
|
tree-sitter-markdown.workspace = true
|