diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index e1e900594..236436bb1 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,5 +1,6 @@ # Changes +## [0.1.0] - 2019-04-xx ### Changed diff --git a/actix-http/src/client/connector.rs b/actix-http/src/client/connector.rs index 1c9a3aab0..ed6207f9f 100644 --- a/actix-http/src/client/connector.rs +++ b/actix-http/src/client/connector.rs @@ -57,8 +57,7 @@ impl Connector<(), ()> { let ssl = { #[cfg(feature = "ssl")] { - use log::error; - use openssl::ssl::{SslConnector, SslMethod}; + use openssl::ssl::SslMethod; let mut ssl = SslConnector::builder(SslMethod::tls()).unwrap(); let _ = ssl diff --git a/actix-web-actors/Cargo.toml b/actix-web-actors/Cargo.toml index 084598a13..f56b47fbf 100644 --- a/actix-web-actors/Cargo.toml +++ b/actix-web-actors/Cargo.toml @@ -18,7 +18,7 @@ name = "actix_web_actors" path = "src/lib.rs" [dependencies] -actix = "0.8.0-alpha.3" +actix = "0.8.0" actix-web = "1.0.0-alpha.5" actix-http = "0.1.0-alpha.5" actix-codec = "0.1.2"