2017-12-28 21:14:04 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-redis"
|
2020-02-18 08:01:26 +09:00
|
|
|
version = "0.8.1"
|
2017-12-28 21:14:04 -08:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-01-22 22:50:04 -08:00
|
|
|
description = "Redis integration for actix framework"
|
2017-12-29 01:10:27 -08:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
2018-01-23 10:06:43 -08:00
|
|
|
keywords = ["web", "redis", "async", "actix", "tokio"]
|
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
|
2019-12-15 23:46:03 +06:00
|
|
|
web = ["actix/http", "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]
|
2019-12-20 22:09:08 +06:00
|
|
|
actix = "0.9.0"
|
2019-12-15 23:46:03 +06:00
|
|
|
actix-utils = "1.0.3"
|
2018-01-22 00:40:50 -08:00
|
|
|
|
2019-07-08 14:51:54 -04:00
|
|
|
log = "0.4.6"
|
2019-07-08 14:49:34 -04:00
|
|
|
backoff = "0.1.5"
|
2019-12-15 23:46:03 +06:00
|
|
|
derive_more = "0.99.2"
|
|
|
|
futures = "0.3.1"
|
|
|
|
redis-async = "0.6.1"
|
|
|
|
actix-rt = "1.0.0"
|
2019-07-08 14:49:34 -04:00
|
|
|
time = "0.1.42"
|
2019-12-20 22:09:08 +06:00
|
|
|
tokio = "0.2.6"
|
2019-12-15 23:46:03 +06:00
|
|
|
tokio-util = "0.2.0"
|
2017-12-29 01:10:27 -08:00
|
|
|
|
2020-01-30 01:50:18 +00:00
|
|
|
# actix-session
|
2019-12-26 15:47:31 +09:00
|
|
|
actix-web = { version = "2.0.0", optional = true }
|
2019-12-15 23:46:03 +06:00
|
|
|
actix-service = { version = "1.0.0", optional = true }
|
2019-12-20 22:09:08 +06:00
|
|
|
actix-session = { version = "0.3.0", optional = true }
|
2019-07-08 14:49:34 -04:00
|
|
|
rand = { version = "0.7.0", optional = true }
|
2019-09-23 09:38:11 -04:00
|
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
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"
|