2021-10-05 12:36:38 +00:00
|
|
|
[package]
|
2021-11-26 18:13:05 +00:00
|
|
|
name = "contacts_panel"
|
2021-10-05 12:36:38 +00:00
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2021-10-05 12:36:38 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/contacts_panel.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 12:36:38 +00:00
|
|
|
[dependencies]
|
|
|
|
client = { path = "../client" }
|
2022-06-02 19:46:26 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-05-05 16:24:21 +00:00
|
|
|
editor = { path = "../editor" }
|
2022-05-05 22:04:50 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2021-10-05 12:36:38 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-05-26 14:36:30 +00:00
|
|
|
menu = { path = "../menu" }
|
2022-05-10 14:43:51 +00:00
|
|
|
picker = { path = "../picker" }
|
2022-05-13 00:24:00 +00:00
|
|
|
project = { path = "../project" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2021-10-05 12:36:38 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-05-05 21:14:44 +00:00
|
|
|
util = { path = "../util" }
|
2021-10-05 12:36:38 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-05-20 15:33:09 +00:00
|
|
|
anyhow = "1.0"
|
2022-05-05 22:04:50 +00:00
|
|
|
futures = "0.3"
|
2022-05-09 18:48:07 +00:00
|
|
|
log = "0.4"
|
2021-10-05 12:36:38 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-11 04:45:49 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|