diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-04 07:04:03 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-04 07:04:03 +0000 |
| commit | 5f053c46622ab21275d5ec881fd509cc0808cf8f (patch) | |
| tree | 4936e9475a0af24a9e921e4cc59939ed0d1a84ed /grasp-audit/Cargo.lock | |
| parent | 31ed54dab458cb3c0a6472f3e508ccdc7a9b4d79 (diff) | |
Upgrade to nostr-sdk 0.43 (from 0.35)
Major upgrade of nostr-sdk dependency from 0.35 to 0.43 (8 minor versions).
All breaking API changes fixed, all tests passing.
Breaking Changes Fixed:
- EventBuilder::new() - Removed tags parameter, use .tags() method
- EventBuilder::to_event() → sign_with_keys() - Renamed signing method
- Client::new() - Takes ownership of keys (clone instead of reference)
- Relay::is_connected() - No longer async
- Client::get_events_of() → fetch_events() - Complete API redesign
- EventSource - Removed entirely
- Filter::custom_tag() - Takes single value instead of array
- Client::send_event() - Takes reference instead of ownership
- Multiple filters - Loop and combine instead of vec parameter
- Events type - New return type, convert with .into_iter().collect()
Files Modified:
- Cargo.toml: nostr-sdk = "0.43"
- src/audit.rs: EventBuilder API changes
- src/client.rs: Client, query, and filter API changes
- src/specs/nip01_smoke.rs: Event building changes
Documentation:
- NOSTR_SDK_0.43_UPGRADE.md: Comprehensive upgrade guide
- COMPILATION_FIXES.md: Marked as obsolete (0.35 fixes)
- SESSION_2025_11_04_SUMMARY.md: Session summary
- NEXT_SESSION_QUICKSTART.md: Updated status
Test Results:
✅ All 12 unit tests passing
✅ CLI builds successfully
✅ Examples build successfully
✅ Clean build with no warnings
Benefits:
- Latest stable nostr-sdk version
- Cleaner, more intuitive APIs
- Better performance (reference passing, sync operations)
- 8 versions of bug fixes and improvements
- Future compatibility
Diffstat (limited to 'grasp-audit/Cargo.lock')
| -rw-r--r-- | grasp-audit/Cargo.lock | 587 |
1 files changed, 31 insertions, 556 deletions
diff --git a/grasp-audit/Cargo.lock b/grasp-audit/Cargo.lock index cffa543..63cfb6f 100644 --- a/grasp-audit/Cargo.lock +++ b/grasp-audit/Cargo.lock | |||
| @@ -13,17 +13,6 @@ dependencies = [ | |||
| 13 | ] | 13 | ] |
| 14 | 14 | ||
| 15 | [[package]] | 15 | [[package]] |
| 16 | name = "aes" | ||
| 17 | version = "0.8.4" | ||
| 18 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 19 | checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" | ||
| 20 | dependencies = [ | ||
| 21 | "cfg-if", | ||
| 22 | "cipher", | ||
| 23 | "cpufeatures", | ||
| 24 | ] | ||
| 25 | |||
| 26 | [[package]] | ||
| 27 | name = "aho-corasick" | 16 | name = "aho-corasick" |
| 28 | version = "1.1.4" | 17 | version = "1.1.4" |
| 29 | source = "registry+https://github.com/rust-lang/crates.io-index" | 18 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -33,12 +22,6 @@ dependencies = [ | |||
| 33 | ] | 22 | ] |
| 34 | 23 | ||
| 35 | [[package]] | 24 | [[package]] |
| 36 | name = "allocator-api2" | ||
| 37 | version = "0.2.21" | ||
| 38 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 39 | checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" | ||
| 40 | |||
| 41 | [[package]] | ||
| 42 | name = "android_system_properties" | 25 | name = "android_system_properties" |
| 43 | version = "0.1.5" | 26 | version = "0.1.5" |
| 44 | source = "registry+https://github.com/rust-lang/crates.io-index" | 27 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -132,21 +115,10 @@ dependencies = [ | |||
| 132 | ] | 115 | ] |
| 133 | 116 | ||
| 134 | [[package]] | 117 | [[package]] |
| 135 | name = "async-trait" | ||
| 136 | version = "0.1.89" | ||
| 137 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 138 | checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" | ||
| 139 | dependencies = [ | ||
| 140 | "proc-macro2", | ||
| 141 | "quote", | ||
| 142 | "syn", | ||
| 143 | ] | ||
| 144 | |||
| 145 | [[package]] | ||
| 146 | name = "async-utility" | 118 | name = "async-utility" |
| 147 | version = "0.2.0" | 119 | version = "0.3.1" |
| 148 | source = "registry+https://github.com/rust-lang/crates.io-index" | 120 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 149 | checksum = "a349201d80b4aa18d17a34a182bdd7f8ddf845e9e57d2ea130a12e10ef1e3a47" | 121 | checksum = "a34a3b57207a7a1007832416c3e4862378c8451b4e8e093e436f48c2d3d2c151" |
| 150 | dependencies = [ | 122 | dependencies = [ |
| 151 | "futures-util", | 123 | "futures-util", |
| 152 | "gloo-timers", | 124 | "gloo-timers", |
| @@ -156,15 +128,14 @@ dependencies = [ | |||
| 156 | 128 | ||
| 157 | [[package]] | 129 | [[package]] |
| 158 | name = "async-wsocket" | 130 | name = "async-wsocket" |
| 159 | version = "0.9.0" | 131 | version = "0.13.1" |
| 160 | source = "registry+https://github.com/rust-lang/crates.io-index" | 132 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 161 | checksum = "5c0984bead67f20366bc8dd46018dfbe189b67eeefb0e5b86b9eade18d7c3c3b" | 133 | checksum = "9a7d8c7d34a225ba919dd9ba44d4b9106d20142da545e086be8ae21d1897e043" |
| 162 | dependencies = [ | 134 | dependencies = [ |
| 163 | "async-utility", | 135 | "async-utility", |
| 164 | "futures", | 136 | "futures", |
| 165 | "futures-util", | 137 | "futures-util", |
| 166 | "js-sys", | 138 | "js-sys", |
| 167 | "thiserror 1.0.69", | ||
| 168 | "tokio", | 139 | "tokio", |
| 169 | "tokio-rustls", | 140 | "tokio-rustls", |
| 170 | "tokio-socks", | 141 | "tokio-socks", |
| @@ -176,18 +147,9 @@ dependencies = [ | |||
| 176 | 147 | ||
| 177 | [[package]] | 148 | [[package]] |
| 178 | name = "atomic-destructor" | 149 | name = "atomic-destructor" |
| 179 | version = "0.2.0" | 150 | version = "0.3.0" |
| 180 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 181 | checksum = "7d919cb60ba95c87ba42777e9e246c4e8d658057299b437b7512531ce0a09a23" | ||
| 182 | dependencies = [ | ||
| 183 | "tracing", | ||
| 184 | ] | ||
| 185 | |||
| 186 | [[package]] | ||
| 187 | name = "atomic-waker" | ||
| 188 | version = "1.1.2" | ||
| 189 | source = "registry+https://github.com/rust-lang/crates.io-index" | 151 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 190 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" | 152 | checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4" |
| 191 | 153 | ||
| 192 | [[package]] | 154 | [[package]] |
| 193 | name = "autocfg" | 155 | name = "autocfg" |
| @@ -196,16 +158,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 196 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | 158 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" |
| 197 | 159 | ||
| 198 | [[package]] | 160 | [[package]] |
| 199 | name = "base58ck" | ||
| 200 | version = "0.1.0" | ||
| 201 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 202 | checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f" | ||
| 203 | dependencies = [ | ||
| 204 | "bitcoin-internals 0.3.0", | ||
| 205 | "bitcoin_hashes 0.14.0", | ||
| 206 | ] | ||
| 207 | |||
| 208 | [[package]] | ||
| 209 | name = "base64" | 161 | name = "base64" |
| 210 | version = "0.22.1" | 162 | version = "0.22.1" |
| 211 | source = "registry+https://github.com/rust-lang/crates.io-index" | 163 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -235,61 +187,24 @@ dependencies = [ | |||
| 235 | ] | 187 | ] |
| 236 | 188 | ||
| 237 | [[package]] | 189 | [[package]] |
| 238 | name = "bitcoin" | ||
| 239 | version = "0.32.7" | ||
| 240 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 241 | checksum = "0fda569d741b895131a88ee5589a467e73e9c4718e958ac9308e4f7dc44b6945" | ||
| 242 | dependencies = [ | ||
| 243 | "base58ck", | ||
| 244 | "bech32", | ||
| 245 | "bitcoin-internals 0.3.0", | ||
| 246 | "bitcoin-io", | ||
| 247 | "bitcoin-units", | ||
| 248 | "bitcoin_hashes 0.14.0", | ||
| 249 | "hex-conservative 0.2.1", | ||
| 250 | "hex_lit", | ||
| 251 | "secp256k1", | ||
| 252 | "serde", | ||
| 253 | ] | ||
| 254 | |||
| 255 | [[package]] | ||
| 256 | name = "bitcoin-internals" | 190 | name = "bitcoin-internals" |
| 257 | version = "0.2.0" | 191 | version = "0.2.0" |
| 258 | source = "registry+https://github.com/rust-lang/crates.io-index" | 192 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 259 | checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" | 193 | checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" |
| 260 | 194 | ||
| 261 | [[package]] | 195 | [[package]] |
| 262 | name = "bitcoin-internals" | ||
| 263 | version = "0.3.0" | ||
| 264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 265 | checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" | ||
| 266 | dependencies = [ | ||
| 267 | "serde", | ||
| 268 | ] | ||
| 269 | |||
| 270 | [[package]] | ||
| 271 | name = "bitcoin-io" | 196 | name = "bitcoin-io" |
| 272 | version = "0.1.3" | 197 | version = "0.1.3" |
| 273 | source = "registry+https://github.com/rust-lang/crates.io-index" | 198 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 274 | checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" | 199 | checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" |
| 275 | 200 | ||
| 276 | [[package]] | 201 | [[package]] |
| 277 | name = "bitcoin-units" | ||
| 278 | version = "0.1.2" | ||
| 279 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 280 | checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2" | ||
| 281 | dependencies = [ | ||
| 282 | "bitcoin-internals 0.3.0", | ||
| 283 | "serde", | ||
| 284 | ] | ||
| 285 | |||
| 286 | [[package]] | ||
| 287 | name = "bitcoin_hashes" | 202 | name = "bitcoin_hashes" |
| 288 | version = "0.13.0" | 203 | version = "0.13.0" |
| 289 | source = "registry+https://github.com/rust-lang/crates.io-index" | 204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 290 | checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" | 205 | checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" |
| 291 | dependencies = [ | 206 | dependencies = [ |
| 292 | "bitcoin-internals 0.2.0", | 207 | "bitcoin-internals", |
| 293 | "hex-conservative 0.1.2", | 208 | "hex-conservative 0.1.2", |
| 294 | ] | 209 | ] |
| 295 | 210 | ||
| @@ -335,12 +250,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 335 | checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" | 250 | checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" |
| 336 | 251 | ||
| 337 | [[package]] | 252 | [[package]] |
| 338 | name = "byteorder" | ||
| 339 | version = "1.5.0" | ||
| 340 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 341 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | ||
| 342 | |||
| 343 | [[package]] | ||
| 344 | name = "bytes" | 253 | name = "bytes" |
| 345 | version = "1.10.1" | 254 | version = "1.10.1" |
| 346 | source = "registry+https://github.com/rust-lang/crates.io-index" | 255 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -372,12 +281,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 372 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" | 281 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" |
| 373 | 282 | ||
| 374 | [[package]] | 283 | [[package]] |
| 375 | name = "cfg_aliases" | ||
| 376 | version = "0.2.1" | ||
| 377 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 378 | checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" | ||
| 379 | |||
| 380 | [[package]] | ||
| 381 | name = "chacha20" | 284 | name = "chacha20" |
| 382 | version = "0.9.1" | 285 | version = "0.9.1" |
| 383 | source = "registry+https://github.com/rust-lang/crates.io-index" | 286 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -532,12 +435,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 532 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" | 435 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" |
| 533 | 436 | ||
| 534 | [[package]] | 437 | [[package]] |
| 535 | name = "equivalent" | ||
| 536 | version = "1.0.2" | ||
| 537 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 538 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | ||
| 539 | |||
| 540 | [[package]] | ||
| 541 | name = "find-msvc-tools" | 438 | name = "find-msvc-tools" |
| 542 | version = "0.1.4" | 439 | version = "0.1.4" |
| 543 | source = "registry+https://github.com/rust-lang/crates.io-index" | 440 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -550,12 +447,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 550 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | 447 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" |
| 551 | 448 | ||
| 552 | [[package]] | 449 | [[package]] |
| 553 | name = "foldhash" | ||
| 554 | version = "0.1.5" | ||
| 555 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 556 | checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" | ||
| 557 | |||
| 558 | [[package]] | ||
| 559 | name = "form_urlencoded" | 450 | name = "form_urlencoded" |
| 560 | version = "1.2.2" | 451 | version = "1.2.2" |
| 561 | source = "registry+https://github.com/rust-lang/crates.io-index" | 452 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -683,18 +574,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 683 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" | 574 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" |
| 684 | dependencies = [ | 575 | dependencies = [ |
| 685 | "cfg-if", | 576 | "cfg-if", |
| 686 | "js-sys", | ||
| 687 | "libc", | 577 | "libc", |
| 688 | "r-efi", | 578 | "r-efi", |
| 689 | "wasip2", | 579 | "wasip2", |
| 690 | "wasm-bindgen", | ||
| 691 | ] | 580 | ] |
| 692 | 581 | ||
| 693 | [[package]] | 582 | [[package]] |
| 694 | name = "gloo-timers" | 583 | name = "gloo-timers" |
| 695 | version = "0.2.6" | 584 | version = "0.3.0" |
| 696 | source = "registry+https://github.com/rust-lang/crates.io-index" | 585 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 697 | checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" | 586 | checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" |
| 698 | dependencies = [ | 587 | dependencies = [ |
| 699 | "futures-channel", | 588 | "futures-channel", |
| 700 | "futures-core", | 589 | "futures-core", |
| @@ -722,23 +611,6 @@ dependencies = [ | |||
| 722 | ] | 611 | ] |
| 723 | 612 | ||
| 724 | [[package]] | 613 | [[package]] |
| 725 | name = "hashbrown" | ||
| 726 | version = "0.15.5" | ||
| 727 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 728 | checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" | ||
| 729 | dependencies = [ | ||
| 730 | "allocator-api2", | ||
| 731 | "equivalent", | ||
| 732 | "foldhash", | ||
| 733 | ] | ||
| 734 | |||
| 735 | [[package]] | ||
| 736 | name = "hashbrown" | ||
| 737 | version = "0.16.0" | ||
| 738 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 739 | checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" | ||
| 740 | |||
| 741 | [[package]] | ||
| 742 | name = "heck" | 614 | name = "heck" |
| 743 | version = "0.5.0" | 615 | version = "0.5.0" |
| 744 | source = "registry+https://github.com/rust-lang/crates.io-index" | 616 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -760,12 +632,6 @@ dependencies = [ | |||
| 760 | ] | 632 | ] |
| 761 | 633 | ||
| 762 | [[package]] | 634 | [[package]] |
| 763 | name = "hex_lit" | ||
| 764 | version = "0.1.1" | ||
| 765 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 766 | checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd" | ||
| 767 | |||
| 768 | [[package]] | ||
| 769 | name = "hmac" | 635 | name = "hmac" |
| 770 | version = "0.12.1" | 636 | version = "0.12.1" |
| 771 | source = "registry+https://github.com/rust-lang/crates.io-index" | 637 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -786,97 +652,12 @@ dependencies = [ | |||
| 786 | ] | 652 | ] |
| 787 | 653 | ||
| 788 | [[package]] | 654 | [[package]] |
| 789 | name = "http-body" | ||
| 790 | version = "1.0.1" | ||
| 791 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 792 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" | ||
| 793 | dependencies = [ | ||
| 794 | "bytes", | ||
| 795 | "http", | ||
| 796 | ] | ||
| 797 | |||
| 798 | [[package]] | ||
| 799 | name = "http-body-util" | ||
| 800 | version = "0.1.3" | ||
| 801 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 802 | checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" | ||
| 803 | dependencies = [ | ||
| 804 | "bytes", | ||
| 805 | "futures-core", | ||
| 806 | "http", | ||
| 807 | "http-body", | ||
| 808 | "pin-project-lite", | ||
| 809 | ] | ||
| 810 | |||
| 811 | [[package]] | ||
| 812 | name = "httparse" | 655 | name = "httparse" |
| 813 | version = "1.10.1" | 656 | version = "1.10.1" |
| 814 | source = "registry+https://github.com/rust-lang/crates.io-index" | 657 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 815 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" | 658 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" |
| 816 | 659 | ||
| 817 | [[package]] | 660 | [[package]] |
| 818 | name = "hyper" | ||
| 819 | version = "1.7.0" | ||
| 820 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 821 | checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" | ||
| 822 | dependencies = [ | ||
| 823 | "atomic-waker", | ||
| 824 | "bytes", | ||
| 825 | "futures-channel", | ||
| 826 | "futures-core", | ||
| 827 | "http", | ||
| 828 | "http-body", | ||
| 829 | "httparse", | ||
| 830 | "itoa", | ||
| 831 | "pin-project-lite", | ||
| 832 | "pin-utils", | ||
| 833 | "smallvec", | ||
| 834 | "tokio", | ||
| 835 | "want", | ||
| 836 | ] | ||
| 837 | |||
| 838 | [[package]] | ||
| 839 | name = "hyper-rustls" | ||
| 840 | version = "0.27.7" | ||
| 841 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 842 | checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" | ||
| 843 | dependencies = [ | ||
| 844 | "http", | ||
| 845 | "hyper", | ||
| 846 | "hyper-util", | ||
| 847 | "rustls", | ||
| 848 | "rustls-pki-types", | ||
| 849 | "tokio", | ||
| 850 | "tokio-rustls", | ||
| 851 | "tower-service", | ||
| 852 | "webpki-roots 1.0.4", | ||
| 853 | ] | ||
| 854 | |||
| 855 | [[package]] | ||
| 856 | name = "hyper-util" | ||
| 857 | version = "0.1.17" | ||
| 858 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 859 | checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" | ||
| 860 | dependencies = [ | ||
| 861 | "base64", | ||
| 862 | "bytes", | ||
| 863 | "futures-channel", | ||
| 864 | "futures-core", | ||
| 865 | "futures-util", | ||
| 866 | "http", | ||
| 867 | "http-body", | ||
| 868 | "hyper", | ||
| 869 | "ipnet", | ||
| 870 | "libc", | ||
| 871 | "percent-encoding", | ||
| 872 | "pin-project-lite", | ||
| 873 | "socket2", | ||
| 874 | "tokio", | ||
| 875 | "tower-service", | ||
| 876 | "tracing", | ||
| 877 | ] | ||
| 878 | |||
| 879 | [[package]] | ||
| 880 | name = "iana-time-zone" | 661 | name = "iana-time-zone" |
| 881 | version = "0.1.64" | 662 | version = "0.1.64" |
| 882 | source = "registry+https://github.com/rust-lang/crates.io-index" | 663 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1003,16 +784,6 @@ dependencies = [ | |||
| 1003 | ] | 784 | ] |
| 1004 | 785 | ||
| 1005 | [[package]] | 786 | [[package]] |
| 1006 | name = "indexmap" | ||
| 1007 | version = "2.12.0" | ||
| 1008 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1009 | checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" | ||
| 1010 | dependencies = [ | ||
| 1011 | "equivalent", | ||
| 1012 | "hashbrown 0.16.0", | ||
| 1013 | ] | ||
| 1014 | |||
| 1015 | [[package]] | ||
| 1016 | name = "inout" | 787 | name = "inout" |
| 1017 | version = "0.1.4" | 788 | version = "0.1.4" |
| 1018 | source = "registry+https://github.com/rust-lang/crates.io-index" | 789 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1035,22 +806,6 @@ dependencies = [ | |||
| 1035 | ] | 806 | ] |
| 1036 | 807 | ||
| 1037 | [[package]] | 808 | [[package]] |
| 1038 | name = "ipnet" | ||
| 1039 | version = "2.11.0" | ||
| 1040 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1041 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" | ||
| 1042 | |||
| 1043 | [[package]] | ||
| 1044 | name = "iri-string" | ||
| 1045 | version = "0.7.8" | ||
| 1046 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1047 | checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" | ||
| 1048 | dependencies = [ | ||
| 1049 | "memchr", | ||
| 1050 | "serde", | ||
| 1051 | ] | ||
| 1052 | |||
| 1053 | [[package]] | ||
| 1054 | name = "is_terminal_polyfill" | 809 | name = "is_terminal_polyfill" |
| 1055 | version = "1.70.2" | 810 | version = "1.70.2" |
| 1056 | source = "registry+https://github.com/rust-lang/crates.io-index" | 811 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1091,18 +846,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1091 | checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" | 846 | checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" |
| 1092 | 847 | ||
| 1093 | [[package]] | 848 | [[package]] |
| 1094 | name = "lnurl-pay" | ||
| 1095 | version = "0.6.0" | ||
| 1096 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1097 | checksum = "536e7c782167a2d48346ca0b2677fad19eaef20f19a4ab868e4d5b96ca879def" | ||
| 1098 | dependencies = [ | ||
| 1099 | "bech32", | ||
| 1100 | "reqwest", | ||
| 1101 | "serde", | ||
| 1102 | "serde_json", | ||
| 1103 | ] | ||
| 1104 | |||
| 1105 | [[package]] | ||
| 1106 | name = "lock_api" | 849 | name = "lock_api" |
| 1107 | version = "0.4.14" | 850 | version = "0.4.14" |
| 1108 | source = "registry+https://github.com/rust-lang/crates.io-index" | 851 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1119,18 +862,9 @@ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" | |||
| 1119 | 862 | ||
| 1120 | [[package]] | 863 | [[package]] |
| 1121 | name = "lru" | 864 | name = "lru" |
| 1122 | version = "0.12.5" | 865 | version = "0.16.2" |
| 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1124 | checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" | ||
| 1125 | dependencies = [ | ||
| 1126 | "hashbrown 0.15.5", | ||
| 1127 | ] | ||
| 1128 | |||
| 1129 | [[package]] | ||
| 1130 | name = "lru-slab" | ||
| 1131 | version = "0.1.2" | ||
| 1132 | source = "registry+https://github.com/rust-lang/crates.io-index" | 866 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1133 | checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" | 867 | checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f" |
| 1134 | 868 | ||
| 1135 | [[package]] | 869 | [[package]] |
| 1136 | name = "matchers" | 870 | name = "matchers" |
| @@ -1160,123 +894,72 @@ dependencies = [ | |||
| 1160 | 894 | ||
| 1161 | [[package]] | 895 | [[package]] |
| 1162 | name = "negentropy" | 896 | name = "negentropy" |
| 1163 | version = "0.3.1" | 897 | version = "0.5.0" |
| 1164 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1165 | checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" | ||
| 1166 | |||
| 1167 | [[package]] | ||
| 1168 | name = "negentropy" | ||
| 1169 | version = "0.4.3" | ||
| 1170 | source = "registry+https://github.com/rust-lang/crates.io-index" | 898 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1171 | checksum = "43a88da9dd148bbcdce323dd6ac47d369b4769d4a3b78c6c52389b9269f77932" | 899 | checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d" |
| 1172 | 900 | ||
| 1173 | [[package]] | 901 | [[package]] |
| 1174 | name = "nostr" | 902 | name = "nostr" |
| 1175 | version = "0.35.0" | 903 | version = "0.43.1" |
| 1176 | source = "registry+https://github.com/rust-lang/crates.io-index" | 904 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1177 | checksum = "56db234b2e07901e372f34e9463f91590579cd8e6dbd34ed2ccc7e461e4ba639" | 905 | checksum = "62a97d745f1bd8d5e05a978632bbb87b0614567d5142906fe7c86fb2440faac6" |
| 1178 | dependencies = [ | 906 | dependencies = [ |
| 1179 | "aes", | ||
| 1180 | "base64", | 907 | "base64", |
| 1181 | "bech32", | 908 | "bech32", |
| 1182 | "bip39", | 909 | "bip39", |
| 1183 | "bitcoin", | 910 | "bitcoin_hashes 0.14.0", |
| 1184 | "cbc", | 911 | "cbc", |
| 1185 | "chacha20", | 912 | "chacha20", |
| 1186 | "chacha20poly1305", | 913 | "chacha20poly1305", |
| 1187 | "getrandom 0.2.16", | 914 | "getrandom 0.2.16", |
| 1188 | "instant", | 915 | "instant", |
| 1189 | "js-sys", | ||
| 1190 | "negentropy 0.3.1", | ||
| 1191 | "negentropy 0.4.3", | ||
| 1192 | "once_cell", | ||
| 1193 | "reqwest", | ||
| 1194 | "scrypt", | 916 | "scrypt", |
| 917 | "secp256k1", | ||
| 1195 | "serde", | 918 | "serde", |
| 1196 | "serde_json", | 919 | "serde_json", |
| 1197 | "unicode-normalization", | 920 | "unicode-normalization", |
| 1198 | "url", | 921 | "url", |
| 1199 | "wasm-bindgen", | ||
| 1200 | "wasm-bindgen-futures", | ||
| 1201 | "web-sys", | ||
| 1202 | ] | 922 | ] |
| 1203 | 923 | ||
| 1204 | [[package]] | 924 | [[package]] |
| 1205 | name = "nostr-database" | 925 | name = "nostr-database" |
| 1206 | version = "0.35.0" | 926 | version = "0.43.0" |
| 1207 | source = "registry+https://github.com/rust-lang/crates.io-index" | 927 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1208 | checksum = "50de8cc5e77e7dafa7e2e0d0d67187ef19e191dcd1a68efffd3e05152d91b3c3" | 928 | checksum = "b1c75a8c2175d2785ba73cfddef21d1e30da5fbbdf158569b6808ba44973a15b" |
| 1209 | dependencies = [ | 929 | dependencies = [ |
| 1210 | "async-trait", | ||
| 1211 | "lru", | 930 | "lru", |
| 1212 | "nostr", | 931 | "nostr", |
| 1213 | "thiserror 1.0.69", | ||
| 1214 | "tokio", | 932 | "tokio", |
| 1215 | "tracing", | ||
| 1216 | ] | 933 | ] |
| 1217 | 934 | ||
| 1218 | [[package]] | 935 | [[package]] |
| 1219 | name = "nostr-relay-pool" | 936 | name = "nostr-relay-pool" |
| 1220 | version = "0.35.0" | 937 | version = "0.43.1" |
| 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" | 938 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1222 | checksum = "800b9ca169902977366f8243ec645b1fa4a128ab621331796d4a26bd7bc22a88" | 939 | checksum = "2b2f43b70d13dfc50508a13cd902e11f4625312b2ce0e4b7c4c2283fd04001bd" |
| 1223 | dependencies = [ | 940 | dependencies = [ |
| 1224 | "async-utility", | 941 | "async-utility", |
| 1225 | "async-wsocket", | 942 | "async-wsocket", |
| 1226 | "atomic-destructor", | 943 | "atomic-destructor", |
| 1227 | "negentropy 0.3.1", | 944 | "lru", |
| 1228 | "negentropy 0.4.3", | 945 | "negentropy", |
| 1229 | "nostr", | 946 | "nostr", |
| 1230 | "nostr-database", | 947 | "nostr-database", |
| 1231 | "thiserror 1.0.69", | ||
| 1232 | "tokio", | 948 | "tokio", |
| 1233 | "tokio-stream", | ||
| 1234 | "tracing", | 949 | "tracing", |
| 1235 | ] | 950 | ] |
| 1236 | 951 | ||
| 1237 | [[package]] | 952 | [[package]] |
| 1238 | name = "nostr-sdk" | 953 | name = "nostr-sdk" |
| 1239 | version = "0.35.0" | 954 | version = "0.43.0" |
| 1240 | source = "registry+https://github.com/rust-lang/crates.io-index" | 955 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1241 | checksum = "d93036bf4c1e35145ca2cd6ee4cb7bb9c74f41cbca9cc4caff1e87b5e192f253" | 956 | checksum = "599f8963d6a1522a13b1a2b0ea6e168acfc367706606f1d33fa595e91fa22db0" |
| 1242 | dependencies = [ | 957 | dependencies = [ |
| 1243 | "async-utility", | 958 | "async-utility", |
| 1244 | "atomic-destructor", | ||
| 1245 | "lnurl-pay", | ||
| 1246 | "nostr", | 959 | "nostr", |
| 1247 | "nostr-database", | 960 | "nostr-database", |
| 1248 | "nostr-relay-pool", | 961 | "nostr-relay-pool", |
| 1249 | "nostr-signer", | ||
| 1250 | "nostr-zapper", | ||
| 1251 | "nwc", | ||
| 1252 | "thiserror 1.0.69", | ||
| 1253 | "tokio", | ||
| 1254 | "tracing", | ||
| 1255 | ] | ||
| 1256 | |||
| 1257 | [[package]] | ||
| 1258 | name = "nostr-signer" | ||
| 1259 | version = "0.35.0" | ||
| 1260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1261 | checksum = "c1e132975a677a1c97a7695ef1161291dc06517a588b6e17e3aa05d3fb4056a0" | ||
| 1262 | dependencies = [ | ||
| 1263 | "async-utility", | ||
| 1264 | "nostr", | ||
| 1265 | "nostr-relay-pool", | ||
| 1266 | "thiserror 1.0.69", | ||
| 1267 | "tokio", | 962 | "tokio", |
| 1268 | "tracing", | ||
| 1269 | ] | ||
| 1270 | |||
| 1271 | [[package]] | ||
| 1272 | name = "nostr-zapper" | ||
| 1273 | version = "0.35.0" | ||
| 1274 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1275 | checksum = "b60e7a3ecc9881ca418e772a6fc4410920653a9f0bf9457b6ddd732d2a3f64f1" | ||
| 1276 | dependencies = [ | ||
| 1277 | "async-trait", | ||
| 1278 | "nostr", | ||
| 1279 | "thiserror 1.0.69", | ||
| 1280 | ] | 963 | ] |
| 1281 | 964 | ||
| 1282 | [[package]] | 965 | [[package]] |
| @@ -1298,20 +981,6 @@ dependencies = [ | |||
| 1298 | ] | 981 | ] |
| 1299 | 982 | ||
| 1300 | [[package]] | 983 | [[package]] |
| 1301 | name = "nwc" | ||
| 1302 | version = "0.35.0" | ||
| 1303 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1304 | checksum = "2e962f52732a6d91c1e76d4de3f1daa186e77a849e98e5abe53ca7fe9796d04e" | ||
| 1305 | dependencies = [ | ||
| 1306 | "async-utility", | ||
| 1307 | "nostr", | ||
| 1308 | "nostr-relay-pool", | ||
| 1309 | "nostr-zapper", | ||
| 1310 | "thiserror 1.0.69", | ||
| 1311 | "tracing", | ||
| 1312 | ] | ||
| 1313 | |||
| 1314 | [[package]] | ||
| 1315 | name = "once_cell" | 984 | name = "once_cell" |
| 1316 | version = "1.21.3" | 985 | version = "1.21.3" |
| 1317 | source = "registry+https://github.com/rust-lang/crates.io-index" | 986 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1430,61 +1099,6 @@ dependencies = [ | |||
| 1430 | ] | 1099 | ] |
| 1431 | 1100 | ||
| 1432 | [[package]] | 1101 | [[package]] |
| 1433 | name = "quinn" | ||
| 1434 | version = "0.11.9" | ||
| 1435 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1436 | checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" | ||
| 1437 | dependencies = [ | ||
| 1438 | "bytes", | ||
| 1439 | "cfg_aliases", | ||
| 1440 | "pin-project-lite", | ||
| 1441 | "quinn-proto", | ||
| 1442 | "quinn-udp", | ||
| 1443 | "rustc-hash", | ||
| 1444 | "rustls", | ||
| 1445 | "socket2", | ||
| 1446 | "thiserror 2.0.17", | ||
| 1447 | "tokio", | ||
| 1448 | "tracing", | ||
| 1449 | "web-time", | ||
| 1450 | ] | ||
| 1451 | |||
| 1452 | [[package]] | ||
| 1453 | name = "quinn-proto" | ||
| 1454 | version = "0.11.13" | ||
| 1455 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1456 | checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" | ||
| 1457 | dependencies = [ | ||
| 1458 | "bytes", | ||
| 1459 | "getrandom 0.3.4", | ||
| 1460 | "lru-slab", | ||
| 1461 | "rand 0.9.2", | ||
| 1462 | "ring", | ||
| 1463 | "rustc-hash", | ||
| 1464 | "rustls", | ||
| 1465 | "rustls-pki-types", | ||
| 1466 | "slab", | ||
| 1467 | "thiserror 2.0.17", | ||
| 1468 | "tinyvec", | ||
| 1469 | "tracing", | ||
| 1470 | "web-time", | ||
| 1471 | ] | ||
| 1472 | |||
| 1473 | [[package]] | ||
| 1474 | name = "quinn-udp" | ||
| 1475 | version = "0.5.14" | ||
| 1476 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1477 | checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" | ||
| 1478 | dependencies = [ | ||
| 1479 | "cfg_aliases", | ||
| 1480 | "libc", | ||
| 1481 | "once_cell", | ||
| 1482 | "socket2", | ||
| 1483 | "tracing", | ||
| 1484 | "windows-sys 0.60.2", | ||
| 1485 | ] | ||
| 1486 | |||
| 1487 | [[package]] | ||
| 1488 | name = "quote" | 1102 | name = "quote" |
| 1489 | version = "1.0.41" | 1103 | version = "1.0.41" |
| 1490 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1104 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1585,44 +1199,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1585 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" | 1199 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" |
| 1586 | 1200 | ||
| 1587 | [[package]] | 1201 | [[package]] |
| 1588 | name = "reqwest" | ||
| 1589 | version = "0.12.24" | ||
| 1590 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1591 | checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" | ||
| 1592 | dependencies = [ | ||
| 1593 | "base64", | ||
| 1594 | "bytes", | ||
| 1595 | "futures-core", | ||
| 1596 | "http", | ||
| 1597 | "http-body", | ||
| 1598 | "http-body-util", | ||
| 1599 | "hyper", | ||
| 1600 | "hyper-rustls", | ||
| 1601 | "hyper-util", | ||
| 1602 | "js-sys", | ||
| 1603 | "log", | ||
| 1604 | "percent-encoding", | ||
| 1605 | "pin-project-lite", | ||
| 1606 | "quinn", | ||
| 1607 | "rustls", | ||
| 1608 | "rustls-pki-types", | ||
| 1609 | "serde", | ||
| 1610 | "serde_json", | ||
| 1611 | "serde_urlencoded", | ||
| 1612 | "sync_wrapper", | ||
| 1613 | "tokio", | ||
| 1614 | "tokio-rustls", | ||
| 1615 | "tower", | ||
| 1616 | "tower-http", | ||
| 1617 | "tower-service", | ||
| 1618 | "url", | ||
| 1619 | "wasm-bindgen", | ||
| 1620 | "wasm-bindgen-futures", | ||
| 1621 | "web-sys", | ||
| 1622 | "webpki-roots 1.0.4", | ||
| 1623 | ] | ||
| 1624 | |||
| 1625 | [[package]] | ||
| 1626 | name = "ring" | 1202 | name = "ring" |
| 1627 | version = "0.17.14" | 1203 | version = "0.17.14" |
| 1628 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1637,12 +1213,6 @@ dependencies = [ | |||
| 1637 | ] | 1213 | ] |
| 1638 | 1214 | ||
| 1639 | [[package]] | 1215 | [[package]] |
| 1640 | name = "rustc-hash" | ||
| 1641 | version = "2.1.1" | ||
| 1642 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1643 | checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" | ||
| 1644 | |||
| 1645 | [[package]] | ||
| 1646 | name = "rustls" | 1216 | name = "rustls" |
| 1647 | version = "0.23.34" | 1217 | version = "0.23.34" |
| 1648 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1218 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1662,7 +1232,6 @@ version = "1.13.0" | |||
| 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1663 | checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" | 1233 | checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" |
| 1664 | dependencies = [ | 1234 | dependencies = [ |
| 1665 | "web-time", | ||
| 1666 | "zeroize", | 1235 | "zeroize", |
| 1667 | ] | 1236 | ] |
| 1668 | 1237 | ||
| @@ -1722,7 +1291,6 @@ version = "0.29.1" | |||
| 1722 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1291 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1723 | checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" | 1292 | checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" |
| 1724 | dependencies = [ | 1293 | dependencies = [ |
| 1725 | "bitcoin_hashes 0.14.0", | ||
| 1726 | "rand 0.8.5", | 1294 | "rand 0.8.5", |
| 1727 | "secp256k1-sys", | 1295 | "secp256k1-sys", |
| 1728 | "serde", | 1296 | "serde", |
| @@ -1773,7 +1341,6 @@ version = "1.0.145" | |||
| 1773 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1341 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1774 | checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" | 1342 | checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" |
| 1775 | dependencies = [ | 1343 | dependencies = [ |
| 1776 | "indexmap", | ||
| 1777 | "itoa", | 1344 | "itoa", |
| 1778 | "memchr", | 1345 | "memchr", |
| 1779 | "ryu", | 1346 | "ryu", |
| @@ -1782,18 +1349,6 @@ dependencies = [ | |||
| 1782 | ] | 1349 | ] |
| 1783 | 1350 | ||
| 1784 | [[package]] | 1351 | [[package]] |
| 1785 | name = "serde_urlencoded" | ||
| 1786 | version = "0.7.1" | ||
| 1787 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1788 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" | ||
| 1789 | dependencies = [ | ||
| 1790 | "form_urlencoded", | ||
| 1791 | "itoa", | ||
| 1792 | "ryu", | ||
| 1793 | "serde", | ||
| 1794 | ] | ||
| 1795 | |||
| 1796 | [[package]] | ||
| 1797 | name = "sha1" | 1352 | name = "sha1" |
| 1798 | version = "0.10.6" | 1353 | version = "0.10.6" |
| 1799 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1354 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1891,15 +1446,6 @@ dependencies = [ | |||
| 1891 | ] | 1446 | ] |
| 1892 | 1447 | ||
| 1893 | [[package]] | 1448 | [[package]] |
| 1894 | name = "sync_wrapper" | ||
| 1895 | version = "1.0.2" | ||
| 1896 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1897 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" | ||
| 1898 | dependencies = [ | ||
| 1899 | "futures-core", | ||
| 1900 | ] | ||
| 1901 | |||
| 1902 | [[package]] | ||
| 1903 | name = "synstructure" | 1449 | name = "synstructure" |
| 1904 | version = "0.13.2" | 1450 | version = "0.13.2" |
| 1905 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1451 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2060,9 +1606,9 @@ dependencies = [ | |||
| 2060 | 1606 | ||
| 2061 | [[package]] | 1607 | [[package]] |
| 2062 | name = "tokio-tungstenite" | 1608 | name = "tokio-tungstenite" |
| 2063 | version = "0.24.0" | 1609 | version = "0.26.2" |
| 2064 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1610 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2065 | checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" | 1611 | checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" |
| 2066 | dependencies = [ | 1612 | dependencies = [ |
| 2067 | "futures-util", | 1613 | "futures-util", |
| 2068 | "log", | 1614 | "log", |
| @@ -2075,51 +1621,6 @@ dependencies = [ | |||
| 2075 | ] | 1621 | ] |
| 2076 | 1622 | ||
| 2077 | [[package]] | 1623 | [[package]] |
| 2078 | name = "tower" | ||
| 2079 | version = "0.5.2" | ||
| 2080 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2081 | checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" | ||
| 2082 | dependencies = [ | ||
| 2083 | "futures-core", | ||
| 2084 | "futures-util", | ||
| 2085 | "pin-project-lite", | ||
| 2086 | "sync_wrapper", | ||
| 2087 | "tokio", | ||
| 2088 | "tower-layer", | ||
| 2089 | "tower-service", | ||
| 2090 | ] | ||
| 2091 | |||
| 2092 | [[package]] | ||
| 2093 | name = "tower-http" | ||
| 2094 | version = "0.6.6" | ||
| 2095 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2096 | checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" | ||
| 2097 | dependencies = [ | ||
| 2098 | "bitflags", | ||
| 2099 | "bytes", | ||
| 2100 | "futures-util", | ||
| 2101 | "http", | ||
| 2102 | "http-body", | ||
| 2103 | "iri-string", | ||
| 2104 | "pin-project-lite", | ||
| 2105 | "tower", | ||
| 2106 | "tower-layer", | ||
| 2107 | "tower-service", | ||
| 2108 | ] | ||
| 2109 | |||
| 2110 | [[package]] | ||
| 2111 | name = "tower-layer" | ||
| 2112 | version = "0.3.3" | ||
| 2113 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2114 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" | ||
| 2115 | |||
| 2116 | [[package]] | ||
| 2117 | name = "tower-service" | ||
| 2118 | version = "0.3.3" | ||
| 2119 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2120 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" | ||
| 2121 | |||
| 2122 | [[package]] | ||
| 2123 | name = "tracing" | 1624 | name = "tracing" |
| 2124 | version = "0.1.41" | 1625 | version = "0.1.41" |
| 2125 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1626 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2181,28 +1682,21 @@ dependencies = [ | |||
| 2181 | ] | 1682 | ] |
| 2182 | 1683 | ||
| 2183 | [[package]] | 1684 | [[package]] |
| 2184 | name = "try-lock" | ||
| 2185 | version = "0.2.5" | ||
| 2186 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2187 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" | ||
| 2188 | |||
| 2189 | [[package]] | ||
| 2190 | name = "tungstenite" | 1685 | name = "tungstenite" |
| 2191 | version = "0.24.0" | 1686 | version = "0.26.2" |
| 2192 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1687 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2193 | checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" | 1688 | checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" |
| 2194 | dependencies = [ | 1689 | dependencies = [ |
| 2195 | "byteorder", | ||
| 2196 | "bytes", | 1690 | "bytes", |
| 2197 | "data-encoding", | 1691 | "data-encoding", |
| 2198 | "http", | 1692 | "http", |
| 2199 | "httparse", | 1693 | "httparse", |
| 2200 | "log", | 1694 | "log", |
| 2201 | "rand 0.8.5", | 1695 | "rand 0.9.2", |
| 2202 | "rustls", | 1696 | "rustls", |
| 2203 | "rustls-pki-types", | 1697 | "rustls-pki-types", |
| 2204 | "sha1", | 1698 | "sha1", |
| 2205 | "thiserror 1.0.69", | 1699 | "thiserror 2.0.17", |
| 2206 | "utf-8", | 1700 | "utf-8", |
| 2207 | ] | 1701 | ] |
| 2208 | 1702 | ||
| @@ -2297,15 +1791,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 2297 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" | 1791 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" |
| 2298 | 1792 | ||
| 2299 | [[package]] | 1793 | [[package]] |
| 2300 | name = "want" | ||
| 2301 | version = "0.3.1" | ||
| 2302 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2303 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" | ||
| 2304 | dependencies = [ | ||
| 2305 | "try-lock", | ||
| 2306 | ] | ||
| 2307 | |||
| 2308 | [[package]] | ||
| 2309 | name = "wasi" | 1794 | name = "wasi" |
| 2310 | version = "0.11.1+wasi-snapshot-preview1" | 1795 | version = "0.11.1+wasi-snapshot-preview1" |
| 2311 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2389,16 +1874,6 @@ dependencies = [ | |||
| 2389 | ] | 1874 | ] |
| 2390 | 1875 | ||
| 2391 | [[package]] | 1876 | [[package]] |
| 2392 | name = "web-time" | ||
| 2393 | version = "1.1.0" | ||
| 2394 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2395 | checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" | ||
| 2396 | dependencies = [ | ||
| 2397 | "js-sys", | ||
| 2398 | "wasm-bindgen", | ||
| 2399 | ] | ||
| 2400 | |||
| 2401 | [[package]] | ||
| 2402 | name = "webpki-roots" | 1877 | name = "webpki-roots" |
| 2403 | version = "0.26.11" | 1878 | version = "0.26.11" |
| 2404 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1879 | source = "registry+https://github.com/rust-lang/crates.io-index" |