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