1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-18 05:41:50 +01: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