diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 96 |
1 files changed, 57 insertions, 39 deletions
| @@ -313,6 +313,24 @@ dependencies = [ | |||
| 313 | ] | 313 | ] |
| 314 | 314 | ||
| 315 | [[package]] | 315 | [[package]] |
| 316 | name = "async-wsocket" | ||
| 317 | version = "0.1.0" | ||
| 318 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 319 | checksum = "82d55992e9155e571208dc012c2a5c056572d1ab167bc299a63810ebf910226c" | ||
| 320 | dependencies = [ | ||
| 321 | "async-utility", | ||
| 322 | "futures-util", | ||
| 323 | "thiserror", | ||
| 324 | "tokio", | ||
| 325 | "tokio-rustls", | ||
| 326 | "tokio-socks", | ||
| 327 | "tokio-tungstenite", | ||
| 328 | "url-fork", | ||
| 329 | "wasm-ws", | ||
| 330 | "webpki-roots", | ||
| 331 | ] | ||
| 332 | |||
| 333 | [[package]] | ||
| 316 | name = "async_io_stream" | 334 | name = "async_io_stream" |
| 317 | version = "0.3.3" | 335 | version = "0.3.3" |
| 318 | source = "registry+https://github.com/rust-lang/crates.io-index" | 336 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1653,9 +1671,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" | |||
| 1653 | 1671 | ||
| 1654 | [[package]] | 1672 | [[package]] |
| 1655 | name = "nostr" | 1673 | name = "nostr" |
| 1656 | version = "0.25.0" | 1674 | version = "0.27.0" |
| 1657 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1675 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1658 | checksum = "1b65a1b93d2c78550f8e7f84ce475b44c4f04e46b08d30be98523eaa498abae4" | 1676 | checksum = "3e47228d958fd65ef3e04650a3b1dd80f16f10f0243c80ed969556dead0f48c8" |
| 1659 | dependencies = [ | 1677 | dependencies = [ |
| 1660 | "aes 0.8.3", | 1678 | "aes 0.8.3", |
| 1661 | "base64", | 1679 | "base64", |
| @@ -1665,6 +1683,7 @@ dependencies = [ | |||
| 1665 | "chacha20", | 1683 | "chacha20", |
| 1666 | "getrandom", | 1684 | "getrandom", |
| 1667 | "instant", | 1685 | "instant", |
| 1686 | "js-sys", | ||
| 1668 | "negentropy", | 1687 | "negentropy", |
| 1669 | "once_cell", | 1688 | "once_cell", |
| 1670 | "reqwest", | 1689 | "reqwest", |
| @@ -1672,38 +1691,38 @@ dependencies = [ | |||
| 1672 | "serde_json", | 1691 | "serde_json", |
| 1673 | "tracing", | 1692 | "tracing", |
| 1674 | "url-fork", | 1693 | "url-fork", |
| 1694 | "wasm-bindgen", | ||
| 1695 | "wasm-bindgen-futures", | ||
| 1696 | "web-sys", | ||
| 1675 | ] | 1697 | ] |
| 1676 | 1698 | ||
| 1677 | [[package]] | 1699 | [[package]] |
| 1678 | name = "nostr-sdk" | 1700 | name = "nostr-database" |
| 1679 | version = "0.25.0" | 1701 | version = "0.27.0" |
| 1680 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1702 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1681 | checksum = "f887f45f344828e14740eb37b32c6ae3b6ac5dc7ea94dd60817507c44a770b01" | 1703 | checksum = "aa0550256c8d4f0aaf74891ac986bd5ba46b2957c2c7e20f51838fa5819285f8" |
| 1682 | dependencies = [ | 1704 | dependencies = [ |
| 1683 | "async-utility", | 1705 | "async-trait", |
| 1684 | "nostr", | 1706 | "nostr", |
| 1685 | "nostr-sdk-net", | ||
| 1686 | "once_cell", | ||
| 1687 | "thiserror", | 1707 | "thiserror", |
| 1688 | "tokio", | 1708 | "tokio", |
| 1689 | "tracing", | 1709 | "tracing", |
| 1690 | ] | 1710 | ] |
| 1691 | 1711 | ||
| 1692 | [[package]] | 1712 | [[package]] |
| 1693 | name = "nostr-sdk-net" | 1713 | name = "nostr-sdk" |
| 1694 | version = "0.25.0" | 1714 | version = "0.27.0" |
| 1695 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1715 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1696 | checksum = "18d66a499ce2e1ab5ac03626df913d4fe2aa544231ec8b04f312cc13b74d50b2" | 1716 | checksum = "3cf190e41230721f0ce64f5ea72ed36cbc431d3b305eb166e24a94f5d7e4a425" |
| 1697 | dependencies = [ | 1717 | dependencies = [ |
| 1698 | "futures-util", | 1718 | "async-utility", |
| 1719 | "async-wsocket", | ||
| 1720 | "nostr", | ||
| 1721 | "nostr-database", | ||
| 1722 | "once_cell", | ||
| 1699 | "thiserror", | 1723 | "thiserror", |
| 1700 | "tokio", | 1724 | "tokio", |
| 1701 | "tokio-rustls", | 1725 | "tracing", |
| 1702 | "tokio-socks", | ||
| 1703 | "tokio-tungstenite", | ||
| 1704 | "url-fork", | ||
| 1705 | "webpki-roots", | ||
| 1706 | "ws_stream_wasm", | ||
| 1707 | ] | 1726 | ] |
| 1708 | 1727 | ||
| 1709 | [[package]] | 1728 | [[package]] |
| @@ -1809,9 +1828,9 @@ dependencies = [ | |||
| 1809 | 1828 | ||
| 1810 | [[package]] | 1829 | [[package]] |
| 1811 | name = "once_cell" | 1830 | name = "once_cell" |
| 1812 | version = "1.18.0" | 1831 | version = "1.19.0" |
| 1813 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1832 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1814 | checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" | 1833 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" |
| 1815 | 1834 | ||
| 1816 | [[package]] | 1835 | [[package]] |
| 1817 | name = "opaque-debug" | 1836 | name = "opaque-debug" |
| @@ -2537,6 +2556,7 @@ version = "1.0.108" | |||
| 2537 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2556 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2538 | checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" | 2557 | checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" |
| 2539 | dependencies = [ | 2558 | dependencies = [ |
| 2559 | "indexmap 2.1.0", | ||
| 2540 | "itoa", | 2560 | "itoa", |
| 2541 | "ryu", | 2561 | "ryu", |
| 2542 | "serde", | 2562 | "serde", |
| @@ -3228,6 +3248,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 3228 | checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" | 3248 | checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" |
| 3229 | 3249 | ||
| 3230 | [[package]] | 3250 | [[package]] |
| 3251 | name = "wasm-ws" | ||
| 3252 | version = "0.1.1" | ||
| 3253 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3254 | checksum = "f5b3a482e27ff54809c0848629d9033179705c5ea2f58e26cf45dc77c34c4984" | ||
| 3255 | dependencies = [ | ||
| 3256 | "async_io_stream", | ||
| 3257 | "futures", | ||
| 3258 | "js-sys", | ||
| 3259 | "pharos", | ||
| 3260 | "send_wrapper", | ||
| 3261 | "thiserror", | ||
| 3262 | "wasm-bindgen", | ||
| 3263 | "wasm-bindgen-futures", | ||
| 3264 | "web-sys", | ||
| 3265 | ] | ||
| 3266 | |||
| 3267 | [[package]] | ||
| 3231 | name = "web-sys" | 3268 | name = "web-sys" |
| 3232 | version = "0.3.65" | 3269 | version = "0.3.65" |
| 3233 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3270 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -3417,25 +3454,6 @@ dependencies = [ | |||
| 3417 | ] | 3454 | ] |
| 3418 | 3455 | ||
| 3419 | [[package]] | 3456 | [[package]] |
| 3420 | name = "ws_stream_wasm" | ||
| 3421 | version = "0.7.4" | ||
| 3422 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3423 | checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" | ||
| 3424 | dependencies = [ | ||
| 3425 | "async_io_stream", | ||
| 3426 | "futures", | ||
| 3427 | "js-sys", | ||
| 3428 | "log", | ||
| 3429 | "pharos", | ||
| 3430 | "rustc_version", | ||
| 3431 | "send_wrapper", | ||
| 3432 | "thiserror", | ||
| 3433 | "wasm-bindgen", | ||
| 3434 | "wasm-bindgen-futures", | ||
| 3435 | "web-sys", | ||
| 3436 | ] | ||
| 3437 | |||
| 3438 | [[package]] | ||
| 3439 | name = "xdg-home" | 3457 | name = "xdg-home" |
| 3440 | version = "1.0.0" | 3458 | version = "1.0.0" |
| 3441 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3459 | source = "registry+https://github.com/rust-lang/crates.io-index" |