1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/actix-redis/Cargo.toml

49 lines
1.3 KiB
TOML
Raw Normal View History

2017-12-29 06:14:04 +01:00
[package]
name = "actix-redis"
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"]
homepage = "https://actix.rs"
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"]
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
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"] }
2019-07-08 20:51:54 +02:00
log = "0.4.6"
backoff = "0.4.0"
2023-01-07 02:08:01 +01:00
derive_more = "0.99.7"
futures-core = { version = "0.3.7", default-features = false }
redis-async = "0.16"
2021-12-29 11:22:56 +01:00
time = "0.3"
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"] }
2023-01-07 02:08:01 +01:00
env_logger = "0.10"
2021-06-27 08:02:38 +02:00
serde = { version = "1.0.101", features = ["derive"] }