From 23c5aadae9b4dc53f00e58f9b0728048c45843a8 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 28 Aug 2024 22:27:19 +0100 Subject: chore: bump rust-nostr to v0.34.1 this fixed an efficency thing which meant we needed to increase a timeout during the update which is reverted int his commit. see: nostr:nevent1qvzqqqqx25pzpgqgmmc409hm4xsdd74sf68a2uyf9pwel4g9mfdg8l5244t6x4jdqy88wumn8ghj7mn0wvhxcmmv9uq32amnwvaz7tmjv4kxz7fwv3sk6atn9e5k7tcqyqg5lfwhruw4qjpnlzq0tct0swnuj9dvavz8gsq8npuyygznstw36882alm --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- test_utils/Cargo.toml | 2 +- test_utils/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 971cf6f..716eccf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1834,9 +1834,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" [[package]] name = "nostr" -version = "0.34.0" +version = "0.34.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5897e4142fcc33c4f1d58ad17f665e87dcba70de7e370c0bda1aa0fb73212c2a" +checksum = "a1c3c32439eef3ea4d9079b2a8f557992d27259c26527e43d4228dd321e43a77" dependencies = [ "aes 0.8.4", "base64 0.21.7", diff --git a/Cargo.toml b/Cargo.toml index 15b7cec..b25620a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ futures = "0.3.28" git2 = "0.18.1" indicatif = "0.17.7" keyring = "2.0.5" -nostr = "0.34.0" +nostr = "0.34.1" nostr-database = "0.34.0" nostr-sdk = "0.34.0" nostr-signer = "0.34.0" diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml index ff07b45..0c7ef09 100644 --- a/test_utils/Cargo.toml +++ b/test_utils/Cargo.toml @@ -10,7 +10,7 @@ dialoguer = "0.10.4" directories = "5.0.1" futures = "0.3.28" git2 = "0.18.1" -nostr = "0.34.0" +nostr = "0.34.1" nostr-database = "0.34.0" nostr-sdk = "0.34.0" nostr-sqlite = "0.34.0" diff --git a/test_utils/src/lib.rs b/test_utils/src/lib.rs index 12cadeb..deff86e 100644 --- a/test_utils/src/lib.rs +++ b/test_utils/src/lib.rs @@ -1370,7 +1370,7 @@ fn get_first_proposal_event_id() -> Result { vec!["root"], ), ], - nostr_sdk::EventSource::relays(Some(Duration::from_millis(1000))), + nostr_sdk::EventSource::relays(Some(Duration::from_millis(500))), ))?; Handle::current().block_on(client.disconnect())?; -- cgit v1.2.3