1[package]
2name = "collab_ui"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/collab_ui.rs"
8doctest = false
9
10[features]
11test-support = [
12 "call/test-support",
13 "client/test-support",
14 "collections/test-support",
15 "editor/test-support",
16 "gpui/test-support",
17 "project/test-support",
18 "settings/test-support",
19 "util/test-support",
20 "workspace/test-support",
21]
22
23[dependencies]
24call = { path = "../call" }
25client = { path = "../client" }
26clock = { path = "../clock" }
27collections = { path = "../collections" }
28editor = { path = "../editor" }
29fuzzy = { path = "../fuzzy" }
30gpui = { path = "../gpui" }
31menu = { path = "../menu" }
32picker = { path = "../picker" }
33project = { path = "../project" }
34settings = { path = "../settings" }
35theme = { path = "../theme" }
36util = { path = "../util" }
37workspace = { path = "../workspace" }
38anyhow = "1.0"
39futures = "0.3"
40log = "0.4"
41postage = { version = "0.4.1", features = ["futures-traits"] }
42serde = { version = "1.0", features = ["derive", "rc"] }
43
44[dev-dependencies]
45call = { path = "../call", features = ["test-support"] }
46client = { path = "../client", features = ["test-support"] }
47collections = { path = "../collections", features = ["test-support"] }
48editor = { path = "../editor", features = ["test-support"] }
49gpui = { path = "../gpui", features = ["test-support"] }
50project = { path = "../project", features = ["test-support"] }
51settings = { path = "../settings", features = ["test-support"] }
52util = { path = "../util", features = ["test-support"] }
53workspace = { path = "../workspace", features = ["test-support"] }