diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-10-01 00:00:00 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-10-01 00:00:00 +0100 |
| commit | 000901c0cbca8464b5a89bcc93c5474f6564bafd (patch) | |
| tree | 0ae11836c173ec6246e8b1eab7dc1e265e125426 /Cargo.lock | |
| parent | b9a88672b8734448615354e3f46748d2fdc2f647 (diff) | |
feat(prs-create) send to multiple relays
add tests but these currently don't work when run together
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 130 |
1 files changed, 127 insertions, 3 deletions
| @@ -863,6 +863,19 @@ dependencies = [ | |||
| 863 | ] | 863 | ] |
| 864 | 864 | ||
| 865 | [[package]] | 865 | [[package]] |
| 866 | name = "flume" | ||
| 867 | version = "0.10.14" | ||
| 868 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 869 | checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" | ||
| 870 | dependencies = [ | ||
| 871 | "futures-core", | ||
| 872 | "futures-sink", | ||
| 873 | "nanorand", | ||
| 874 | "pin-project", | ||
| 875 | "spin 0.9.8", | ||
| 876 | ] | ||
| 877 | |||
| 878 | [[package]] | ||
| 866 | name = "fnv" | 879 | name = "fnv" |
| 867 | version = "1.0.7" | 880 | version = "1.0.7" |
| 868 | source = "registry+https://github.com/rust-lang/crates.io-index" | 881 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1219,6 +1232,19 @@ dependencies = [ | |||
| 1219 | ] | 1232 | ] |
| 1220 | 1233 | ||
| 1221 | [[package]] | 1234 | [[package]] |
| 1235 | name = "indicatif" | ||
| 1236 | version = "0.17.7" | ||
| 1237 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1238 | checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" | ||
| 1239 | dependencies = [ | ||
| 1240 | "console", | ||
| 1241 | "instant", | ||
| 1242 | "number_prefix", | ||
| 1243 | "portable-atomic", | ||
| 1244 | "unicode-width", | ||
| 1245 | ] | ||
| 1246 | |||
| 1247 | [[package]] | ||
| 1222 | name = "inout" | 1248 | name = "inout" |
| 1223 | version = "0.1.3" | 1249 | version = "0.1.3" |
| 1224 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1250 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1481,6 +1507,15 @@ dependencies = [ | |||
| 1481 | ] | 1507 | ] |
| 1482 | 1508 | ||
| 1483 | [[package]] | 1509 | [[package]] |
| 1510 | name = "nanorand" | ||
| 1511 | version = "0.7.0" | ||
| 1512 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1513 | checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" | ||
| 1514 | dependencies = [ | ||
| 1515 | "getrandom", | ||
| 1516 | ] | ||
| 1517 | |||
| 1518 | [[package]] | ||
| 1484 | name = "ngit" | 1519 | name = "ngit" |
| 1485 | version = "0.0.1" | 1520 | version = "0.0.1" |
| 1486 | dependencies = [ | 1521 | dependencies = [ |
| @@ -1489,11 +1524,13 @@ dependencies = [ | |||
| 1489 | "async-trait", | 1524 | "async-trait", |
| 1490 | "chacha20poly1305", | 1525 | "chacha20poly1305", |
| 1491 | "clap", | 1526 | "clap", |
| 1527 | "console", | ||
| 1492 | "dialoguer", | 1528 | "dialoguer", |
| 1493 | "directories", | 1529 | "directories", |
| 1494 | "duplicate", | 1530 | "duplicate", |
| 1495 | "futures", | 1531 | "futures", |
| 1496 | "git2", | 1532 | "git2", |
| 1533 | "indicatif", | ||
| 1497 | "keyring", | 1534 | "keyring", |
| 1498 | "mockall", | 1535 | "mockall", |
| 1499 | "nostr", | 1536 | "nostr", |
| @@ -1591,7 +1628,7 @@ dependencies = [ | |||
| 1591 | "tokio", | 1628 | "tokio", |
| 1592 | "tokio-rustls", | 1629 | "tokio-rustls", |
| 1593 | "tokio-socks", | 1630 | "tokio-socks", |
| 1594 | "tokio-tungstenite", | 1631 | "tokio-tungstenite 0.20.1", |
| 1595 | "url-fork", | 1632 | "url-fork", |
| 1596 | "webpki-roots", | 1633 | "webpki-roots", |
| 1597 | "ws_stream_wasm", | 1634 | "ws_stream_wasm", |
| @@ -1684,6 +1721,12 @@ dependencies = [ | |||
| 1684 | ] | 1721 | ] |
| 1685 | 1722 | ||
| 1686 | [[package]] | 1723 | [[package]] |
| 1724 | name = "number_prefix" | ||
| 1725 | version = "0.4.0" | ||
| 1726 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1727 | checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" | ||
| 1728 | |||
| 1729 | [[package]] | ||
| 1687 | name = "object" | 1730 | name = "object" |
| 1688 | version = "0.32.1" | 1731 | version = "0.32.1" |
| 1689 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1732 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1814,6 +1857,26 @@ dependencies = [ | |||
| 1814 | ] | 1857 | ] |
| 1815 | 1858 | ||
| 1816 | [[package]] | 1859 | [[package]] |
| 1860 | name = "pin-project" | ||
| 1861 | version = "1.1.3" | ||
| 1862 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1863 | checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" | ||
| 1864 | dependencies = [ | ||
| 1865 | "pin-project-internal", | ||
| 1866 | ] | ||
| 1867 | |||
| 1868 | [[package]] | ||
| 1869 | name = "pin-project-internal" | ||
| 1870 | version = "1.1.3" | ||
| 1871 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1872 | checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" | ||
| 1873 | dependencies = [ | ||
| 1874 | "proc-macro2", | ||
| 1875 | "quote", | ||
| 1876 | "syn 2.0.38", | ||
| 1877 | ] | ||
| 1878 | |||
| 1879 | [[package]] | ||
| 1817 | name = "pin-project-lite" | 1880 | name = "pin-project-lite" |
| 1818 | version = "0.2.13" | 1881 | version = "0.2.13" |
| 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1882 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1870,6 +1933,12 @@ dependencies = [ | |||
| 1870 | ] | 1933 | ] |
| 1871 | 1934 | ||
| 1872 | [[package]] | 1935 | [[package]] |
| 1936 | name = "portable-atomic" | ||
| 1937 | version = "1.4.3" | ||
| 1938 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1939 | checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" | ||
| 1940 | |||
| 1941 | [[package]] | ||
| 1873 | name = "ppv-lite86" | 1942 | name = "ppv-lite86" |
| 1874 | version = "0.2.17" | 1943 | version = "0.2.17" |
| 1875 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1944 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2169,7 +2238,7 @@ dependencies = [ | |||
| 2169 | "cc", | 2238 | "cc", |
| 2170 | "libc", | 2239 | "libc", |
| 2171 | "once_cell", | 2240 | "once_cell", |
| 2172 | "spin", | 2241 | "spin 0.5.2", |
| 2173 | "untrusted", | 2242 | "untrusted", |
| 2174 | "web-sys", | 2243 | "web-sys", |
| 2175 | "winapi", | 2244 | "winapi", |
| @@ -2483,6 +2552,18 @@ dependencies = [ | |||
| 2483 | ] | 2552 | ] |
| 2484 | 2553 | ||
| 2485 | [[package]] | 2554 | [[package]] |
| 2555 | name = "simple-websockets" | ||
| 2556 | version = "0.1.6" | ||
| 2557 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2558 | checksum = "7f38cc14717bb624d10e9bb4fff30344e8f540c0d2c0f876f8fb0111d808ee7c" | ||
| 2559 | dependencies = [ | ||
| 2560 | "flume", | ||
| 2561 | "futures-util", | ||
| 2562 | "tokio", | ||
| 2563 | "tokio-tungstenite 0.19.0", | ||
| 2564 | ] | ||
| 2565 | |||
| 2566 | [[package]] | ||
| 2486 | name = "slab" | 2567 | name = "slab" |
| 2487 | version = "0.4.9" | 2568 | version = "0.4.9" |
| 2488 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2569 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2524,6 +2605,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 2524 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" | 2605 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" |
| 2525 | 2606 | ||
| 2526 | [[package]] | 2607 | [[package]] |
| 2608 | name = "spin" | ||
| 2609 | version = "0.9.8" | ||
| 2610 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2611 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" | ||
| 2612 | dependencies = [ | ||
| 2613 | "lock_api", | ||
| 2614 | ] | ||
| 2615 | |||
| 2616 | [[package]] | ||
| 2527 | name = "static_assertions" | 2617 | name = "static_assertions" |
| 2528 | version = "1.1.0" | 2618 | version = "1.1.0" |
| 2529 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2619 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2625,6 +2715,7 @@ dependencies = [ | |||
| 2625 | "once_cell", | 2715 | "once_cell", |
| 2626 | "rand", | 2716 | "rand", |
| 2627 | "rexpect 0.5.0 (git+https://github.com/phaer/rexpect.git?branch=skip-ansi-escape-codes)", | 2717 | "rexpect 0.5.0 (git+https://github.com/phaer/rexpect.git?branch=skip-ansi-escape-codes)", |
| 2718 | "simple-websockets", | ||
| 2628 | "strip-ansi-escapes", | 2719 | "strip-ansi-escapes", |
| 2629 | ] | 2720 | ] |
| 2630 | 2721 | ||
| @@ -2674,7 +2765,9 @@ dependencies = [ | |||
| 2674 | "libc", | 2765 | "libc", |
| 2675 | "mio", | 2766 | "mio", |
| 2676 | "num_cpus", | 2767 | "num_cpus", |
| 2768 | "parking_lot", | ||
| 2677 | "pin-project-lite", | 2769 | "pin-project-lite", |
| 2770 | "signal-hook-registry", | ||
| 2678 | "socket2 0.5.4", | 2771 | "socket2 0.5.4", |
| 2679 | "tokio-macros", | 2772 | "tokio-macros", |
| 2680 | "windows-sys 0.48.0", | 2773 | "windows-sys 0.48.0", |
| @@ -2715,6 +2808,18 @@ dependencies = [ | |||
| 2715 | 2808 | ||
| 2716 | [[package]] | 2809 | [[package]] |
| 2717 | name = "tokio-tungstenite" | 2810 | name = "tokio-tungstenite" |
| 2811 | version = "0.19.0" | ||
| 2812 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2813 | checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" | ||
| 2814 | dependencies = [ | ||
| 2815 | "futures-util", | ||
| 2816 | "log", | ||
| 2817 | "tokio", | ||
| 2818 | "tungstenite 0.19.0", | ||
| 2819 | ] | ||
| 2820 | |||
| 2821 | [[package]] | ||
| 2822 | name = "tokio-tungstenite" | ||
| 2718 | version = "0.20.1" | 2823 | version = "0.20.1" |
| 2719 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2824 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2720 | checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" | 2825 | checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" |
| @@ -2724,7 +2829,7 @@ dependencies = [ | |||
| 2724 | "rustls", | 2829 | "rustls", |
| 2725 | "tokio", | 2830 | "tokio", |
| 2726 | "tokio-rustls", | 2831 | "tokio-rustls", |
| 2727 | "tungstenite", | 2832 | "tungstenite 0.20.1", |
| 2728 | "webpki-roots", | 2833 | "webpki-roots", |
| 2729 | ] | 2834 | ] |
| 2730 | 2835 | ||
| @@ -2805,6 +2910,25 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" | |||
| 2805 | 2910 | ||
| 2806 | [[package]] | 2911 | [[package]] |
| 2807 | name = "tungstenite" | 2912 | name = "tungstenite" |
| 2913 | version = "0.19.0" | ||
| 2914 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2915 | checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" | ||
| 2916 | dependencies = [ | ||
| 2917 | "byteorder", | ||
| 2918 | "bytes", | ||
| 2919 | "data-encoding", | ||
| 2920 | "http", | ||
| 2921 | "httparse", | ||
| 2922 | "log", | ||
| 2923 | "rand", | ||
| 2924 | "sha1", | ||
| 2925 | "thiserror", | ||
| 2926 | "url", | ||
| 2927 | "utf-8", | ||
| 2928 | ] | ||
| 2929 | |||
| 2930 | [[package]] | ||
| 2931 | name = "tungstenite" | ||
| 2808 | version = "0.20.1" | 2932 | version = "0.20.1" |
| 2809 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2933 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2810 | checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" | 2934 | checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" |