forked from redis-rs/redis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (48 loc) · 1.36 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
51
52
53
54
55
56
57
[package]
name = "redis"
version = "0.13.1-alpha.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>", "Jan-Erik Rediger <janerik@fnordig.de>"]
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.5"
futures-util = { version = "0.3.0", features = ["sink"], default-features = false }
futures-executor = "0.3.0"
pin-project-lite = "0.1"
tokio-util = { version = "0.2", features = ["codec"] }
tokio = { version = "0.2", features = ["tcp", "uds", "io-util", "sync", "stream"] }
[features]
default = [ "geospatial" ]
tokio-rt-core = ["tokio/rt-core"]
geospatial = []
[dev-dependencies]
rand = "0.7"
net2 = "0.2"
assert_approx_eq = "1.0"
fnv = "1.0.5"
futures = "0.3"
criterion = "0.3"
partial-io = { version = "0.3", features = ["tokio", "quickcheck"] }
quickcheck = "0.6"
tokio = { version = "0.2", features = ["rt-core", "macros"] }
# End of dev-dependencies
[[test]]
name = "test_async"
required-features = ["tokio-rt-core"]
[[bench]]
name = "bench_basic"
harness = false
[package.metadata.docs.rs]
all-features = true