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
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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",
|
2024-07-23 22:01:05 +00:00
|
|
|
"http_client/test-support",
|
2022-09-27 10:17:00 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
call.workspace = true
|
|
|
|
channel.workspace = true
|
2024-07-18 11:42:18 +00:00
|
|
|
chrono.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
client.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-03-07 02:18:29 +00:00
|
|
|
emojis.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fuzzy.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
|
|
|
menu.workspace = true
|
|
|
|
notifications.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
parking_lot.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
picker.workspace = true
|
|
|
|
project.workspace = true
|
2024-05-03 08:48:35 +00:00
|
|
|
release_channel.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
rich_text.workspace = true
|
|
|
|
rpc.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
smallvec.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
story = { workspace = true, optional = true }
|
|
|
|
theme.workspace = true
|
2024-02-24 02:18:06 +00:00
|
|
|
time_format.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
time.workspace = true
|
2024-06-27 23:14:13 +00:00
|
|
|
title_bar.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
vcs_menu.workspace = true
|
|
|
|
workspace.workspace = true
|
2022-09-27 10:17:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00: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 02:41:29 +00:00
|
|
|
pretty_assertions.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
2024-07-24 20:38:21 +00:00
|
|
|
tree-sitter-md.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-07-23 22:01:05 +00:00
|
|
|
http_client = { workspace = true, features = ["test-support"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|