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]
12default = []
13stories = ["dep:story"]
14test-support = [
15 "call/test-support",
16 "client/test-support",
17 "collections/test-support",
18 "editor/test-support",
19 "gpui/test-support",
20 "project/test-support",
21 "settings/test-support",
22 "util/test-support",
23 "workspace/test-support",
24]
25
26[dependencies]
27auto_update = { path = "../auto_update" }
28db = { path = "../db" }
29call = { path = "../call" }
30client = { path = "../client" }
31channel = { path = "../channel" }
32clock = { path = "../clock" }
33collections = { path = "../collections" }
34# context_menu = { path = "../context_menu" }
35# drag_and_drop = { path = "../drag_and_drop" }
36editor = { path = "../editor" }
37feedback = { path = "../feedback" }
38fuzzy = { path = "../fuzzy" }
39gpui = { path = "../gpui" }
40language = { path = "../language" }
41menu = { path = "../menu" }
42notifications = { path = "../notifications" }
43rich_text = { path = "../rich_text" }
44picker = { path = "../picker" }
45project = { path = "../project" }
46recent_projects = { path = "../recent_projects" }
47rpc = { path = "../rpc" }
48settings = { path = "../settings" }
49story = { path = "../story", optional = true }
50feature_flags = { path = "../feature_flags"}
51theme = { path = "../theme" }
52theme_selector = { path = "../theme_selector" }
53vcs_menu = { path = "../vcs_menu" }
54ui = { path = "../ui" }
55util = { path = "../util" }
56workspace = { path = "../workspace" }
57zed_actions = { path = "../zed_actions"}
58
59anyhow.workspace = true
60futures.workspace = true
61lazy_static.workspace = true
62log.workspace = true
63schemars.workspace = true
64postage.workspace = true
65serde.workspace = true
66serde_derive.workspace = true
67serde_json.workspace = true
68time.workspace = true
69smallvec.workspace = true
70
71[dev-dependencies]
72call = { path = "../call", features = ["test-support"] }
73client = { path = "../client", features = ["test-support"] }
74collections = { path = "../collections", features = ["test-support"] }
75editor = { path = "../editor", features = ["test-support"] }
76gpui = { path = "../gpui", features = ["test-support"] }
77notifications = { path = "../notifications", features = ["test-support"] }
78project = { path = "../project", features = ["test-support"] }
79rpc = { path = "../rpc", features = ["test-support"] }
80settings = { path = "../settings", features = ["test-support"] }
81util = { path = "../util", features = ["test-support"] }
82workspace = { path = "../workspace", features = ["test-support"] }
83
84pretty_assertions.workspace = true
85tree-sitter-markdown.workspace = true