diff --git a/.travis.yml b/.travis.yml
index 7f61201f6..c3698625e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -42,7 +42,7 @@ script:
after_success:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
- cargo doc --all-features --no-deps &&
+ cargo doc --all-features &&
echo "" > target/doc/index.html &&
git clone https://github.com/davisp/ghp-import.git &&
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc &&
diff --git a/src/app.rs b/src/app.rs
index a6dfdd554..9cdfc436a 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -8,7 +8,7 @@ use actix_http::encoding::{Decoder, Encoder};
use actix_server_config::ServerConfig;
use actix_service::boxed::{self, BoxedNewService};
use actix_service::{
- ApplyTransform, IntoNewService, IntoTransform, NewService, Transform,
+ apply_transform, IntoNewService, IntoTransform, NewService, Transform,
};
#[cfg(any(feature = "brotli", feature = "flate2-zlib", feature = "flate2-rust"))]
use bytes::Bytes;
@@ -138,7 +138,7 @@ where
F: IntoTransform>,
{
let fref = Rc::new(RefCell::new(None));
- let endpoint = ApplyTransform::new(mw, AppEntry::new(fref.clone()));
+ let endpoint = apply_transform(mw, AppEntry::new(fref.clone()));
AppRouter {
endpoint,
chain: self.chain,
@@ -426,7 +426,7 @@ where
B1: MessageBody,
F: IntoTransform,
{
- let endpoint = ApplyTransform::new(mw, self.endpoint);
+ let endpoint = apply_transform(mw, self.endpoint);
AppRouter {
endpoint,
chain: self.chain,