Cargo.toml

 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]
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]
25call = { path = "../call" }
26client = { path = "../client" }
27clock = { path = "../clock" }
28collections = { path = "../collections" }
29editor = { path = "../editor" }
30fuzzy = { path = "../fuzzy" }
31gpui = { path = "../gpui" }
32menu = { path = "../menu" }
33picker = { path = "../picker" }
34project = { path = "../project" }
35settings = { path = "../settings" }
36theme = { path = "../theme" }
37util = { path = "../util" }
38workspace = { path = "../workspace" }
39anyhow = "1.0"
40futures = "0.3"
41log = "0.4"
42postage = { version = "0.4.1", features = ["futures-traits"] }
43serde = { version = "1.0", features = ["derive", "rc"] }
44
45[dev-dependencies]
46call = { path = "../call", features = ["test-support"] }
47client = { path = "../client", features = ["test-support"] }
48collections = { path = "../collections", features = ["test-support"] }
49editor = { path = "../editor", features = ["test-support"] }
50gpui = { path = "../gpui", features = ["test-support"] }
51project = { path = "../project", features = ["test-support"] }
52settings = { path = "../settings", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }
54workspace = { path = "../workspace", features = ["test-support"] }