-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.13 KB
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
[package]
name = "bb8-redis"
version = "0.14.0"
edition = "2021"
rust-version = "1.63"
description = "Full-featured async (tokio-based) redis connection pool (like r2d2)"
license = "MIT"
repository = "https://github.com/djc/bb8"
[dependencies]
async-trait = "0.1"
bb8 = { version = "0.8", path = "../bb8" }
redis = { version = "0.24", default-features = false, features = [
"tokio-comp",
] }
[dev-dependencies]
futures-util = "0.3.15"
tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] }
[features]
default = ["redis/default"]
acl = ["redis/acl"]
aio = ["redis/aio"]
geospatial = ["redis/geospatial"]
json = ["redis/json"]
cluster = ["redis/cluster"]
script = ["redis/script"]
tls-native-tls = ["redis/tls-native-tls", "redis/tokio-native-tls"]
tls-rustls = ["redis/tls-rustls", "redis/tokio-rustls"]
tls-rustls-insecure = ["redis/tls-rustls-insecure"]
tls-rustls-webpki-roots = ["redis/tls-rustls-webpki-roots"]
connection-manager = ["redis/connection-manager"]
streams = ["redis/streams"]
cluster-async = ["redis/cluster-async"]
keep-alive = ["redis/keep-alive"]
sentinel = ["redis/sentinel"]
tcp_nodelay = ["redis/tcp_nodelay"]