Cargo.toml

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