mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "actix-redis"
|
|
version = "0.12.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actor-based Redis client"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["actix", "redis", "async"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-extras.git"
|
|
categories = ["network-programming", "asynchronous"]
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lib]
|
|
name = "actix_redis"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["web"]
|
|
|
|
# actix-web integration
|
|
web = ["actix-web"]
|
|
|
|
[dependencies]
|
|
actix = { version = "0.13", default-features = false }
|
|
actix-rt = { version = "2.1", default-features = false }
|
|
actix-service = "2"
|
|
actix-tls = { version = "3", default-features = false, features = ["connect"] }
|
|
|
|
log = "0.4.6"
|
|
backoff = "0.4.0"
|
|
derive_more = "0.99.5"
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
redis-async = "0.13"
|
|
time = "0.3"
|
|
tokio = { version = "1.13.1", features = ["sync"] }
|
|
tokio-util = "0.7"
|
|
actix-web = { version = "4", default_features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-test = "0.1.0-beta.12"
|
|
actix-web = { version = "4", default_features = false, features = ["macros"] }
|
|
env_logger = "0.9"
|
|
serde = { version = "1.0.101", features = ["derive"] }
|