-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (27 loc) · 893 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
[package]
name = "redis_pool"
version = "0.7.0"
authors = ["Andrew Wheeler <[email protected]>", "Wil Gaboury"]
description = "Library to Provide a redis client and cluster client pools."
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["Redis", "Pool", "tokio"]
repository = "https://github.com/AscendingCreations/RedisPool"
[features]
cluster = ["redis/cluster-async"]
[dependencies]
tokio = { version = "1.43.0", features = ["sync"] }
async-trait = "0.1.85"
tracing = "0.1.41"
thiserror = "2.0.11"
redis = { version = "0.28.0", features = ["aio", "tokio-comp"]}
crossbeam-queue = "0.3.12"
parking_lot = "0.12.3"
[dev-dependencies]
tokio = { version = "1.39.0", features = ["rt-multi-thread", "macros", "process"] }
testcontainers = "0.14.0"
anyhow = "1.0"
futures = "0.3.30"
redis_pool = { path = ".", features = ["cluster"]}
serial_test = "3.2.0"