forked from redis-rs/redis-cluster-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 916 Bytes
/
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
[package]
name = "redis_cluster_async"
version = "0.7.1-alpha.0"
authors = ["Markus Westerlind <[email protected]>"]
keywords = ["redis", "cluster", "database", "async"]
description = "Async redis cluster driver for Rust."
homepage = "https://github.com/Marwes/redis-cluster-async"
repository = "https://github.com/Marwes/redis-cluster-async"
license = "MIT"
readme = "README.md"
edition = "2021"
[dependencies]
crc16 = "0.4"
futures = "0.3"
pin-project-lite = "0.2"
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
redis = { version = "0.21.5", features = ["tokio-comp"] }
tokio = { version = "1", features = ["time"] }
log = "0.4"
[dev-dependencies]
anyhow = "1"
once_cell = "1"
tokio = { version = "1", features = ["macros", "full"] }
env_logger = "0.8"
proptest = "0.10"
[patch.crates-io]
redis = { git = "https://github.com/galgus/redis-rs.git", branch = "fix_decode" }