From f062b4dee89759fca18246ade4b363e8196923af Mon Sep 17 00:00:00 2001 From: Thomas BESSOU Date: Sat, 25 May 2024 22:20:10 +0200 Subject: [PATCH] Fix Cargo.lock.msrv --- Cargo.lock.msrv | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 4ddbe9dae1..0bc434d30e 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -586,6 +586,17 @@ dependencies = [ "futures-util", ] +[[package]] +name = "futures-batch" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f444c45a1cb86f2a7e301469fd50a82084a60dadc25d94529a8312276ecb71a" +dependencies = [ + "futures", + "futures-timer", + "pin-utils", +] + [[package]] name = "futures-channel" version = "0.3.28" @@ -642,6 +653,12 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" +[[package]] +name = "futures-timer" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + [[package]] name = "futures-util" version = "0.3.28" @@ -1490,6 +1507,7 @@ dependencies = [ "criterion", "dashmap", "futures", + "futures-batch", "hashbrown 0.14.0", "histogram", "itertools 0.11.0", @@ -1514,6 +1532,7 @@ dependencies = [ "time", "tokio", "tokio-openssl", + "tokio-stream", "tracing", "tracing-subscriber", "url", @@ -1861,6 +1880,17 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-stream" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + [[package]] name = "toml_datetime" version = "0.6.3"