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