forked from redis-rs/redis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "redis"
version = "0.9.0"
authors = ["Armin Ronacher <[email protected]>", "Jan-Erik Rediger <[email protected]>"]
keywords = ["redis", "database"]
description = "Redis driver for Rust."
homepage = "https://github.com/mitsuhiko/redis-rs"
documentation = "https://docs.rs/redis"
license = "BSD-3-Clause"
readme = "README.md"
build = "build.rs"
#[dependencies.sha1]
#git = "https://github.com/mitsuhiko/rust-sha1.git"
#
#[dependencies.url]
#git = "https://github.com/servo/rust-url"
[features]
with-rustc-json = ["rustc-serialize"]
with-unix-sockets = ["unix_socket", "tokio-uds"]
with-system-unix-sockets = []
[dependencies]
sha1 = ">= 0.2, < 0.7"
url = "1.2"
rustc-serialize = { version = "0.3.16", optional = true }
unix_socket = { version = "0.5.0", optional = true }
combine = "3.2.0"
bytes = "0.4"
futures = "0.1"
tokio-executor = "0.1"
tokio-tcp = "0.1"
tokio-io = "0.1"
tokio-codec = "0.1"
tokio-uds = { version = "0.2", optional = true }
[dev-dependencies]
rand = "0.4"
net2 = "0.2"
bencher = "0.1"
partial-io = { version = "0.3", features = ["tokio", "quickcheck"] }
quickcheck = "0.6"
tokio = "0.1"
[[bench]]
name = "bench_basic"
harness = false