mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 21:38:46 +00:00
update actix-connect
This commit is contained in:
parent
162cd3eecd
commit
0d4a8e1b1c
2 changed files with 2 additions and 4 deletions
|
@ -50,7 +50,7 @@ secure-cookies = ["ring"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "0.3.4"
|
actix-service = "0.3.4"
|
||||||
actix-codec = "0.1.2"
|
actix-codec = "0.1.2"
|
||||||
actix-connect = "0.1.0"
|
actix-connect = "0.1.2"
|
||||||
actix-utils = "0.3.5"
|
actix-utils = "0.3.5"
|
||||||
actix-server-config = "0.1.0"
|
actix-server-config = "0.1.0"
|
||||||
actix-threadpool = "0.1.0"
|
actix-threadpool = "0.1.0"
|
||||||
|
|
|
@ -3,9 +3,7 @@ use std::marker::PhantomData;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite};
|
use actix_codec::{AsyncRead, AsyncWrite};
|
||||||
use actix_connect::{
|
use actix_connect::{default_connector, Connect as TcpConnect, TcpConnection};
|
||||||
default_connector, Connect as TcpConnect, Connection as TcpConnection,
|
|
||||||
};
|
|
||||||
use actix_service::{apply_fn, Service, ServiceExt};
|
use actix_service::{apply_fn, Service, ServiceExt};
|
||||||
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
||||||
use http::Uri;
|
use http::Uri;
|
||||||
|
|
Loading…
Reference in a new issue