2018-04-13 09:18:42 +08:00
|
|
|
[package]
|
2019-07-11 15:27:17 -04:00
|
|
|
name = "redis_session"
|
2022-02-02 01:45:20 +00:00
|
|
|
version = "1.0.0"
|
2022-02-02 01:43:51 +00:00
|
|
|
edition = "2021"
|
2018-04-13 09:18:42 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-12 16:49:45 +01:00
|
|
|
actix-web = "3"
|
|
|
|
actix-session = "0.4"
|
|
|
|
actix-redis = "0.9"
|
2020-12-14 19:30:06 +08:00
|
|
|
env_logger = "0.8"
|
2020-09-12 16:49:45 +01:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
|
|
|
actix-service = "1"
|
|
|
|
actix-http = "2"
|
2020-04-13 12:36:49 +03:00
|
|
|
rand = "0.7.3"
|
2020-09-12 16:49:45 +01:00
|
|
|
time = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "1"
|