diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-04-18 07:39:27 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-06-11 12:33:09 +0100 |
| commit | 7c6a5ab4c5e7a81c7442061029b9230748a6639d (patch) | |
| tree | aea6567080857b629c826c7921314a6ce323a6db /Cargo.toml | |
| parent | 3b4f0b0eee124133b641d6770704c368712f3dff (diff) | |
refactor: bump rust-nostr to v0.30 use ncryptsec
bump nostr and nostr-sdk packages and also in test_utils
remove custom ncryptsec implementation and use the newly
added implementation nip49 version in rust-nostr
note a patched v0.30 is used so that log_n is exposed so that
user can be warned it might take a few seconds to decrypt.
this has now been merged into the library.
note that this will no longer decrypt existing ncryptsec values as
it is uses a longer string. this should therefore be bundled with
the upcoming change to storing nsec and ncryptsec in git config.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -23,8 +23,8 @@ 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.29" | 26 | nostr = { git = "https://github.com/DanConwayDev/nostr", branch="expose-nip49-log-n" } |
| 27 | nostr-sdk = "0.29" | 27 | nostr-sdk = { git = "https://github.com/DanConwayDev/nostr", branch="expose-nip49-log-n" } |
| 28 | passwords = "3.1.13" | 28 | passwords = "3.1.13" |
| 29 | scrypt = "0.11.0" | 29 | scrypt = "0.11.0" |
| 30 | serde = { version = "1.0.181", features = ["derive"] } | 30 | serde = { version = "1.0.181", features = ["derive"] } |