1[package]
2name = "collab_ui2"
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]
25# auto_update = { path = "../auto_update" }
26db = { package = "db2", path = "../db2" }
27call = { package = "call2", path = "../call2" }
28client = { package = "client2", path = "../client2" }
29channel = { package = "channel2", path = "../channel2" }
30clock = { path = "../clock" }
31collections = { path = "../collections" }
32# context_menu = { path = "../context_menu" }
33# drag_and_drop = { path = "../drag_and_drop" }
34editor = { package="editor2", path = "../editor2" }
35#feedback = { path = "../feedback" }
36fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
37gpui = { package = "gpui2", path = "../gpui2" }
38language = { package = "language2", path = "../language2" }
39menu = { package = "menu2", path = "../menu2" }
40notifications = { package = "notifications2", path = "../notifications2" }
41rich_text = { package = "rich_text2", path = "../rich_text2" }
42picker = { package = "picker2", path = "../picker2" }
43project = { package = "project2", path = "../project2" }
44# recent_projects = { path = "../recent_projects" }
45rpc = { package ="rpc2", path = "../rpc2" }
46settings = { package = "settings2", path = "../settings2" }
47feature_flags = { package = "feature_flags2", path = "../feature_flags2"}
48theme = { package = "theme2", path = "../theme2" }
49# theme_selector = { path = "../theme_selector" }
50# vcs_menu = { path = "../vcs_menu" }
51ui = { package = "ui2", path = "../ui2" }
52util = { path = "../util" }
53workspace = { package = "workspace2", path = "../workspace2" }
54zed-actions = { package="zed_actions2", path = "../zed_actions2"}
55
56anyhow.workspace = true
57futures.workspace = true
58lazy_static.workspace = true
59log.workspace = true
60schemars.workspace = true
61postage.workspace = true
62serde.workspace = true
63serde_derive.workspace = true
64time.workspace = true
65smallvec.workspace = true
66
67[dev-dependencies]
68call = { package = "call2", path = "../call2", features = ["test-support"] }
69client = { package = "client2", path = "../client2", features = ["test-support"] }
70collections = { path = "../collections", features = ["test-support"] }
71editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
72gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
73notifications = { package = "notifications2", path = "../notifications2", features = ["test-support"] }
74project = { package = "project2", path = "../project2", features = ["test-support"] }
75rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
76settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
77util = { path = "../util", features = ["test-support"] }
78workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
79
80pretty_assertions.workspace = true
81tree-sitter-markdown.workspace = true