diff --git a/Cargo.lock b/Cargo.lock index 8ba0214938..a762b7ea7f 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 f93e58872a..326c5b001c 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 = "12.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"] }