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

48 lines
1.3 KiB
TOML
Raw Normal View History

2017-12-28 21:14:04 -08:00
[package]
name = "actix-redis"
2022-07-09 20:11:56 +01:00
version = "0.12.0"
2017-12-28 21:14:04 -08:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Redis integration for Actix"
license = "MIT OR Apache-2.0"
2022-07-09 20:14:27 +01:00
keywords = ["actix", "redis", "async"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
2017-12-29 01:10:27 -08:00
categories = ["network-programming", "asynchronous"]
2019-03-29 11:31:48 -07:00
edition = "2018"
2017-12-28 21:14:04 -08:00
2022-07-09 20:14:27 +01:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
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-web"]
2017-12-29 01:20:29 -08:00
2017-12-28 21:14:04 -08:00
[dependencies]
2022-07-09 20:11:14 +01:00
actix = { version = "0.13", default-features = false }
2022-02-03 22:40:02 +00:00
actix-rt = { version = "2.1", default-features = false }
2022-03-01 04:12:20 +00:00
actix-service = "2"
actix-tls = { version = "3", default-features = false, features = ["connect"] }
2019-07-08 14:51:54 -04:00
log = "0.4.6"
backoff = "0.4.0"
2022-03-01 04:12:20 +00:00
derive_more = "0.99.5"
futures-core = { version = "0.3.7", default-features = false }
2022-07-09 20:11:14 +01:00
redis-async = "0.13"
2021-12-29 10:22:56 +00:00
time = "0.3"
2022-02-03 22:11:59 +00:00
tokio = { version = "1.13.1", features = ["sync"] }
2022-07-09 20:11:14 +01:00
tokio-util = "0.7"
2022-02-25 23:05:11 +00:00
actix-web = { version = "4", default_features = false, optional = true }
2017-12-29 01:10:27 -08:00
[dev-dependencies]
2022-02-03 22:33:47 +00:00
actix-test = "0.1.0-beta.12"
2022-02-25 23:05:11 +00:00
actix-web = { version = "4", default_features = false, features = ["macros"] }
2022-02-03 22:14:13 +00:00
env_logger = "0.9"
2021-06-27 07:02:38 +01:00
serde = { version = "1.0.101", features = ["derive"] }