Skip to content

Commit

Permalink
chore: bump futures-* deps
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Mar 2, 2024
1 parent f0c33a9 commit db2193b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion actix-identity/Cargo.toml
Expand Up @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion actix-redis/Cargo.toml
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion actix-session/Cargo.toml
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions actix-web-httpauth/Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion actix-ws/Cargo.toml
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion actix-ws/examples/chat.rs
Expand Up @@ -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;

Expand Down

0 comments on commit db2193b

Please sign in to comment.