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" }
26call = { path = "../call" }
27client = { path = "../client" }
28clock = { path = "../clock" }
29collections = { path = "../collections" }
30context_menu = { path = "../context_menu" }
31editor = { path = "../editor" }
32feedback = { path = "../feedback" }
33fuzzy = { path = "../fuzzy" }
34gpui = { path = "../gpui" }
35menu = { path = "../menu" }
36picker = { path = "../picker" }
37project = { path = "../project" }
38recent_projects = {path = "../recent_projects"}
39settings = { path = "../settings" }
40theme = { path = "../theme" }
41theme_selector = { path = "../theme_selector" }
42vcs_menu = { path = "../vcs_menu" }
43util = { path = "../util" }
44workspace = { path = "../workspace" }
45zed-actions = {path = "../zed-actions"}
46
47
48anyhow.workspace = true
49futures.workspace = true
50log.workspace = true
51postage.workspace = true
52serde.workspace = true
53serde_derive.workspace = true
54
55[dev-dependencies]
56call = { path = "../call", features = ["test-support"] }
57client = { path = "../client", features = ["test-support"] }
58collections = { path = "../collections", features = ["test-support"] }
59editor = { path = "../editor", features = ["test-support"] }
60gpui = { path = "../gpui", features = ["test-support"] }
61project = { path = "../project", features = ["test-support"] }
62settings = { path = "../settings", features = ["test-support"] }
63util = { path = "../util", features = ["test-support"] }
64workspace = { path = "../workspace", features = ["test-support"] }