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