2017-12-29 06:14:04 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-redis"
|
2023-09-16 04:07:34 +02:00
|
|
|
version = "0.13.0"
|
2017-12-29 06:14:04 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2022-07-21 04:07:06 +02:00
|
|
|
description = "Actor-based Redis client"
|
2022-07-09 21:14:27 +02:00
|
|
|
keywords = ["actix", "redis", "async"]
|
2020-10-03 02:32:01 +02:00
|
|
|
homepage = "https://actix.rs"
|
2021-12-08 08:29:12 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2017-12-29 10:10:27 +01:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2023-09-16 01:30:38 +02:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2017-12-29 06:14:04 +01:00
|
|
|
|
2022-07-09 21:14:27 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2023-04-11 13:22:28 +02:00
|
|
|
all-features = true
|
2022-07-09 21:14:27 +02:00
|
|
|
|
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
|
2022-03-06 00:22:14 +01:00
|
|
|
web = ["actix-web"]
|
2017-12-29 10:20:29 +01:00
|
|
|
|
2017-12-29 06:14:04 +01:00
|
|
|
[dependencies]
|
2022-07-09 21:11:14 +02:00
|
|
|
actix = { version = "0.13", default-features = false }
|
2022-02-03 23:40:02 +01:00
|
|
|
actix-rt = { version = "2.1", default-features = false }
|
2022-03-01 05:12:20 +01:00
|
|
|
actix-service = "2"
|
|
|
|
actix-tls = { version = "3", default-features = false, features = ["connect"] }
|
2021-03-22 06:07:45 +01:00
|
|
|
|
2019-07-08 20:51:54 +02:00
|
|
|
log = "0.4.6"
|
2022-03-06 00:22:14 +01:00
|
|
|
backoff = "0.4.0"
|
2023-01-07 02:08:01 +01:00
|
|
|
derive_more = "0.99.7"
|
2021-03-22 06:07:45 +01:00
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
2023-09-16 02:33:09 +02:00
|
|
|
redis-async = "0.16"
|
2021-12-29 11:22:56 +01:00
|
|
|
time = "0.3"
|
2023-01-10 10:03:27 +01:00
|
|
|
tokio = { version = "1.18.4", features = ["sync"] }
|
2022-07-09 21:11:14 +02:00
|
|
|
tokio-util = "0.7"
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4", default-features = false, optional = true }
|
2017-12-29 10:10:27 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-03 23:33:47 +01:00
|
|
|
actix-test = "0.1.0-beta.12"
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4", default-features = false, features = ["macros"] }
|
2024-01-22 16:56:30 +01:00
|
|
|
env_logger = "0.11"
|
2021-06-27 08:02:38 +02:00
|
|
|
serde = { version = "1.0.101", features = ["derive"] }
|