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