* chore: refactor account registry * wip: nip4e * chore: rename account to device * feat: nip44 encryption with master signer * update * refactor * feat: unwrap with device keys * chore: improve handler * chore: fix rustls * chore: refactor onboarding * chore: fix compose * chore: fix send message * chore: fix forgot to request device * fix send message * chore: fix deadlock * chore: small fixes * chore: improve * fix * refactor * refactor * refactor * fix * add fetch request * save keys * fix * update * update * update
45 lines
985 B
TOML
45 lines
985 B
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
default-members = ["crates/app"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
coop = { path = "crates/*" }
|
|
|
|
# UI
|
|
gpui = { git = "https://github.com/zed-industries/zed" }
|
|
reqwest_client = { git = "https://github.com/zed-industries/zed" }
|
|
|
|
# Nostr
|
|
nostr-relay-builder = { git = "https://github.com/reyamir/nostr", branch = "feat/improve-nip17" }
|
|
nostr-connect = { git = "https://github.com/reyamir/nostr", branch = "feat/improve-nip17" }
|
|
nostr-sdk = { git = "https://github.com/reyamir/nostr", branch = "feat/improve-nip17", features = [
|
|
"lmdb",
|
|
"nip96",
|
|
"nip59",
|
|
"nip49",
|
|
"nip44",
|
|
"nip05",
|
|
] }
|
|
|
|
smol = "2"
|
|
oneshot = "0.1.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
dirs = "5.0"
|
|
itertools = "0.13.0"
|
|
futures = "0.3.30"
|
|
chrono = "0.4.38"
|
|
tracing = "0.1.40"
|
|
anyhow = "1.0.44"
|
|
smallvec = "1.14.0"
|
|
rust-embed = "8.5.0"
|
|
log = "0.4"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|