diff options
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | test_utils/Cargo.toml | 2 | ||||
| -rw-r--r-- | test_utils/src/lib.rs | 2 |
4 files changed, 5 insertions, 5 deletions
| @@ -1834,9 +1834,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" | |||
| 1834 | 1834 | ||
| 1835 | [[package]] | 1835 | [[package]] |
| 1836 | name = "nostr" | 1836 | name = "nostr" |
| 1837 | version = "0.34.0" | 1837 | version = "0.34.1" |
| 1838 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1838 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1839 | checksum = "5897e4142fcc33c4f1d58ad17f665e87dcba70de7e370c0bda1aa0fb73212c2a" | 1839 | checksum = "a1c3c32439eef3ea4d9079b2a8f557992d27259c26527e43d4228dd321e43a77" |
| 1840 | dependencies = [ | 1840 | dependencies = [ |
| 1841 | "aes 0.8.4", | 1841 | "aes 0.8.4", |
| 1842 | "base64 0.21.7", | 1842 | "base64 0.21.7", |
| @@ -24,7 +24,7 @@ futures = "0.3.28" | |||
| 24 | git2 = "0.18.1" | 24 | git2 = "0.18.1" |
| 25 | indicatif = "0.17.7" | 25 | indicatif = "0.17.7" |
| 26 | keyring = "2.0.5" | 26 | keyring = "2.0.5" |
| 27 | nostr = "0.34.0" | 27 | nostr = "0.34.1" |
| 28 | nostr-database = "0.34.0" | 28 | nostr-database = "0.34.0" |
| 29 | nostr-sdk = "0.34.0" | 29 | nostr-sdk = "0.34.0" |
| 30 | nostr-signer = "0.34.0" | 30 | 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" | |||
| 10 | directories = "5.0.1" | 10 | directories = "5.0.1" |
| 11 | futures = "0.3.28" | 11 | futures = "0.3.28" |
| 12 | git2 = "0.18.1" | 12 | git2 = "0.18.1" |
| 13 | nostr = "0.34.0" | 13 | nostr = "0.34.1" |
| 14 | nostr-database = "0.34.0" | 14 | nostr-database = "0.34.0" |
| 15 | nostr-sdk = "0.34.0" | 15 | nostr-sdk = "0.34.0" |
| 16 | nostr-sqlite = "0.34.0" | 16 | 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<nostr::EventId> { | |||
| 1370 | vec!["root"], | 1370 | vec!["root"], |
| 1371 | ), | 1371 | ), |
| 1372 | ], | 1372 | ], |
| 1373 | nostr_sdk::EventSource::relays(Some(Duration::from_millis(1000))), | 1373 | nostr_sdk::EventSource::relays(Some(Duration::from_millis(500))), |
| 1374 | ))?; | 1374 | ))?; |
| 1375 | Handle::current().block_on(client.disconnect())?; | 1375 | Handle::current().block_on(client.disconnect())?; |
| 1376 | 1376 | ||