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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-01-09 05:54:59 +03:00
|
|
|
default = []
|
|
|
|
stories = ["dep:story"]
|
2022-09-27 13:17:00 +03:00
|
|
|
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-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
auto_update.workspace = true
|
|
|
|
call.workspace = true
|
|
|
|
channel.workspace = true
|
|
|
|
client.workspace = true
|
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-03-07 05:18:29 +03:00
|
|
|
emojis.workspace = true
|
2024-02-22 15:01:20 +03:00
|
|
|
extensions_ui.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
fuzzy.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
lazy_static.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
menu.workspace = true
|
|
|
|
notifications.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
picker.workspace = true
|
|
|
|
project.workspace = true
|
|
|
|
recent_projects.workspace = true
|
|
|
|
rich_text.workspace = true
|
|
|
|
rpc.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
story = { workspace = true, optional = true }
|
|
|
|
theme.workspace = true
|
|
|
|
theme_selector.workspace = true
|
2024-02-24 05:18:06 +03:00
|
|
|
time_format.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
time.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
vcs_menu.workspace = true
|
|
|
|
workspace.workspace = true
|
|
|
|
zed_actions.workspace = true
|
2022-09-27 13:17:00 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
call = { workspace = true, features = ["test-support"] }
|
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
notifications = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
pretty_assertions.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
tree-sitter-markdown.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|