mirror of
https://github.com/actix/actix-web.git
synced 2024-12-30 12:00:38 +00:00
update migration
This commit is contained in:
parent
d293ae2a69
commit
eaa371db8b
1 changed files with 14 additions and 0 deletions
14
MIGRATION.md
14
MIGRATION.md
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue