45 lines
1.0 KiB
TOML
45 lines
1.0 KiB
TOML
[package]
|
|
name = "coop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[[bin]]
|
|
name = "coop"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ui = { path = "../ui" }
|
|
identity = { path = "../identity" }
|
|
theme = { path = "../theme" }
|
|
common = { path = "../common" }
|
|
global = { path = "../global" }
|
|
registry = { path = "../registry" }
|
|
settings = { path = "../settings" }
|
|
client_keys = { path = "../client_keys" }
|
|
auto_update = { path = "../auto_update" }
|
|
|
|
rust-i18n.workspace = true
|
|
i18n.workspace = true
|
|
gpui.workspace = true
|
|
gpui_tokio.workspace = true
|
|
reqwest_client.workspace = true
|
|
|
|
nostr-connect.workspace = true
|
|
nostr-sdk.workspace = true
|
|
nostr.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
|
|
futures.workspace = true
|
|
oneshot.workspace = true
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
|