1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-02 10:59:03 +01:00

45 lines
1.3 KiB
TOML
Raw Normal View History

2017-12-28 21:14:04 -08:00
[package]
name = "actix-redis"
2022-03-01 04:12:20 +00:00
version = "0.10.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"
2020-09-11 21:22:55 +01:00
keywords = ["actix", "redis", "async", "session"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
2017-12-29 01:10:27 -08:00
categories = ["network-programming", "asynchronous"]
2020-02-18 08:01:26 +09:00
exclude = [".cargo/config"]
2019-03-29 11:31:48 -07:00
edition = "2018"
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-03-01 04:12:20 +00:00
actix = { version = "0.12", 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 }
redis-async = { version = "0.12", default-features = false, features = ["tokio10"] }
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"] }
tokio-util = "0.6.1"
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"] }