upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-06-28 17:12:21 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-06-28 17:12:21 +0100
commit397080d94d8efdf2df95a1dc8dc82d4d7070028d (patch)
tree41146a6de506f405df956351208ccc41bf7ad1ff /Cargo.toml
parent80599528e2a613791130dc59bcf346e223b6a30d (diff)
feat(login): login with nostr address via nip46
currently using patched version of rust-nostr with function to fetch nip46 relays from nip05 providers. this patch has been merged so it will make it into the next rust-nostr release.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d41d870..a0e2d00 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,11 +23,11 @@ futures = "0.3.28"
23git2 = "0.18.1" 23git2 = "0.18.1"
24indicatif = "0.17.7" 24indicatif = "0.17.7"
25keyring = "2.0.5" 25keyring = "2.0.5"
26nostr = "0.32.0" 26nostr = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" }
27nostr-database = "0.32.0" 27nostr-database = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" }
28nostr-sdk = "0.32.0" 28nostr-sdk = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" }
29nostr-signer = "0.32.0" 29nostr-signer = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" }
30nostr-sqlite = "0.32.0" 30nostr-sqlite = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" }
31passwords = "3.1.13" 31passwords = "3.1.13"
32scrypt = "0.11.0" 32scrypt = "0.11.0"
33serde = { version = "1.0.181", features = ["derive"] } 33serde = { version = "1.0.181", features = ["derive"] }