aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-03-25 18:29:04 -0400
committerJesse Luehrs <doy@tozt.net>2023-03-25 23:14:16 -0400
commitb659cc500476a7b4b94bc6659d46922be9465b99 (patch)
treecdf83f293d4951bf2565cc8f92e73413d7e81819 /Cargo.lock
parentad0a078a5a2c4c9efd16b20ff47cc4e1ef922dab (diff)
downloadrbw-b659cc500476a7b4b94bc6659d46922be9465b99.tar.gz
rbw-b659cc500476a7b4b94bc6659d46922be9465b99.zip
stop using tokio::select!
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock41
1 files changed, 33 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 92a042c..4a42f2b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -391,15 +391,26 @@ dependencies = [
[[package]]
name = "futures-core"
-version = "0.3.26"
+version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
+checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
[[package]]
name = "futures-io"
-version = "0.3.26"
+version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
+checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
+
+[[package]]
+name = "futures-macro"
+version = "0.3.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
[[package]]
name = "futures-sink"
@@ -409,18 +420,19 @@ checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
[[package]]
name = "futures-task"
-version = "0.3.26"
+version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
+checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
[[package]]
name = "futures-util"
-version = "0.3.26"
+version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
+checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
dependencies = [
"futures-core",
"futures-io",
+ "futures-macro",
"futures-task",
"memchr",
"pin-project-lite",
@@ -1042,6 +1054,7 @@ dependencies = [
"daemonize",
"directories",
"env_logger",
+ "futures-util",
"hkdf",
"hmac",
"humantime",
@@ -1066,6 +1079,7 @@ dependencies = [
"textwrap",
"thiserror",
"tokio",
+ "tokio-stream",
"totp-lite",
"url",
"uuid",
@@ -1608,6 +1622,17 @@ dependencies = [
]
[[package]]
+name = "tokio-stream"
+version = "0.1.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
name = "tokio-util"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"