* update deps * clean up * add account crate * add person crate * add chat and chat ui crates * . * clean up the ui crate * . * .
27 lines
601 B
TOML
27 lines
601 B
TOML
[package]
|
|
name = "chat"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
states = { path = "../states" }
|
|
account = { path = "../account" }
|
|
person = { path = "../person" }
|
|
settings = { path = "../settings" }
|
|
|
|
gpui.workspace = true
|
|
nostr.workspace = true
|
|
nostr-sdk.workspace = true
|
|
anyhow.workspace = true
|
|
itertools.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
log.workspace = true
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
fuzzy-matcher = "0.3.7"
|