diff --git a/Cargo.toml b/Cargo.toml index 46ece2c28..19fb0e477 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ default = ["brotli", "flate2-zlib", "cookies", "client"] client = ["awc"] # brotli encoding, requires c compiler -brotli = ["actix-http/brotli2"] +brotli = ["actix-http/brotli"] # miniz-sys backend for flate2 crate flate2-zlib = ["actix-http/flate2-zlib"] diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 95ec1c35f..4656df391 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [0.1.0-alpha.2] - 2019-04-xx + +### Added + +* Re-export `actix_http::client::Connector` + + ## [0.1.0-alpha.1] - 2019-03-28 * Initial impl diff --git a/awc/Cargo.toml b/awc/Cargo.toml index de5142995..69c9e9831 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Nikolay Kim "] description = "Actix http client." readme = "README.md" diff --git a/awc/src/lib.rs b/awc/src/lib.rs index 9f5ca1f28..ca237798c 100644 --- a/awc/src/lib.rs +++ b/awc/src/lib.rs @@ -23,9 +23,8 @@ use std::cell::RefCell; use std::rc::Rc; -pub use actix_http::http; +pub use actix_http::{client::Connector, http}; -use actix_http::client::Connector; use actix_http::http::{HttpTryFrom, Method, Uri}; use actix_http::RequestHead;