diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-06-28 17:12:21 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-06-28 17:12:21 +0100 |
| commit | 397080d94d8efdf2df95a1dc8dc82d4d7070028d (patch) | |
| tree | 41146a6de506f405df956351208ccc41bf7ad1ff /Cargo.toml | |
| parent | 80599528e2a613791130dc59bcf346e223b6a30d (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.toml | 10 |
1 files changed, 5 insertions, 5 deletions
| @@ -23,11 +23,11 @@ futures = "0.3.28" | |||
| 23 | git2 = "0.18.1" | 23 | git2 = "0.18.1" |
| 24 | indicatif = "0.17.7" | 24 | indicatif = "0.17.7" |
| 25 | keyring = "2.0.5" | 25 | keyring = "2.0.5" |
| 26 | nostr = "0.32.0" | 26 | nostr = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" } |
| 27 | nostr-database = "0.32.0" | 27 | nostr-database = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" } |
| 28 | nostr-sdk = "0.32.0" | 28 | nostr-sdk = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" } |
| 29 | nostr-signer = "0.32.0" | 29 | nostr-signer = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" } |
| 30 | nostr-sqlite = "0.32.0" | 30 | nostr-sqlite = { git = "https://github.com/DanConwayDev/nostr", branch= "v0.32-get-nip46-from-nip05-address" } |
| 31 | passwords = "3.1.13" | 31 | passwords = "3.1.13" |
| 32 | scrypt = "0.11.0" | 32 | scrypt = "0.11.0" |
| 33 | serde = { version = "1.0.181", features = ["derive"] } | 33 | serde = { version = "1.0.181", features = ["derive"] } |