1[package]
2name = "contacts_panel"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/contacts_panel.rs"
8doctest = false
9
10[dependencies]
11client = { path = "../client" }
12collections = { path = "../collections" }
13editor = { path = "../editor" }
14fuzzy = { path = "../fuzzy" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17picker = { path = "../picker" }
18project = { path = "../project" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22workspace = { path = "../workspace" }
23anyhow = "1.0"
24futures = "0.3"
25log = "0.4"
26postage = { version = "0.4.1", features = ["futures-traits"] }
27serde = { version = "1.0", features = ["derive", "rc"] }
28
29[dev-dependencies]
30language = { path = "../language", features = ["test-support"] }
31project = { path = "../project", features = ["test-support"] }
32workspace = { path = "../workspace", features = ["test-support"] }