mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
33 lines
919 B
TOML
33 lines
919 B
TOML
|
[package]
|
||
|
name = "contacts_status_item"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[lib]
|
||
|
path = "src/contacts_status_item.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
client = { path = "../client" }
|
||
|
collections = { path = "../collections" }
|
||
|
editor = { path = "../editor" }
|
||
|
fuzzy = { path = "../fuzzy" }
|
||
|
gpui = { path = "../gpui" }
|
||
|
menu = { path = "../menu" }
|
||
|
picker = { path = "../picker" }
|
||
|
project = { path = "../project" }
|
||
|
settings = { path = "../settings" }
|
||
|
theme = { path = "../theme" }
|
||
|
util = { path = "../util" }
|
||
|
workspace = { path = "../workspace" }
|
||
|
anyhow = "1.0"
|
||
|
futures = "0.3"
|
||
|
log = "0.4"
|
||
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
||
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
language = { path = "../language", features = ["test-support"] }
|
||
|
project = { path = "../project", features = ["test-support"] }
|
||
|
workspace = { path = "../workspace", features = ["test-support"] }
|