From 03c2a4dcb3db7b02d499fafe27b34bf4ea1902d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 17:00:16 +0000 Subject: [PATCH] Bump futures from 0.3.26 to 0.3.28 Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.26 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.26...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 ++++---- dozer-cache/Cargo.toml | 2 +- dozer-cli/Cargo.toml | 2 +- dozer-ingestion/Cargo.toml | 2 +- dozer-tests/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92331ccdc5..a2384654d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3431,9 +3431,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" dependencies = [ "futures-channel", "futures-core", @@ -3462,9 +3462,9 @@ checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" [[package]] name = "futures-executor" -version = "0.3.26" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" dependencies = [ "futures-core", "futures-task", diff --git a/dozer-cache/Cargo.toml b/dozer-cache/Cargo.toml index c4500e4351..6cf2211ec9 100644 --- a/dozer-cache/Cargo.toml +++ b/dozer-cache/Cargo.toml @@ -14,7 +14,7 @@ dozer-tracing = { path = "../dozer-tracing" } tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] } tempdir = "0.3.7" -futures = "0.3.26" +futures = "0.3.28" unicode-segmentation = "1.10.1" itertools = "0.10.5" roaring = "0.10.1" diff --git a/dozer-cli/Cargo.toml b/dozer-cli/Cargo.toml index c2f780eb31..a06226a9f1 100644 --- a/dozer-cli/Cargo.toml +++ b/dozer-cli/Cargo.toml @@ -31,7 +31,7 @@ include_dir = "0.7.3" handlebars = "4.3.7" rustyline = "11.0.0" rustyline-derive = "0.9.0" -futures = "0.3.26" +futures = "0.3.28" page_size = "0.5.0" reqwest = { version = "0.11.20", features = [ "rustls-tls", diff --git a/dozer-ingestion/Cargo.toml b/dozer-ingestion/Cargo.toml index de9ae62f06..9caf1b1653 100644 --- a/dozer-ingestion/Cargo.toml +++ b/dozer-ingestion/Cargo.toml @@ -12,7 +12,7 @@ dozer-types = { path = "../dozer-types" } dozer-log = { path = "../dozer-log" } tokio = { version = "1", features = ["full"] } -futures = "0.3.26" +futures = "0.3.28" # Postgres connector postgres-protocol = "0.6.4" postgres-types = { version = "0.2.4", features = [ diff --git a/dozer-tests/Cargo.toml b/dozer-tests/Cargo.toml index 468427412b..43523054c9 100644 --- a/dozer-tests/Cargo.toml +++ b/dozer-tests/Cargo.toml @@ -31,7 +31,7 @@ reqwest = { version = "0.11.20", features = ["json", "rustls-tls"], default-feat tokio = { version = "1.25.0", features = ["full", "rt"] } bson = { version = "2.7.0", optional = true } mongodb = { version = "2.6.1", optional = true } -futures = { version = "0.3.26", optional = true } +futures = { version = "0.3.28", optional = true } env_logger = "0.10.0" clap = { version = "4.4.1", features = ["derive"] } rusqlite = { version = "0.28.0", features = ["bundled", "column_decltype", "hooks"] }