1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-03 20:45:46 +00:00
actix-web/actix-session/Cargo.toml

39 lines
921 B
TOML
Raw Normal View History

2019-03-06 02:47:18 +00:00
[package]
name = "actix-session"
2019-06-03 04:52:43 +00:00
version = "0.1.1"
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-06-16 16:10:22 +00:00
actix-web = "1.0.0"
actix-service = "0.4.1"
2019-03-06 02:47:18 +00:00
bytes = "0.4"
2019-06-16 16:10:22 +00:00
derive_more = "0.15.0"
2019-03-28 20:46:26 +00:00
futures = "0.1.25"
2019-06-16 16:10:22 +00:00
hashbrown = "0.5.0"
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-03-28 20:46:26 +00:00
actix-rt = "0.2.2"