mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-30 18:34:36 +01:00
prepare identity release 0.4.0-beta.1
This commit is contained in:
parent
7ab2b62810
commit
bb1cc7443f
@ -1,6 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.4.0-beta.1 - 2020-04-02
|
||||||
* Rename `CookieIdentityPolicy::{max_age => max_age_secs}`. [#168]
|
* Rename `CookieIdentityPolicy::{max_age => max_age_secs}`. [#168]
|
||||||
* Rename `CookieIdentityPolicy::{max_age_time => max_age}`. [#168]
|
* Rename `CookieIdentityPolicy::{max_age_time => max_age}`. [#168]
|
||||||
* Update `actix-web` dependency to 4.0.0 beta.
|
* Update `actix-web` dependency to 4.0.0 beta.
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-identity"
|
name = "actix-identity"
|
||||||
version = "0.3.1"
|
version = "0.4.0-beta.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Identity service for Actix web"
|
description = "Identity service for Actix web"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["actix", "auth", "identity", "web", "security"]
|
keywords = ["actix", "auth", "identity", "web", "security"]
|
||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
documentation = "https://docs.rs/actix-identity/"
|
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
@ -17,8 +16,7 @@ path = "src/lib.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "2.0.0-beta.5"
|
actix-service = "2.0.0-beta.5"
|
||||||
actix-web = { version = "4.0.0-beta.4", default-features = false, features = ["cookies", "secure-cookies"] }
|
actix-web = { version = "4.0.0-beta.5", default-features = false, features = ["cookies", "secure-cookies"] }
|
||||||
|
|
||||||
futures-util = { version = "0.3.7", default-features = false }
|
futures-util = { version = "0.3.7", default-features = false }
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
# actix-identity
|
# actix-identity
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-identity)](https://crates.io/crates/actix-identity)
|
|
||||||
[![Documentation](https://docs.rs/actix-identity/badge.svg)](https://docs.rs/actix-identity)
|
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-identity/0.2.1/status.svg)](https://deps.rs/crate/actix-identity/0.2.1)
|
|
||||||
[![Build Status](https://travis-ci.org/actix/actix-identity.svg?branch=master)](https://travis-ci.org/actix/actix-identity)
|
|
||||||
[![codecov](https://codecov.io/gh/actix/actix-identity/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-identity)
|
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-identity)
|
|
||||||
[![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
||||||
|
|
||||||
> Identity service for actix-web framework.
|
> Identity service for actix-web framework.
|
||||||
|
|
||||||
|
[![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors)
|
||||||
|
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.4.0-beta.1)](https://docs.rs/actix-cors/0.4.0-beta.1)
|
||||||
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors)
|
||||||
|
[![Dependency Status](https://deps.rs/crate/actix-cors/0.4.0-beta.1/status.svg)](https://deps.rs/crate/actix-cors/0.4.0-beta.1)
|
||||||
|
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
* [User Guide](https://actix.rs/docs/)
|
* [API Documentation](https://docs.rs/actix-identity)
|
||||||
* [API Documentation](https://docs.rs/actix-identity/)
|
|
||||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
|
||||||
* Cargo package: [actix-identity](https://crates.io/crates/actix-identity)
|
|
||||||
* Minimum Supported Rust Version (MSRV): 1.46
|
* Minimum Supported Rust Version (MSRV): 1.46
|
||||||
|
Loading…
Reference in New Issue
Block a user