mirror of
https://github.com/actix/examples
synced 2025-06-26 17:17:42 +02:00
reduce futures dep
This commit is contained in:
@ -8,7 +8,7 @@ actix-web = "4"
|
||||
awc = { version = "3.0.0-beta.21", features = ["openssl"] }
|
||||
|
||||
env_logger = "0.9"
|
||||
futures = "0.3.1"
|
||||
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
|
||||
log = "0.4"
|
||||
serde = { version = "1.0.43", features = ["derive"] }
|
||||
serde_json = "1.0.16"
|
||||
|
@ -21,7 +21,7 @@ use actix_web::{
|
||||
App, Error, HttpResponse, HttpServer,
|
||||
};
|
||||
use awc::Client;
|
||||
use futures::StreamExt;
|
||||
use futures_util::StreamExt as _;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use validator::Validate;
|
||||
use validator_derive::Validate;
|
||||
|
Reference in New Issue
Block a user