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:
parent
a98e53ecb8
commit
81b0c32062
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue