From db2193b8c5c6e8f40b9d85d7ee8618baa4af7fb5 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 2 Mar 2024 21:29:40 +0000 Subject: [PATCH] chore: bump futures-* deps --- actix-identity/Cargo.toml | 2 +- actix-redis/Cargo.toml | 2 +- actix-session/Cargo.toml | 2 +- actix-web-httpauth/Cargo.toml | 4 ++-- actix-ws/Cargo.toml | 2 +- actix-ws/examples/chat.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index 56cb88953..7f8542195 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -24,7 +24,7 @@ actix-utils = "3" actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies"] } derive_more = "0.99.7" -futures-core = "0.3.7" +futures-core = "0.3.17" serde = { version = "1", features = ["derive"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] } diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index 806cca2fa..1507d3295 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -34,7 +34,7 @@ actix-tls = { version = "3", default-features = false, features = ["connect"] } log = "0.4.6" backoff = "0.4.0" derive_more = "0.99.7" -futures-core = { version = "0.3.7", default-features = false } +futures-core = "0.3.17" redis-async = "0.16" time = "0.3" tokio = { version = "1.18.4", features = ["sync"] } diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index 371345e7a..f1baaeba0 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -39,7 +39,7 @@ tracing = { version = "0.1.30", default-features = false, features = ["log"] } # redis-actor-session actix = { version = "0.13", default-features = false, optional = true } actix-redis = { version = "0.12", optional = true } -futures-core = { version = "0.3.7", default-features = false, optional = true } +futures-core = { version = "0.3.17", optional = true } # redis-rs-session redis = { version = "0.24", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true } diff --git a/actix-web-httpauth/Cargo.toml b/actix-web-httpauth/Cargo.toml index d265efb5e..4ed3255aa 100644 --- a/actix-web-httpauth/Cargo.toml +++ b/actix-web-httpauth/Cargo.toml @@ -22,8 +22,8 @@ all-features = true actix-utils = "3" actix-web = { version = "4.1", default-features = false } -base64 = "0.21" -futures-core = "0.3.7" +base64 = "0.22" +futures-core = "0.3.17" futures-util = { version = "0.3.17", default-features = false, features = ["std"] } log = "0.4" pin-project-lite = "0.2.7" diff --git a/actix-ws/Cargo.toml b/actix-ws/Cargo.toml index a59415cff..7b7425af5 100644 --- a/actix-ws/Cargo.toml +++ b/actix-ws/Cargo.toml @@ -25,7 +25,7 @@ tokio = { version = "1", features = ["sync"] } actix-rt = "2.6" actix-web = "4.0.1" anyhow = "1.0" -futures = "0.3" +futures-util = "0.3.17" log = "0.4" pretty_env_logger = "0.5" tokio = { version = "1", features = ["sync"] } diff --git a/actix-ws/examples/chat.rs b/actix-ws/examples/chat.rs index 035ce7a49..ea034df89 100644 --- a/actix-ws/examples/chat.rs +++ b/actix-ws/examples/chat.rs @@ -5,7 +5,7 @@ use std::{ use actix_web::{middleware::Logger, web, App, HttpRequest, HttpResponse, HttpServer}; use actix_ws::{Message, Session}; -use futures::stream::{FuturesUnordered, StreamExt as _}; +use futures_util::{stream::FuturesUnordered, StreamExt as _}; use log::info; use tokio::sync::Mutex;