Cargo.toml

 1[package]
 2name = "collab_ui"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/collab_ui.rs"
10doctest = false
11
12[features]
13default = []
14stories = ["dep:story"]
15test-support = [
16    "call/test-support",
17    "client/test-support",
18    "collections/test-support",
19    "editor/test-support",
20    "gpui/test-support",
21    "project/test-support",
22    "settings/test-support",
23    "util/test-support",
24    "workspace/test-support",
25]
26
27[dependencies]
28auto_update = { path = "../auto_update" }
29db = { path = "../db" }
30call = { path = "../call" }
31client = { path = "../client" }
32channel = { path = "../channel" }
33clock = { path = "../clock" }
34collections = { path = "../collections" }
35# context_menu = { path = "../context_menu" }
36# drag_and_drop = { path = "../drag_and_drop" }
37editor = { path = "../editor" }
38feedback = { path = "../feedback" }
39fuzzy = {  path = "../fuzzy" }
40gpui = { path = "../gpui" }
41language = { path = "../language" }
42menu = {  path = "../menu" }
43notifications = { path = "../notifications" }
44rich_text = { path = "../rich_text" }
45picker = { path = "../picker" }
46project = { path = "../project" }
47recent_projects = { path = "../recent_projects" }
48rpc = { path = "../rpc" }
49settings = { path = "../settings" }
50story = { path = "../story", optional = true }
51feature_flags = { path = "../feature_flags"}
52theme = { path = "../theme" }
53theme_selector = { path = "../theme_selector" }
54vcs_menu = { path = "../vcs_menu" }
55ui = { path = "../ui" }
56util = { path = "../util" }
57workspace = { path = "../workspace" }
58zed_actions = { path = "../zed_actions"}
59
60anyhow.workspace = true
61futures.workspace = true
62lazy_static.workspace = true
63log.workspace = true
64parking_lot.workspace = true
65schemars.workspace = true
66postage.workspace = true
67serde.workspace = true
68serde_derive.workspace = true
69serde_json.workspace = true
70time.workspace = true
71smallvec.workspace = true
72
73[dev-dependencies]
74call = { path = "../call", features = ["test-support"] }
75client = { path = "../client", features = ["test-support"] }
76collections = { path = "../collections", features = ["test-support"] }
77editor = { path = "../editor", features = ["test-support"] }
78gpui = { path = "../gpui", features = ["test-support"] }
79notifications = { path = "../notifications", features = ["test-support"] }
80project = { path = "../project", features = ["test-support"] }
81rpc = { path = "../rpc", features = ["test-support"] }
82settings = { path = "../settings", features = ["test-support"] }
83util = { path = "../util", features = ["test-support"] }
84workspace = { path = "../workspace", features = ["test-support"] }
85
86pretty_assertions.workspace = true
87tree-sitter-markdown.workspace = true