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" }
12editor = { path = "../editor" }
13fuzzy = { path = "../fuzzy" }
14gpui = { path = "../gpui" }
15picker = { path = "../picker" }
16project = { path = "../project" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19util = { path = "../util" }
20workspace = { path = "../workspace" }
21anyhow = "1.0"
22futures = "0.3"
23log = "0.4"
24postage = { version = "0.4.1", features = ["futures-traits"] }
25serde = { version = "1", features = ["derive"] }
26
27[dev-dependencies]
28language = { path = "../language", features = ["test-support"] }
29project = { path = "../project", features = ["test-support"] }
30workspace = { path = "../workspace", features = ["test-support"] }