2019-03-06 03:47:18 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-session"
|
2021-11-23 00:21:00 +01:00
|
|
|
version = "0.5.0-beta.4"
|
2019-03-06 03:47:18 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-09-11 22:22:55 +02:00
|
|
|
description = "Sessions for Actix web"
|
|
|
|
keywords = ["http", "web", "framework", "async", "session"]
|
2019-03-06 03:47:18 +01:00
|
|
|
homepage = "https://actix.rs"
|
2020-10-03 02:32:01 +02:00
|
|
|
repository = "https://github.com/actix/actix-extras"
|
2020-07-14 12:16:32 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-03-06 03:47:18 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_session"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["cookie-session"]
|
2019-03-30 05:13:39 +01:00
|
|
|
cookie-session = ["actix-web/secure-cookies"]
|
2019-03-06 03:47:18 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2021-10-21 15:10:00 +02:00
|
|
|
actix-web = { version = "4.0.0-beta.10", default_features = false, features = ["cookies"] }
|
2021-06-27 08:02:38 +02:00
|
|
|
actix-service = "2.0.0"
|
2021-03-23 23:35:27 +01:00
|
|
|
|
|
|
|
derive_more = "0.99.5"
|
2021-03-21 10:38:29 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|
2021-03-23 23:35:27 +01:00
|
|
|
log = "0.4"
|
2019-03-06 03:47:18 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-03-22 06:20:10 +01:00
|
|
|
time = "0.2.23"
|
2019-03-06 03:47:18 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-21 23:50:26 +01:00
|
|
|
actix-rt = "2"
|