2023-11-16 00:24:01 +03:00
|
|
|
[package]
|
|
|
|
name = "collab_ui2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/collab_ui.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"call/test-support",
|
|
|
|
"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-12-14 01:44:27 +03:00
|
|
|
auto_update = { package = "auto_update2", path = "../auto_update2" }
|
2023-11-16 00:24:01 +03:00
|
|
|
db = { package = "db2", path = "../db2" }
|
|
|
|
call = { package = "call2", path = "../call2" }
|
|
|
|
client = { package = "client2", path = "../client2" }
|
|
|
|
channel = { package = "channel2", path = "../channel2" }
|
|
|
|
clock = { path = "../clock" }
|
|
|
|
collections = { path = "../collections" }
|
|
|
|
# context_menu = { path = "../context_menu" }
|
|
|
|
# drag_and_drop = { path = "../drag_and_drop" }
|
|
|
|
editor = { package="editor2", path = "../editor2" }
|
2023-12-14 00:12:59 +03:00
|
|
|
feedback = { package = "feedback2", path = "../feedback2" }
|
2023-11-20 21:46:16 +03:00
|
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
2023-11-16 00:24:01 +03:00
|
|
|
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" }
|
|
|
|
picker = { package = "picker2", path = "../picker2" }
|
|
|
|
project = { package = "project2", path = "../project2" }
|
2023-12-07 02:41:50 +03:00
|
|
|
recent_projects = { package = "recent_projects2", path = "../recent_projects2" }
|
2023-11-16 00:24:01 +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" }
|
2023-12-14 00:12:59 +03:00
|
|
|
theme_selector = { package = "theme_selector2", path = "../theme_selector2" }
|
2023-12-14 14:36:53 +03:00
|
|
|
vcs_menu = { package = "vcs_menu2", path = "../vcs_menu2" }
|
2023-11-16 01:47:33 +03:00
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-11-16 00:24:01 +03:00
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
|
|
zed-actions = { package="zed_actions2", path = "../zed_actions2"}
|
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
schemars.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
time.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
call = { package = "call2", path = "../call2", features = ["test-support"] }
|
|
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
|
|
editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
|
|
|
|
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"] }
|
|
|
|
util = { path = "../util", features = ["test-support"] }
|
|
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
|
|
|
|
|
|
|
pretty_assertions.workspace = true
|
|
|
|
tree-sitter-markdown.workspace = true
|