2019-03-06 03:47:18 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-session"
|
|
|
|
version = "0.1.0"
|
|
|
|
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"
|
|
|
|
documentation = "https://docs.rs/actix-web/"
|
|
|
|
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
|
|
|
|
cookie-session = ["cookie/secure"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = { path=".." }
|
2019-03-09 23:56:18 +01:00
|
|
|
actix-codec = "0.1.1"
|
|
|
|
actix-service = "0.3.3"
|
|
|
|
actix-utils = "0.3.3"
|
2019-03-06 03:47:18 +01:00
|
|
|
actix-http = { git = "https://github.com/actix/actix-http.git" }
|
|
|
|
actix-router = { git = "https://github.com/actix/actix-net.git" }
|
|
|
|
actix-server = { git = "https://github.com/actix/actix-net.git" }
|
|
|
|
|
|
|
|
bytes = "0.4"
|
|
|
|
cookie = { version="0.11", features=["percent-encode"], optional=true }
|
|
|
|
derive_more = "0.14"
|
|
|
|
encoding = "0.2"
|
|
|
|
futures = "0.1"
|
|
|
|
hashbrown = "0.1.8"
|
|
|
|
log = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
time = "0.1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-09 23:56:18 +01:00
|
|
|
actix-rt = "0.2.0"
|