Cargo.toml

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