2017-12-29 06:14:04 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-redis"
|
2018-02-28 17:05:44 +01:00
|
|
|
version = "0.2.0"
|
2017-12-29 06:14:04 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-01-23 07:50:04 +01:00
|
|
|
description = "Redis integration for actix framework"
|
2017-12-29 10:10:27 +01:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
2018-01-23 19:06:43 +01:00
|
|
|
keywords = ["web", "redis", "async", "actix", "tokio"]
|
2017-12-29 10:10:27 +01: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"]
|
2017-12-29 06:14:04 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_redis"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2018-01-23 08:16:24 +01:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "actix/actix-redis", branch = "master" }
|
|
|
|
codecov = { repository = "actix/actix-redis", branch = "master", service = "github" }
|
|
|
|
|
2017-12-29 10:20:29 +01:00
|
|
|
[features]
|
|
|
|
default = ["web"]
|
|
|
|
|
|
|
|
# actix-web integration
|
2018-01-22 09:40:50 +01:00
|
|
|
web = ["actix-web", "cookie", "http", "rand", "serde", "serde_json"]
|
2017-12-29 10:20:29 +01:00
|
|
|
|
2017-12-29 06:14:04 +01:00
|
|
|
[dependencies]
|
2018-02-17 23:01:06 +01:00
|
|
|
actix = "0.5"
|
2018-01-22 09:40:50 +01:00
|
|
|
|
|
|
|
log = "0.4"
|
|
|
|
backoff = "0.1"
|
2017-12-29 06:14:04 +01:00
|
|
|
failure = "^0.1.1"
|
|
|
|
futures = "0.1"
|
|
|
|
tokio-io = "0.1"
|
|
|
|
tokio-core = "0.1"
|
2017-12-29 10:10:27 +01:00
|
|
|
redis-async = "0.0"
|
|
|
|
|
2018-01-22 09:40:50 +01:00
|
|
|
# actix web session
|
2018-04-10 04:35:30 +02:00
|
|
|
# actix-web = { version="0.4", optional=true }
|
|
|
|
actix-web = { git = "https://github.com/actix/actix-web.git", optional=true }
|
2018-01-22 09:40:50 +01:00
|
|
|
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 }
|
2017-12-29 10:10:27 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-01-22 09:40:50 +01:00
|
|
|
env_logger = "0.5"
|