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

45 lines
1.3 KiB
TOML
Raw Normal View History

2017-12-29 06:14:04 +01:00
[package]
name = "actix-redis"
2022-03-15 19:01:31 +01:00
version = "0.11.0"
2017-12-29 06:14:04 +01:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Redis integration for Actix"
license = "MIT OR Apache-2.0"
2020-09-11 22:22:55 +02:00
keywords = ["actix", "redis", "async", "session"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
2017-12-29 10:10:27 +01:00
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
web = ["actix-web"]
2017-12-29 10:20:29 +01:00
2017-12-29 06:14:04 +01:00
[dependencies]
2022-03-01 05:12:20 +01:00
actix = { version = "0.12", 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"
2022-03-01 05:12:20 +01:00
derive_more = "0.99.5"
futures-core = { version = "0.3.7", default-features = false }
redis-async = { version = "0.12", default-features = false, features = ["tokio10"] }
2021-12-29 11:22:56 +01:00
time = "0.3"
2022-02-03 23:11:59 +01:00
tokio = { version = "1.13.1", features = ["sync"] }
tokio-util = "0.6.1"
2022-02-26 00:05:11 +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"
2022-02-26 00:05:11 +01:00
actix-web = { version = "4", default_features = false, features = ["macros"] }
2022-02-03 23:14:13 +01:00
env_logger = "0.9"
2021-06-27 08:02:38 +02:00
serde = { version = "1.0.101", features = ["derive"] }