From 0d4a8e1b1c771704a3483fddb80e7e9b250f15a5 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 5 Apr 2019 10:35:14 -0700 Subject: [PATCH] update actix-connect --- actix-http/Cargo.toml | 2 +- actix-http/src/client/connector.rs | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 0aa264e2e..315dcd5ca 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -50,7 +50,7 @@ secure-cookies = ["ring"] [dependencies] actix-service = "0.3.4" actix-codec = "0.1.2" -actix-connect = "0.1.0" +actix-connect = "0.1.2" actix-utils = "0.3.5" actix-server-config = "0.1.0" actix-threadpool = "0.1.0" diff --git a/actix-http/src/client/connector.rs b/actix-http/src/client/connector.rs index 804756ced..05410a4ff 100644 --- a/actix-http/src/client/connector.rs +++ b/actix-http/src/client/connector.rs @@ -3,9 +3,7 @@ use std::marker::PhantomData; use std::time::Duration; use actix_codec::{AsyncRead, AsyncWrite}; -use actix_connect::{ - default_connector, Connect as TcpConnect, Connection as TcpConnection, -}; +use actix_connect::{default_connector, Connect as TcpConnect, TcpConnection}; use actix_service::{apply_fn, Service, ServiceExt}; use actix_utils::timeout::{TimeoutError, TimeoutService}; use http::Uri;