mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
prepare session release 0.5.0-beta.1
This commit is contained in:
parent
554a852dea
commit
0ba14f786e
@ -16,4 +16,4 @@
|
||||
* [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.42.0
|
||||
* Minimum Supported Rust Version (MSRV): 1.46
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
> Protobuf support for actix-web framework.
|
||||
|
||||
* Minimum supported Rust version: 1.42.0 or later
|
||||
- Minimum Supported Rust Version (MSRV): 1.46
|
||||
|
||||
## Example
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
- [API Documentation](https://docs.rs/actix-cors)
|
||||
- [Example Project](https://github.com/actix/examples/tree/HEAD/session/redis-session)
|
||||
- Minimum Supported Rust Version (MSRV): 1.42.0
|
||||
- Minimum Supported Rust Version (MSRV): 1.46
|
||||
|
||||
## Redis Session Backend
|
||||
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.5.0-beta.1 - 2020-04-02
|
||||
* Add `Session::entries`. [#170]
|
||||
* Rename `Session::{set => insert}` to match standard hash map naming. [#170]
|
||||
* Return values from `Session::remove`. [#170]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-session"
|
||||
version = "0.4.1"
|
||||
version = "0.5.0-beta.1"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Sessions for Actix web"
|
||||
readme = "README.md"
|
||||
@ -20,7 +20,7 @@ default = ["cookie-session"]
|
||||
cookie-session = ["actix-web/secure-cookies"]
|
||||
|
||||
[dependencies]
|
||||
actix-web = { version = "4.0.0-beta.4", default_features = false, features = ["cookies"] }
|
||||
actix-web = { version = "4.0.0-beta.5", default_features = false, features = ["cookies"] }
|
||||
actix-service = "2.0.0-beta.5"
|
||||
|
||||
derive_more = "0.99.5"
|
||||
|
@ -3,13 +3,13 @@
|
||||
> Sessions for Actix Web.
|
||||
|
||||
[![crates.io](https://img.shields.io/crates/v/actix-session?label=latest)](https://crates.io/crates/actix-session)
|
||||
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.4.1)](https://docs.rs/actix-session/0.4.1)
|
||||
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.5.0-beta.1)](https://docs.rs/actix-session/0.5.0-beta.1)
|
||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-session)
|
||||
[![Dependency Status](https://deps.rs/crate/actix-session/0.4.1/status.svg)](https://deps.rs/crate/actix-session/0.4.1)
|
||||
[![Dependency Status](https://deps.rs/crate/actix-session/0.5.0-beta.1/status.svg)](https://deps.rs/crate/actix-session/0.5.0-beta.1)
|
||||
|
||||
|
||||
## Documentation & Resources
|
||||
|
||||
- [API Documentation](https://docs.rs/actix-session)
|
||||
- [Example Projects](https://github.com/actix/examples/tree/HEAD/session)
|
||||
- Minimum Supported Rust Version (MSRV): 1.42.0
|
||||
- Minimum Supported Rust Version (MSRV): 1.46
|
||||
|
@ -10,7 +10,7 @@
|
||||
## Documentation & Resources
|
||||
|
||||
- [API Documentation](*https://docs.rs/actix-web-httpauth/)
|
||||
- Minimum Supported Rust Version (MSRV): 1.42.0
|
||||
- Minimum Supported Rust Version (MSRV): 1.46
|
||||
|
||||
## Features
|
||||
- Typed [Authorization] and [WWW-Authenticate] headers
|
||||
|
Loading…
Reference in New Issue
Block a user