actix-jwt-session 1.0.5

Full featured JWT session managment for actix
Documentation
[package]
name = "actix-jwt-session"
version = "1.0.5"
edition = "2021"
description = "Full featured JWT session managment for actix"
license = "MIT"
keywords = ["actix-web", "session", "jwt", "jsonwebtoken"]
categories = ["encoding", "web-programming::http-server", "authentication"]

[features]
default = ['use-redis', 'use-tracing', 'panic-bad-ttl', 'hashing', "routes"]
use-redis = ["redis", "r2d2"]
use-tracing = ['tracing']
override-bad-ttl = []
panic-bad-ttl = []
hashing = ["argon2"]
redis = ["dep:redis"]
routes = []

[dependencies]
actix-web = "4"
async-trait = "0.1.72"
bincode = "1.3.3"
futures = "0.3.28"
futures-lite = "1.13.0"
futures-util = { version = "0.3.28", features = ['async-await'] }
jsonwebtoken = "8.3.0"
rand = "0.8.5"
redis = { version = "0.24", optional = true, default-features = false, features = ["rustls", "tokio", "tokio-rustls", "async-trait", "bytes", "json", "connection-manager", "serde", "serde_json", "aio", "futures", "futures-rustls", "r2d2", "futures-util", "tokio-comp"] }
ring = "0.16.20"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
thiserror = "1.0.44"
tokio = { version = "1.30.0", features = ["full"] }
tracing = { version = "0.1.37", optional = true }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
argon2 = { version = "0.5.1", optional = true }
cookie = "0.17.0"
time = { version = "0.3.28", features = ["serde"] }
r2d2 = { version = "0.8.10", optional = true }
deadpool = { version = "0.10.0", features = ["serde"] }
deadpool-redis = { version = "0.14.0", features = ["serde"] }
derive_more = { version = "0.99.17", default-features = false, features = ["constructor", "deref"] }

[[test]]
name = "ensure_redis_flow"
path = "./tests/ensure_redis_flow.rs"

[dev-dependencies]
garde = "0.14.0"
ring = "0.16.20"