2019-03-06 02:47:18 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-session"
|
2019-04-03 04:49:31 +00:00
|
|
|
version = "0.1.0-alpha.3"
|
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"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
workspace = ".."
|
|
|
|
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-04-03 04:49:31 +00:00
|
|
|
actix-web = "1.0.0-alpha.3"
|
2019-03-30 05:06:14 +00:00
|
|
|
actix-service = "0.3.4"
|
2019-03-06 02:47:18 +00:00
|
|
|
bytes = "0.4"
|
|
|
|
derive_more = "0.14"
|
2019-03-28 20:46:26 +00:00
|
|
|
futures = "0.1.25"
|
2019-03-06 02:47:18 +00:00
|
|
|
hashbrown = "0.1.8"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
time = "0.1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-28 20:46:26 +00:00
|
|
|
actix-rt = "0.2.2"
|