1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-28 01:32:57 +01:00
actix-extras/Cargo.toml
2017-12-29 01:10:27 -08:00

37 lines
954 B
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"
[dependencies]
rand = "0.3"
http = "0.1"
bytes = "0.4"
failure = "^0.1.1"
futures = "0.1"
serde = "1.0"
serde_json = "1.0"
tokio-io = "0.1"
tokio-core = "0.1"
actix = "^0.3.5"
redis-async = "0.0"
cookie = { version="0.10", features=["percent-encode", "secure"] }
actix-web = { git = "https://github.com/actix/actix-web.git" }
[dev-dependencies]
env_logger = "0.4"