* add text * fix avatar is not show * refactor chats * improve rich text * add benchmark for text * update
37 lines
764 B
TOML
37 lines
764 B
TOML
[package]
|
|
name = "coop"
|
|
version = "0.1.4"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[[bin]]
|
|
name = "coop"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ui = { path = "../ui" }
|
|
common = { path = "../common" }
|
|
global = { path = "../global" }
|
|
chats = { path = "../chats" }
|
|
account = { path = "../account" }
|
|
|
|
gpui.workspace = true
|
|
reqwest_client.workspace = true
|
|
|
|
nostr-connect.workspace = true
|
|
nostr-sdk.workspace = true
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
itertools.workspace = true
|
|
dirs.workspace = true
|
|
rust-embed.workspace = true
|
|
log.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
oneshot.workspace = true
|
|
|
|
rustls = "0.23.23"
|
|
futures = "0.3"
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
|