1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-01 19:47:18 +00:00

add more migration

This commit is contained in:
Nikolay Kim 2019-04-10 20:51:57 -07:00
parent 7801fcb993
commit 0eed9e5257

View file

@ -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