2019-03-06 02:47:18 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-session"
|
2019-12-13 06:36:15 +00:00
|
|
|
version = "0.3.0"
|
2019-03-06 02:47:18 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Session for actix web framework."
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2019-03-26 19:50:51 +00:00
|
|
|
documentation = "https://docs.rs/actix-session/"
|
2019-03-06 02:47:18 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_session"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["cookie-session"]
|
|
|
|
|
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
2019-03-30 04:13:39 +00:00
|
|
|
cookie-session = ["actix-web/secure-cookies"]
|
2019-03-06 02:47:18 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-20 11:36:48 +00:00
|
|
|
actix-web = "2.0.0-rc"
|
2019-12-22 12:39:25 +00:00
|
|
|
actix-service = "1.0.1"
|
2019-12-13 06:36:15 +00:00
|
|
|
bytes = "0.5.3"
|
2019-11-25 11:59:14 +00:00
|
|
|
derive_more = "0.99.2"
|
2019-11-21 07:08:22 +00:00
|
|
|
futures = "0.3.1"
|
2019-03-06 02:47:18 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2019-04-20 00:23:17 +00:00
|
|
|
time = "0.1.42"
|
2019-03-06 02:47:18 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-11 13:20:20 +00:00
|
|
|
actix-rt = "1.0.0"
|