From c19d293bb3c67f553ba3f21bed68b1c96c392e4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 01:50:55 +0000 Subject: [PATCH] build(deps): bump futures from 0.3.27 to 0.3.28 Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28) --- updated-dependencies: - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- tower-batch/Cargo.toml | 2 +- zebra-chain/Cargo.toml | 2 +- zebra-consensus/Cargo.toml | 2 +- zebra-network/Cargo.toml | 2 +- zebra-rpc/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-test/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c614675bcc..31cdb9c8f81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1508,9 +1508,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.27" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" dependencies = [ "futures-channel", "futures-core", @@ -1539,9 +1539,9 @@ checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" [[package]] name = "futures-executor" -version = "0.3.27" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" dependencies = [ "futures-core", "futures-task", diff --git a/tower-batch/Cargo.toml b/tower-batch/Cargo.toml index 6927bfe1a87..419b5ae7838 100644 --- a/tower-batch/Cargo.toml +++ b/tower-batch/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" edition = "2021" [dependencies] -futures = "0.3.27" +futures = "0.3.28" futures-core = "0.3.28" pin-project = "1.0.12" rayon = "1.7.0" diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 8e569b03171..5eb262c198f 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -79,7 +79,7 @@ serde_with = "2.3.1" serde-big-array = "0.5.1" # Processing -futures = "0.3.27" +futures = "0.3.28" itertools = "0.10.5" rayon = "1.7.0" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 7b9e3687a2f..59bc7f6174b 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -35,7 +35,7 @@ lazy_static = "1.4.0" once_cell = "1.17.1" serde = { version = "1.0.159", features = ["serde_derive"] } -futures = "0.3.27" +futures = "0.3.28" futures-util = "0.3.28" metrics = "0.20.1" thiserror = "1.0.40" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index e412e443a29..485ad4ff0c6 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -30,7 +30,7 @@ regex = "1.7.3" serde = { version = "1.0.159", features = ["serde_derive"] } thiserror = "1.0.40" -futures = "0.3.27" +futures = "0.3.28" tokio = { version = "1.27.0", features = ["net", "time", "tracing", "macros", "rt-multi-thread"] } tokio-stream = { version = "0.1.12", features = ["sync", "time"] } tokio-util = { version = "0.7.7", features = ["codec"] } diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index c87dadab304..b070876e168 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -33,7 +33,7 @@ proptest-impl = [ [dependencies] chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } -futures = "0.3.27" +futures = "0.3.28" # lightwalletd sends JSON-RPC requests over HTTP 1.1 hyper = { version = "0.14.25", features = ["http1", "server"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 9c2a3093d04..122dff68a6b 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -32,7 +32,7 @@ elasticsearch = [ bincode = "1.3.3" chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } dirs = "5.0.0" -futures = "0.3.27" +futures = "0.3.28" hex = "0.4.3" indexmap = "1.9.3" itertools = "0.10.5" diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index ce8be95725b..63bb7c04aec 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -19,7 +19,7 @@ regex = "1.7.3" tokio = { version = "1.27.0", features = ["full", "tracing", "test-util"] } tower = { version = "0.4.13", features = ["util"] } -futures = "0.3.27" +futures = "0.3.28" color-eyre = "0.6.2" # This is a transitive dependency via color-eyre. diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index a0050518c98..df3c42c6b09 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -111,7 +111,7 @@ lazy_static = "1.4.0" serde = { version = "1.0.159", features = ["serde_derive"] } toml = "0.7.3" -futures = "0.3.27" +futures = "0.3.28" rayon = "1.7.0" tokio = { version = "1.27.0", features = ["time", "rt-multi-thread", "macros", "tracing", "signal"] } tower = { version = "0.4.13", features = ["hedge", "limit"] }