forked from redis-rs/redis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (44 loc) · 1.1 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
49
50
[package]
name = "redis"
version = "0.13.1-alpha.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"
repository = "https://github.com/mitsuhiko/redis-rs"
documentation = "https://docs.rs/redis"
license = "BSD-3-Clause"
readme = "README.md"
edition = "2018"
[dependencies]
dtoa = "0.4"
itoa = "0.4.3"
percent-encoding = "2.1"
sha1 = ">= 0.2, < 0.7"
url = "2.1"
combine = "3.8.1"
bytes = "0.4"
futures = "0.1"
tokio-executor = { version = "0.1", optional = true }
tokio-tcp = "0.1"
tokio-io = "0.1"
tokio-codec = "0.1"
tokio-sync = "0.1"
[features]
default = [ "executor", "geospatial" ]
geospatial = []
executor = [ "tokio-executor" ]
[target.'cfg(unix)'.dependencies]
tokio-uds = { version = "0.2" }
[dev-dependencies]
rand = "0.4"
net2 = "0.2"
assert_approx_eq = "1.0"
fnv = "1.0.5"
criterion = "0.2"
partial-io = { version = "0.3", features = ["tokio", "quickcheck"] }
quickcheck = "0.6"
tokio = "0.1"
[[bench]]
name = "bench_basic"
harness = false