diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 157 |
1 files changed, 110 insertions, 47 deletions
| @@ -121,6 +121,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 121 | checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" | 121 | checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" |
| 122 | 122 | ||
| 123 | [[package]] | 123 | [[package]] |
| 124 | name = "arrayvec" | ||
| 125 | version = "0.7.6" | ||
| 126 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 127 | checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" | ||
| 128 | |||
| 129 | [[package]] | ||
| 124 | name = "assert_cmd" | 130 | name = "assert_cmd" |
| 125 | version = "2.0.16" | 131 | version = "2.0.16" |
| 126 | source = "registry+https://github.com/rust-lang/crates.io-index" | 132 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -319,9 +325,9 @@ dependencies = [ | |||
| 319 | 325 | ||
| 320 | [[package]] | 326 | [[package]] |
| 321 | name = "async-wsocket" | 327 | name = "async-wsocket" |
| 322 | version = "0.7.1" | 328 | version = "0.9.0" |
| 323 | source = "registry+https://github.com/rust-lang/crates.io-index" | 329 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 324 | checksum = "1eee6fcc818b89848df37050215603de0e2e072734e4730c03060feb2d0abebb" | 330 | checksum = "5c0984bead67f20366bc8dd46018dfbe189b67eeefb0e5b86b9eade18d7c3c3b" |
| 325 | dependencies = [ | 331 | dependencies = [ |
| 326 | "async-utility", | 332 | "async-utility", |
| 327 | "futures", | 333 | "futures", |
| @@ -331,7 +337,7 @@ dependencies = [ | |||
| 331 | "tokio", | 337 | "tokio", |
| 332 | "tokio-rustls", | 338 | "tokio-rustls", |
| 333 | "tokio-socks", | 339 | "tokio-socks", |
| 334 | "tokio-tungstenite 0.23.1", | 340 | "tokio-tungstenite 0.24.0", |
| 335 | "url", | 341 | "url", |
| 336 | "wasm-bindgen", | 342 | "wasm-bindgen", |
| 337 | "web-sys", | 343 | "web-sys", |
| @@ -385,10 +391,14 @@ dependencies = [ | |||
| 385 | ] | 391 | ] |
| 386 | 392 | ||
| 387 | [[package]] | 393 | [[package]] |
| 388 | name = "base64" | 394 | name = "base58ck" |
| 389 | version = "0.21.7" | 395 | version = "0.1.0" |
| 390 | source = "registry+https://github.com/rust-lang/crates.io-index" | 396 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 391 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" | 397 | checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f" |
| 398 | dependencies = [ | ||
| 399 | "bitcoin-internals 0.3.0", | ||
| 400 | "bitcoin_hashes 0.14.0", | ||
| 401 | ] | ||
| 392 | 402 | ||
| 393 | [[package]] | 403 | [[package]] |
| 394 | name = "base64" | 404 | name = "base64" |
| @@ -404,9 +414,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" | |||
| 404 | 414 | ||
| 405 | [[package]] | 415 | [[package]] |
| 406 | name = "bech32" | 416 | name = "bech32" |
| 407 | version = "0.10.0-beta" | 417 | version = "0.11.0" |
| 408 | source = "registry+https://github.com/rust-lang/crates.io-index" | 418 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 409 | checksum = "98f7eed2b2781a6f0b5c903471d48e15f56fb4e1165df8a9a2337fd1a59d45ea" | 419 | checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d" |
| 410 | 420 | ||
| 411 | [[package]] | 421 | [[package]] |
| 412 | name = "bip39" | 422 | name = "bip39" |
| @@ -421,14 +431,17 @@ dependencies = [ | |||
| 421 | 431 | ||
| 422 | [[package]] | 432 | [[package]] |
| 423 | name = "bitcoin" | 433 | name = "bitcoin" |
| 424 | version = "0.31.2" | 434 | version = "0.32.2" |
| 425 | source = "registry+https://github.com/rust-lang/crates.io-index" | 435 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 426 | checksum = "6c85783c2fe40083ea54a33aa2f0ba58831d90fcd190f5bdc47e74e84d2a96ae" | 436 | checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" |
| 427 | dependencies = [ | 437 | dependencies = [ |
| 438 | "base58ck", | ||
| 428 | "bech32", | 439 | "bech32", |
| 429 | "bitcoin-internals", | 440 | "bitcoin-internals 0.3.0", |
| 430 | "bitcoin_hashes 0.13.0", | 441 | "bitcoin-io", |
| 431 | "hex-conservative", | 442 | "bitcoin-units", |
| 443 | "bitcoin_hashes 0.14.0", | ||
| 444 | "hex-conservative 0.2.1", | ||
| 432 | "hex_lit", | 445 | "hex_lit", |
| 433 | "secp256k1", | 446 | "secp256k1", |
| 434 | "serde", | 447 | "serde", |
| @@ -439,11 +452,33 @@ name = "bitcoin-internals" | |||
| 439 | version = "0.2.0" | 452 | version = "0.2.0" |
| 440 | source = "registry+https://github.com/rust-lang/crates.io-index" | 453 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 441 | checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" | 454 | checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" |
| 455 | |||
| 456 | [[package]] | ||
| 457 | name = "bitcoin-internals" | ||
| 458 | version = "0.3.0" | ||
| 459 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 460 | checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" | ||
| 442 | dependencies = [ | 461 | dependencies = [ |
| 443 | "serde", | 462 | "serde", |
| 444 | ] | 463 | ] |
| 445 | 464 | ||
| 446 | [[package]] | 465 | [[package]] |
| 466 | name = "bitcoin-io" | ||
| 467 | version = "0.1.2" | ||
| 468 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 469 | checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" | ||
| 470 | |||
| 471 | [[package]] | ||
| 472 | name = "bitcoin-units" | ||
| 473 | version = "0.1.2" | ||
| 474 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 475 | checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2" | ||
| 476 | dependencies = [ | ||
| 477 | "bitcoin-internals 0.3.0", | ||
| 478 | "serde", | ||
| 479 | ] | ||
| 480 | |||
| 481 | [[package]] | ||
| 447 | name = "bitcoin_hashes" | 482 | name = "bitcoin_hashes" |
| 448 | version = "0.11.0" | 483 | version = "0.11.0" |
| 449 | source = "registry+https://github.com/rust-lang/crates.io-index" | 484 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -455,8 +490,18 @@ version = "0.13.0" | |||
| 455 | source = "registry+https://github.com/rust-lang/crates.io-index" | 490 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 456 | checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" | 491 | checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" |
| 457 | dependencies = [ | 492 | dependencies = [ |
| 458 | "bitcoin-internals", | 493 | "bitcoin-internals 0.2.0", |
| 459 | "hex-conservative", | 494 | "hex-conservative 0.1.2", |
| 495 | ] | ||
| 496 | |||
| 497 | [[package]] | ||
| 498 | name = "bitcoin_hashes" | ||
| 499 | version = "0.14.0" | ||
| 500 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 501 | checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" | ||
| 502 | dependencies = [ | ||
| 503 | "bitcoin-io", | ||
| 504 | "hex-conservative 0.2.1", | ||
| 460 | "serde", | 505 | "serde", |
| 461 | ] | 506 | ] |
| 462 | 507 | ||
| @@ -1216,6 +1261,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1216 | checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" | 1261 | checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" |
| 1217 | 1262 | ||
| 1218 | [[package]] | 1263 | [[package]] |
| 1264 | name = "hex-conservative" | ||
| 1265 | version = "0.2.1" | ||
| 1266 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1267 | checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" | ||
| 1268 | dependencies = [ | ||
| 1269 | "arrayvec", | ||
| 1270 | ] | ||
| 1271 | |||
| 1272 | [[package]] | ||
| 1219 | name = "hex_lit" | 1273 | name = "hex_lit" |
| 1220 | version = "0.1.1" | 1274 | version = "0.1.1" |
| 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1569,9 +1623,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" | |||
| 1569 | 1623 | ||
| 1570 | [[package]] | 1624 | [[package]] |
| 1571 | name = "lnurl-pay" | 1625 | name = "lnurl-pay" |
| 1572 | version = "0.5.0" | 1626 | version = "0.6.0" |
| 1573 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1627 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1574 | checksum = "02c042191c2e3f27147decfad8182eea2c7dd1c6c1733562e25d3d401369669d" | 1628 | checksum = "536e7c782167a2d48346ca0b2677fad19eaef20f19a4ab868e4d5b96ca879def" |
| 1575 | dependencies = [ | 1629 | dependencies = [ |
| 1576 | "bech32", | 1630 | "bech32", |
| 1577 | "reqwest", | 1631 | "reqwest", |
| @@ -1698,6 +1752,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1698 | checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" | 1752 | checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" |
| 1699 | 1753 | ||
| 1700 | [[package]] | 1754 | [[package]] |
| 1755 | name = "negentropy" | ||
| 1756 | version = "0.4.3" | ||
| 1757 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1758 | checksum = "43a88da9dd148bbcdce323dd6ac47d369b4769d4a3b78c6c52389b9269f77932" | ||
| 1759 | |||
| 1760 | [[package]] | ||
| 1701 | name = "ngit" | 1761 | name = "ngit" |
| 1702 | version = "1.5.2" | 1762 | version = "1.5.2" |
| 1703 | dependencies = [ | 1763 | dependencies = [ |
| @@ -1766,12 +1826,13 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" | |||
| 1766 | 1826 | ||
| 1767 | [[package]] | 1827 | [[package]] |
| 1768 | name = "nostr" | 1828 | name = "nostr" |
| 1769 | version = "0.34.1" | 1829 | version = "0.35.0" |
| 1770 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1830 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1771 | checksum = "a1c3c32439eef3ea4d9079b2a8f557992d27259c26527e43d4228dd321e43a77" | 1831 | checksum = "56db234b2e07901e372f34e9463f91590579cd8e6dbd34ed2ccc7e461e4ba639" |
| 1772 | dependencies = [ | 1832 | dependencies = [ |
| 1773 | "aes", | 1833 | "aes", |
| 1774 | "base64 0.21.7", | 1834 | "base64", |
| 1835 | "bech32", | ||
| 1775 | "bip39", | 1836 | "bip39", |
| 1776 | "bitcoin", | 1837 | "bitcoin", |
| 1777 | "cbc", | 1838 | "cbc", |
| @@ -1780,13 +1841,13 @@ dependencies = [ | |||
| 1780 | "getrandom", | 1841 | "getrandom", |
| 1781 | "instant", | 1842 | "instant", |
| 1782 | "js-sys", | 1843 | "js-sys", |
| 1783 | "negentropy", | 1844 | "negentropy 0.3.1", |
| 1845 | "negentropy 0.4.3", | ||
| 1784 | "once_cell", | 1846 | "once_cell", |
| 1785 | "reqwest", | 1847 | "reqwest", |
| 1786 | "scrypt", | 1848 | "scrypt", |
| 1787 | "serde", | 1849 | "serde", |
| 1788 | "serde_json", | 1850 | "serde_json", |
| 1789 | "tracing", | ||
| 1790 | "unicode-normalization", | 1851 | "unicode-normalization", |
| 1791 | "url", | 1852 | "url", |
| 1792 | "wasm-bindgen", | 1853 | "wasm-bindgen", |
| @@ -1796,9 +1857,9 @@ dependencies = [ | |||
| 1796 | 1857 | ||
| 1797 | [[package]] | 1858 | [[package]] |
| 1798 | name = "nostr-database" | 1859 | name = "nostr-database" |
| 1799 | version = "0.34.0" | 1860 | version = "0.35.0" |
| 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1861 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1801 | checksum = "1926ef55392f3eea1bbe4a1358b64bbf12dd6eb554f40f483941a102c6263fc6" | 1862 | checksum = "50de8cc5e77e7dafa7e2e0d0d67187ef19e191dcd1a68efffd3e05152d91b3c3" |
| 1802 | dependencies = [ | 1863 | dependencies = [ |
| 1803 | "async-trait", | 1864 | "async-trait", |
| 1804 | "flatbuffers", | 1865 | "flatbuffers", |
| @@ -1811,13 +1872,15 @@ dependencies = [ | |||
| 1811 | 1872 | ||
| 1812 | [[package]] | 1873 | [[package]] |
| 1813 | name = "nostr-relay-pool" | 1874 | name = "nostr-relay-pool" |
| 1814 | version = "0.34.1" | 1875 | version = "0.35.0" |
| 1815 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1876 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1816 | checksum = "d0e37c5ea991802a91728d4c09d5a7276938104ead8bf140a63a60acabc5c756" | 1877 | checksum = "800b9ca169902977366f8243ec645b1fa4a128ab621331796d4a26bd7bc22a88" |
| 1817 | dependencies = [ | 1878 | dependencies = [ |
| 1818 | "async-utility", | 1879 | "async-utility", |
| 1819 | "async-wsocket", | 1880 | "async-wsocket", |
| 1820 | "atomic-destructor", | 1881 | "atomic-destructor", |
| 1882 | "negentropy 0.3.1", | ||
| 1883 | "negentropy 0.4.3", | ||
| 1821 | "nostr", | 1884 | "nostr", |
| 1822 | "nostr-database", | 1885 | "nostr-database", |
| 1823 | "thiserror", | 1886 | "thiserror", |
| @@ -1828,9 +1891,9 @@ dependencies = [ | |||
| 1828 | 1891 | ||
| 1829 | [[package]] | 1892 | [[package]] |
| 1830 | name = "nostr-sdk" | 1893 | name = "nostr-sdk" |
| 1831 | version = "0.34.0" | 1894 | version = "0.35.0" |
| 1832 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1895 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1833 | checksum = "ca0c0c5f8ddbdfc064ea71883191ec53de6ed52b5dca10ab07f0810b99e91acc" | 1896 | checksum = "d93036bf4c1e35145ca2cd6ee4cb7bb9c74f41cbca9cc4caff1e87b5e192f253" |
| 1834 | dependencies = [ | 1897 | dependencies = [ |
| 1835 | "async-utility", | 1898 | "async-utility", |
| 1836 | "atomic-destructor", | 1899 | "atomic-destructor", |
| @@ -1848,9 +1911,9 @@ dependencies = [ | |||
| 1848 | 1911 | ||
| 1849 | [[package]] | 1912 | [[package]] |
| 1850 | name = "nostr-signer" | 1913 | name = "nostr-signer" |
| 1851 | version = "0.34.0" | 1914 | version = "0.35.0" |
| 1852 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1915 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1853 | checksum = "5c30294a7be7d9d5ac777954812f5c7b4ae2a1e583a62e33537f87d98ab23729" | 1916 | checksum = "c1e132975a677a1c97a7695ef1161291dc06517a588b6e17e3aa05d3fb4056a0" |
| 1854 | dependencies = [ | 1917 | dependencies = [ |
| 1855 | "async-utility", | 1918 | "async-utility", |
| 1856 | "nostr", | 1919 | "nostr", |
| @@ -1862,9 +1925,9 @@ dependencies = [ | |||
| 1862 | 1925 | ||
| 1863 | [[package]] | 1926 | [[package]] |
| 1864 | name = "nostr-sqlite" | 1927 | name = "nostr-sqlite" |
| 1865 | version = "0.34.0" | 1928 | version = "0.35.0" |
| 1866 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1929 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1867 | checksum = "0b634d2a908feccd7b6b2e8d2cea47bc4061b350b7a120cd6c6f2520e4e1fc1a" | 1930 | checksum = "7b194128279dd0fa77a2be085652b17a10f70b76ec73142f0534e69a23aaf5aa" |
| 1868 | dependencies = [ | 1931 | dependencies = [ |
| 1869 | "async-trait", | 1932 | "async-trait", |
| 1870 | "nostr", | 1933 | "nostr", |
| @@ -1877,9 +1940,9 @@ dependencies = [ | |||
| 1877 | 1940 | ||
| 1878 | [[package]] | 1941 | [[package]] |
| 1879 | name = "nostr-zapper" | 1942 | name = "nostr-zapper" |
| 1880 | version = "0.34.0" | 1943 | version = "0.35.0" |
| 1881 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1944 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1882 | checksum = "dcf3ba30e807145e9cb924faf8fb0719e460f613088e99c753b67c2a9929c5b7" | 1945 | checksum = "b60e7a3ecc9881ca418e772a6fc4410920653a9f0bf9457b6ddd732d2a3f64f1" |
| 1883 | dependencies = [ | 1946 | dependencies = [ |
| 1884 | "async-trait", | 1947 | "async-trait", |
| 1885 | "nostr", | 1948 | "nostr", |
| @@ -1967,9 +2030,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" | |||
| 1967 | 2030 | ||
| 1968 | [[package]] | 2031 | [[package]] |
| 1969 | name = "nwc" | 2032 | name = "nwc" |
| 1970 | version = "0.34.1" | 2033 | version = "0.35.0" |
| 1971 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2034 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1972 | checksum = "9a16ac06bc273fcd4ead47c0c5a58b6cc7db2247fc7a64dd9bc11cf18e3efeb4" | 2035 | checksum = "2e962f52732a6d91c1e76d4de3f1daa186e77a849e98e5abe53ca7fe9796d04e" |
| 1973 | dependencies = [ | 2036 | dependencies = [ |
| 1974 | "async-utility", | 2037 | "async-utility", |
| 1975 | "nostr", | 2038 | "nostr", |
| @@ -2474,7 +2537,7 @@ version = "0.12.7" | |||
| 2474 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2537 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2475 | checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" | 2538 | checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" |
| 2476 | dependencies = [ | 2539 | dependencies = [ |
| 2477 | "base64 0.22.1", | 2540 | "base64", |
| 2478 | "bytes", | 2541 | "bytes", |
| 2479 | "futures-core", | 2542 | "futures-core", |
| 2480 | "futures-util", | 2543 | "futures-util", |
| @@ -2620,7 +2683,7 @@ version = "2.1.3" | |||
| 2620 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2683 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2621 | checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" | 2684 | checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" |
| 2622 | dependencies = [ | 2685 | dependencies = [ |
| 2623 | "base64 0.22.1", | 2686 | "base64", |
| 2624 | "rustls-pki-types", | 2687 | "rustls-pki-types", |
| 2625 | ] | 2688 | ] |
| 2626 | 2689 | ||
| @@ -2676,9 +2739,9 @@ dependencies = [ | |||
| 2676 | 2739 | ||
| 2677 | [[package]] | 2740 | [[package]] |
| 2678 | name = "secp256k1" | 2741 | name = "secp256k1" |
| 2679 | version = "0.28.2" | 2742 | version = "0.29.1" |
| 2680 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2743 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2681 | checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" | 2744 | checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" |
| 2682 | dependencies = [ | 2745 | dependencies = [ |
| 2683 | "bitcoin_hashes 0.13.0", | 2746 | "bitcoin_hashes 0.13.0", |
| 2684 | "rand", | 2747 | "rand", |
| @@ -2688,9 +2751,9 @@ dependencies = [ | |||
| 2688 | 2751 | ||
| 2689 | [[package]] | 2752 | [[package]] |
| 2690 | name = "secp256k1-sys" | 2753 | name = "secp256k1-sys" |
| 2691 | version = "0.9.2" | 2754 | version = "0.10.1" |
| 2692 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2755 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2693 | checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" | 2756 | checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" |
| 2694 | dependencies = [ | 2757 | dependencies = [ |
| 2695 | "cc", | 2758 | "cc", |
| 2696 | ] | 2759 | ] |
| @@ -3157,9 +3220,9 @@ dependencies = [ | |||
| 3157 | 3220 | ||
| 3158 | [[package]] | 3221 | [[package]] |
| 3159 | name = "tokio-tungstenite" | 3222 | name = "tokio-tungstenite" |
| 3160 | version = "0.23.1" | 3223 | version = "0.24.0" |
| 3161 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3224 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3162 | checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd" | 3225 | checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" |
| 3163 | dependencies = [ | 3226 | dependencies = [ |
| 3164 | "futures-util", | 3227 | "futures-util", |
| 3165 | "log", | 3228 | "log", |
| @@ -3167,7 +3230,7 @@ dependencies = [ | |||
| 3167 | "rustls-pki-types", | 3230 | "rustls-pki-types", |
| 3168 | "tokio", | 3231 | "tokio", |
| 3169 | "tokio-rustls", | 3232 | "tokio-rustls", |
| 3170 | "tungstenite 0.23.0", | 3233 | "tungstenite 0.24.0", |
| 3171 | "webpki-roots", | 3234 | "webpki-roots", |
| 3172 | ] | 3235 | ] |
| 3173 | 3236 | ||
| @@ -3273,9 +3336,9 @@ dependencies = [ | |||
| 3273 | 3336 | ||
| 3274 | [[package]] | 3337 | [[package]] |
| 3275 | name = "tungstenite" | 3338 | name = "tungstenite" |
| 3276 | version = "0.23.0" | 3339 | version = "0.24.0" |
| 3277 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3340 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3278 | checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" | 3341 | checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" |
| 3279 | dependencies = [ | 3342 | dependencies = [ |
| 3280 | "byteorder", | 3343 | "byteorder", |
| 3281 | "bytes", | 3344 | "bytes", |