1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00

update migration

This commit is contained in:
Nikolay Kim 2019-06-15 22:20:46 +06:00
parent d293ae2a69
commit eaa371db8b

View file

@ -1,5 +1,19 @@
## 1.0.1
* Cors middleware has been moved to `actix-cors` crate
instead of
```rust
use actix_web::middleware::cors::Cors;
```
use
```rust
use actix_cors::Cors;
```
* Identity middleware has been moved to `actix-identity` crate
instead of