1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-27 03:51:10 +00:00

test-server: Minimize futures dependencies

This commit is contained in:
Yuki Okushi 2020-05-18 11:47:33 +09:00
parent a98e53ecb8
commit 81b0c32062
No known key found for this signature in database
GPG key ID: B0986C85C0E2DAA1
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ awc = "2.0.0-alpha.1"
base64 = "0.11"
bytes = "0.5.3"
futures = "0.3.1"
futures-core = { version = "0.3.5", default-features = false }
http = "0.2.0"
log = "0.4"
env_logger = "0.6"

View file

@ -7,7 +7,7 @@ use actix_rt::{net::TcpStream, System};
use actix_server::{Server, ServiceFactory};
use awc::{error::PayloadError, ws, Client, ClientRequest, ClientResponse, Connector};
use bytes::Bytes;
use futures::Stream;
use futures_core::stream::Stream;
use http::Method;
use net2::TcpBuilder;