From 0eed9e525775d97ace7ed2eca49c29b41e15e898 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 10 Apr 2019 20:51:57 -0700 Subject: [PATCH] add more migration --- MIGRATION.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/MIGRATION.md b/MIGRATION.md index 21be95c93..1a8683cda 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -96,7 +96,7 @@ HttpRequest's api. ``` -* AsyncResponder is deprecated. +* AsyncResponder is removed. instead of @@ -142,6 +142,8 @@ HttpRequest's api. }) } + use + ```rust fn index(body: Bytes) -> Responder { ... @@ -164,6 +166,13 @@ HttpRequest's api. use `use actix_multipart::Multipart` +* Request/response compression/decompression is not enabled by default. + To enable use `App::enable_encoding()` method. + +* `actix_web::server` module has been removed. To start http server use `actix_web::HttpServer` type + +* Actors support have been moved to `actix-web-actors` crate + ## 0.7.15