upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2023-10-01 00:00:00 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2023-10-01 00:00:00 +0100
commit000901c0cbca8464b5a89bcc93c5474f6564bafd (patch)
tree0ae11836c173ec6246e8b1eab7dc1e265e125426 /Cargo.lock
parentb9a88672b8734448615354e3f46748d2fdc2f647 (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.lock130
1 files changed, 127 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 15bc112..b8c0f04 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -863,6 +863,19 @@ dependencies = [
863] 863]
864 864
865[[package]] 865[[package]]
866name = "flume"
867version = "0.10.14"
868source = "registry+https://github.com/rust-lang/crates.io-index"
869checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
870dependencies = [
871 "futures-core",
872 "futures-sink",
873 "nanorand",
874 "pin-project",
875 "spin 0.9.8",
876]
877
878[[package]]
866name = "fnv" 879name = "fnv"
867version = "1.0.7" 880version = "1.0.7"
868source = "registry+https://github.com/rust-lang/crates.io-index" 881source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1219,6 +1232,19 @@ dependencies = [
1219] 1232]
1220 1233
1221[[package]] 1234[[package]]
1235name = "indicatif"
1236version = "0.17.7"
1237source = "registry+https://github.com/rust-lang/crates.io-index"
1238checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25"
1239dependencies = [
1240 "console",
1241 "instant",
1242 "number_prefix",
1243 "portable-atomic",
1244 "unicode-width",
1245]
1246
1247[[package]]
1222name = "inout" 1248name = "inout"
1223version = "0.1.3" 1249version = "0.1.3"
1224source = "registry+https://github.com/rust-lang/crates.io-index" 1250source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1481,6 +1507,15 @@ dependencies = [
1481] 1507]
1482 1508
1483[[package]] 1509[[package]]
1510name = "nanorand"
1511version = "0.7.0"
1512source = "registry+https://github.com/rust-lang/crates.io-index"
1513checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
1514dependencies = [
1515 "getrandom",
1516]
1517
1518[[package]]
1484name = "ngit" 1519name = "ngit"
1485version = "0.0.1" 1520version = "0.0.1"
1486dependencies = [ 1521dependencies = [
@@ -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]]
1724name = "number_prefix"
1725version = "0.4.0"
1726source = "registry+https://github.com/rust-lang/crates.io-index"
1727checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1728
1729[[package]]
1687name = "object" 1730name = "object"
1688version = "0.32.1" 1731version = "0.32.1"
1689source = "registry+https://github.com/rust-lang/crates.io-index" 1732source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1814,6 +1857,26 @@ dependencies = [
1814] 1857]
1815 1858
1816[[package]] 1859[[package]]
1860name = "pin-project"
1861version = "1.1.3"
1862source = "registry+https://github.com/rust-lang/crates.io-index"
1863checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
1864dependencies = [
1865 "pin-project-internal",
1866]
1867
1868[[package]]
1869name = "pin-project-internal"
1870version = "1.1.3"
1871source = "registry+https://github.com/rust-lang/crates.io-index"
1872checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
1873dependencies = [
1874 "proc-macro2",
1875 "quote",
1876 "syn 2.0.38",
1877]
1878
1879[[package]]
1817name = "pin-project-lite" 1880name = "pin-project-lite"
1818version = "0.2.13" 1881version = "0.2.13"
1819source = "registry+https://github.com/rust-lang/crates.io-index" 1882source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1870,6 +1933,12 @@ dependencies = [
1870] 1933]
1871 1934
1872[[package]] 1935[[package]]
1936name = "portable-atomic"
1937version = "1.4.3"
1938source = "registry+https://github.com/rust-lang/crates.io-index"
1939checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b"
1940
1941[[package]]
1873name = "ppv-lite86" 1942name = "ppv-lite86"
1874version = "0.2.17" 1943version = "0.2.17"
1875source = "registry+https://github.com/rust-lang/crates.io-index" 1944source = "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]]
2555name = "simple-websockets"
2556version = "0.1.6"
2557source = "registry+https://github.com/rust-lang/crates.io-index"
2558checksum = "7f38cc14717bb624d10e9bb4fff30344e8f540c0d2c0f876f8fb0111d808ee7c"
2559dependencies = [
2560 "flume",
2561 "futures-util",
2562 "tokio",
2563 "tokio-tungstenite 0.19.0",
2564]
2565
2566[[package]]
2486name = "slab" 2567name = "slab"
2487version = "0.4.9" 2568version = "0.4.9"
2488source = "registry+https://github.com/rust-lang/crates.io-index" 2569source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2524,6 +2605,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2524checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2605checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2525 2606
2526[[package]] 2607[[package]]
2608name = "spin"
2609version = "0.9.8"
2610source = "registry+https://github.com/rust-lang/crates.io-index"
2611checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2612dependencies = [
2613 "lock_api",
2614]
2615
2616[[package]]
2527name = "static_assertions" 2617name = "static_assertions"
2528version = "1.1.0" 2618version = "1.1.0"
2529source = "registry+https://github.com/rust-lang/crates.io-index" 2619source = "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]]
2717name = "tokio-tungstenite" 2810name = "tokio-tungstenite"
2811version = "0.19.0"
2812source = "registry+https://github.com/rust-lang/crates.io-index"
2813checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c"
2814dependencies = [
2815 "futures-util",
2816 "log",
2817 "tokio",
2818 "tungstenite 0.19.0",
2819]
2820
2821[[package]]
2822name = "tokio-tungstenite"
2718version = "0.20.1" 2823version = "0.20.1"
2719source = "registry+https://github.com/rust-lang/crates.io-index" 2824source = "registry+https://github.com/rust-lang/crates.io-index"
2720checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" 2825checksum = "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]]
2807name = "tungstenite" 2912name = "tungstenite"
2913version = "0.19.0"
2914source = "registry+https://github.com/rust-lang/crates.io-index"
2915checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67"
2916dependencies = [
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]]
2931name = "tungstenite"
2808version = "0.20.1" 2932version = "0.20.1"
2809source = "registry+https://github.com/rust-lang/crates.io-index" 2933source = "registry+https://github.com/rust-lang/crates.io-index"
2810checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 2934checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"