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