forked from AscendingCreations/RedisPool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 897 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.2.1"
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.32.0", features = ["sync"] }
async-trait = "0.1.71"
tracing = "0.1.37"
thiserror = "1.0.43"
redis = { version = "0.23.3", features = ["aio", "tokio-comp", "cluster-async"]}
crossbeam-queue = "0.3.8"
[dev-dependencies]
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "process"] }
testcontainers = "0.14.0"
anyhow = "1.0"
axum = "0.6"
futures = "0.3.28"
redis_pool = { path = ".", features = ["cluster"]}
serial_test = "0.4"