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