1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/Cargo.toml
2018-01-22 22:37:38 -08:00

50 lines
1.3 KiB
TOML

[package]
name = "actix-redis"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Redis integration for actix web framework"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["http", "web", "framework", "async", "actix"]
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"]
[lib]
name = "actix_redis"
path = "src/lib.rs"
[features]
default = ["web"]
# actix-web integration
web = ["actix-web", "cookie", "http", "rand", "serde", "serde_json"]
[dependencies]
actix = "^0.4.4"
log = "0.4"
backoff = "0.1"
failure = "^0.1.1"
futures = "0.1"
tokio-io = "0.1"
tokio-core = "0.1"
redis-async = "0.0"
trust-dns-resolver = "0.7"
# actix web session
actix-web = { version="0.3", optional=true }
cookie = { version="0.10", features=["percent-encode", "secure"], optional=true }
http = { version="0.1", optional=true }
rand = { version="0.3", optional=true }
serde = { version="1.0", optional=true }
serde_json = { version="1.0", optional=true }
[dev-dependencies]
env_logger = "0.5"
[patch.crates-io]
"actix" = { git = 'https://github.com/actix/actix.git' }