1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00
actix-extras/Cargo.toml

54 lines
1.5 KiB
TOML
Raw Normal View History

2017-12-28 21:14:04 -08:00
[package]
name = "actix-redis"
2019-03-29 11:31:48 -07:00
version = "0.6.0"
2017-12-28 21:14:04 -08:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-01-22 22:50:04 -08:00
description = "Redis integration for actix framework"
2017-12-29 01:10:27 -08:00
license = "MIT/Apache-2.0"
readme = "README.md"
2018-01-23 10:06:43 -08:00
keywords = ["web", "redis", "async", "actix", "tokio"]
2017-12-29 01:10:27 -08:00
homepage = "https://github.com/actix/actix-redis"
repository = "https://github.com/actix/actix-redis.git"
documentation = "https://docs.rs/actix-redis/"
categories = ["network-programming", "asynchronous"]
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
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"
2018-01-22 23:16:24 -08:00
[badges]
travis-ci = { repository = "actix/actix-redis", branch = "master" }
codecov = { repository = "actix/actix-redis", branch = "master", service = "github" }
2017-12-29 01:20:29 -08:00
[features]
default = ["web"]
# actix-web integration
2019-03-30 08:21:47 -07:00
web = ["actix/http", "actix-service", "actix-utils", "actix-web", "actix-session/cookie-session", "rand", "serde", "serde_json"]
2017-12-29 01:20:29 -08:00
2017-12-28 21:14:04 -08:00
[dependencies]
2019-03-29 11:31:48 -07:00
actix = "0.8.0-alpha.2"
2018-01-22 00:40:50 -08:00
log = "0.4"
backoff = "0.1"
2019-03-29 11:31:48 -07:00
derive_more = "0.14"
2017-12-28 21:14:04 -08:00
futures = "0.1"
tokio-io = "0.1"
2018-07-20 14:53:56 -07:00
tokio-codec = "0.1"
tokio-tcp = "0.1"
2018-08-02 11:35:34 -07:00
redis-async = "0.4"
2018-06-23 12:17:37 +08:00
time = "0.1"
2017-12-29 01:10:27 -08:00
2018-01-22 00:40:50 -08:00
# actix web session
2019-03-30 08:21:47 -07:00
actix-web = { version = "1.0.0-alpha.2", optional=true }
2019-03-29 11:31:48 -07:00
actix-utils = { version = "0.3.3", optional=true }
actix-service = { version = "0.3.4", optional=true }
2019-03-30 08:21:47 -07:00
actix-session = { version = "0.1.0-alpha.2", optional=true }
2019-03-29 11:31:48 -07:00
rand = { version="0.6.5", optional=true }
2018-01-22 00:40:50 -08:00
serde = { version="1.0", optional=true }
serde_json = { version="1.0", optional=true }
2017-12-29 01:10:27 -08:00
[dev-dependencies]
2019-03-29 11:31:48 -07:00
env_logger = "0.6"