1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 20:15:26 +01:00

36 lines
820 B
TOML
Raw Permalink Normal View History

2019-03-05 18:47:18 -08:00
[package]
name = "actix-session"
2019-12-13 12:36:15 +06:00
version = "0.3.0"
2019-03-05 18:47:18 -08: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 12:50:51 -07:00
documentation = "https://docs.rs/actix-session/"
2019-03-05 18:47:18 -08: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-29 21:13:39 -07:00
cookie-session = ["actix-web/secure-cookies"]
2019-03-05 18:47:18 -08:00
[dependencies]
2019-12-13 12:36:15 +06:00
actix-web = "2.0.0-alpha.5"
2019-12-11 19:20:20 +06:00
actix-service = "1.0.0"
2019-12-13 12:36:15 +06:00
bytes = "0.5.3"
2019-11-25 17:59:14 +06:00
derive_more = "0.99.2"
2019-11-21 13:08:22 +06:00
futures = "0.3.1"
2019-03-05 18:47:18 -08:00
serde = "1.0"
serde_json = "1.0"
2019-04-19 17:23:17 -07:00
time = "0.1.42"
2019-03-05 18:47:18 -08:00
[dev-dependencies]
2019-12-11 19:20:20 +06:00
actix-rt = "1.0.0"