mirror of
https://github.com/fafhrd91/actix-web
synced 2025-06-25 22:49:21 +02:00
move identity service separate crate
This commit is contained in:
17
MIGRATION.md
17
MIGRATION.md
@ -1,3 +1,20 @@
|
||||
## 1.0.1
|
||||
|
||||
* Identity middleware has been moved to `actix-identity` crate
|
||||
|
||||
instead of
|
||||
|
||||
```rust
|
||||
use actix_web::middleware::identity::{Identity, CookieIdentityPolicy, IdentityService};
|
||||
```
|
||||
|
||||
use
|
||||
|
||||
```rust
|
||||
use actix_identity::{Identity, CookieIdentityPolicy, IdentityService};
|
||||
```
|
||||
|
||||
|
||||
## 1.0
|
||||
|
||||
* Resource registration. 1.0 version uses generalized resource
|
||||
|
Reference in New Issue
Block a user