mirror of
https://github.com/actix/actix-extras.git
synced 2025-01-22 23:05:56 +01:00
prepare release
This commit is contained in:
parent
85cf3e2993
commit
33b09d78e9
@ -1,5 +1,10 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## 0.5.1 (2018-08-02)
|
||||||
|
|
||||||
|
* USe cookie 0.11
|
||||||
|
|
||||||
|
|
||||||
## 0.5.0 (2018-07-21)
|
## 0.5.0 (2018-07-21)
|
||||||
|
|
||||||
* Session cookie configuration
|
* Session cookie configuration
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-redis"
|
name = "actix-redis"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Redis integration for actix framework"
|
description = "Redis integration for actix framework"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
@ -36,11 +36,11 @@ futures = "0.1"
|
|||||||
tokio-io = "0.1"
|
tokio-io = "0.1"
|
||||||
tokio-codec = "0.1"
|
tokio-codec = "0.1"
|
||||||
tokio-tcp = "0.1"
|
tokio-tcp = "0.1"
|
||||||
redis-async = "0.3.2"
|
redis-async = "0.4"
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
|
|
||||||
# actix web session
|
# actix web session
|
||||||
actix-web = { version = "0.7", optional=true }
|
actix-web = { version = "^0.7.3", optional=true }
|
||||||
cookie = { version="0.11", features=["percent-encode", "secure"], optional=true }
|
cookie = { version="0.11", features=["percent-encode", "secure"], optional=true }
|
||||||
http = { version="0.1", optional=true }
|
http = { version="0.1", optional=true }
|
||||||
rand = { version="0.5", optional=true }
|
rand = { version="0.5", optional=true }
|
||||||
|
@ -65,9 +65,6 @@ impl SessionImpl for RedisSession {
|
|||||||
/// constructor of `RedisSessionBackend`. This is private key for cookie
|
/// constructor of `RedisSessionBackend`. This is private key for cookie
|
||||||
/// session, When this value is changed, all session data is lost.
|
/// session, When this value is changed, all session data is lost.
|
||||||
///
|
///
|
||||||
/// Note that whatever you write into your session is visible by the user (but
|
|
||||||
/// not modifiable).
|
|
||||||
///
|
|
||||||
/// Constructor panics if key length is less than 32 bytes.
|
/// Constructor panics if key length is less than 32 bytes.
|
||||||
pub struct RedisSessionBackend(Rc<Inner>);
|
pub struct RedisSessionBackend(Rc<Inner>);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user