1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00

60 lines
1.4 KiB
TOML
Raw Normal View History

2017-12-28 21:14:04 -08:00
[package]
name = "actix-redis"
2020-09-13 04:28:08 +01:00
version = "0.9.1"
2017-12-28 21:14:04 -08:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2020-09-11 21:22:55 +01:00
description = "Redis integration for Actix web"
license = "MIT OR Apache-2.0"
2017-12-29 01:10:27 -08:00
readme = "README.md"
2020-09-11 21:22:55 +01:00
keywords = ["actix", "redis", "async", "session"]
2020-01-30 18:08:20 +09:00
homepage = "https://github.com/actix/actix-extras"
repository = "https://github.com/actix/actix-extras.git"
2017-12-29 01:10:27 -08:00
documentation = "https://docs.rs/actix-redis/"
categories = ["network-programming", "asynchronous"]
2020-02-18 08:01:26 +09:00
exclude = [".cargo/config"]
2019-03-29 11:31:48 -07:00
edition = "2018"
2017-12-28 21:14:04 -08:00
[lib]
name = "actix_redis"
path = "src/lib.rs"
2017-12-29 01:20:29 -08:00
[features]
default = ["web"]
# actix-web integration
web = [
"actix-http/actors",
"actix-service",
"actix-web",
"actix-session/cookie-session",
"rand",
"serde",
"serde_json"
]
2017-12-29 01:20:29 -08:00
2017-12-28 21:14:04 -08:00
[dependencies]
actix = "0.10.0"
2020-09-11 21:22:55 +01:00
actix-utils = "2.0.0"
2018-01-22 00:40:50 -08:00
2019-07-08 14:51:54 -04:00
log = "0.4.6"
backoff = "0.2.1"
2019-12-15 23:46:03 +06:00
derive_more = "0.99.2"
2020-05-21 17:17:56 +09:00
futures-util = { version = "0.3.5", default-features = false }
redis-async = "0.6.3"
actix-rt = "1.1.1"
time = "0.2.9"
2019-12-20 22:09:08 +06:00
tokio = "0.2.6"
tokio-util = "0.3.0"
2017-12-29 01:10:27 -08:00
2020-01-30 01:50:18 +00:00
# actix-session
actix-web = { version = "3.0.0", default_features = false, optional = true }
actix-http = { version = "2.0.0", optional = true }
actix-service = { version = "1.0.6", optional = true }
2020-09-11 21:22:55 +01:00
actix-session = { version = "0.4.0", optional = true }
2019-07-08 14:49:34 -04:00
rand = { version = "0.7.0", optional = true }
2020-07-14 19:20:42 +09:00
serde = { version = "1.0.101", optional = true }
2019-07-08 14:49:34 -04:00
serde_json = { version = "1.0.40", optional = true }
2017-12-29 01:10:27 -08:00
[dev-dependencies]
2020-02-18 08:11:36 +09:00
env_logger = "0.7"
serde_derive = "1.0"