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