1[package]
2name = "collab_ui"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/collab_ui.rs"
9doctest = false
10
11[features]
12test-support = [
13 "call/test-support",
14 "client/test-support",
15 "collections/test-support",
16 "editor/test-support",
17 "gpui/test-support",
18 "project/test-support",
19 "settings/test-support",
20 "util/test-support",
21 "workspace/test-support",
22]
23
24[dependencies]
25auto_update = { path = "../auto_update" }
26db = { path = "../db" }
27call = { path = "../call" }
28client = { path = "../client" }
29clock = { path = "../clock" }
30collections = { path = "../collections" }
31context_menu = { path = "../context_menu" }
32editor = { path = "../editor" }
33feedback = { path = "../feedback" }
34fuzzy = { path = "../fuzzy" }
35gpui = { path = "../gpui" }
36menu = { path = "../menu" }
37picker = { path = "../picker" }
38project = { path = "../project" }
39recent_projects = {path = "../recent_projects"}
40settings = { path = "../settings" }
41staff_mode = {path = "../staff_mode"}
42theme = { path = "../theme" }
43theme_selector = { path = "../theme_selector" }
44vcs_menu = { path = "../vcs_menu" }
45util = { path = "../util" }
46workspace = { path = "../workspace" }
47zed-actions = {path = "../zed-actions"}
48
49anyhow.workspace = true
50futures.workspace = true
51log.workspace = true
52schemars.workspace = true
53postage.workspace = true
54serde.workspace = true
55serde_derive.workspace = true
56
57[dev-dependencies]
58call = { path = "../call", features = ["test-support"] }
59client = { path = "../client", features = ["test-support"] }
60collections = { path = "../collections", features = ["test-support"] }
61editor = { path = "../editor", features = ["test-support"] }
62gpui = { path = "../gpui", features = ["test-support"] }
63project = { path = "../project", features = ["test-support"] }
64settings = { path = "../settings", features = ["test-support"] }
65util = { path = "../util", features = ["test-support"] }
66workspace = { path = "../workspace", features = ["test-support"] }