forked from aembke/fred.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.28 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
[package]
name = "fred_benchmark"
version = "0.1.0"
authors = ["Alec Embke <[email protected]>"]
edition = "2018"
description = "A benchmarking script based on the `redis-benchmark` tool included with Redis."
[profile.release]
debug = true
[dependencies]
clap = { version = "2.33", features = ["yaml"] }
opentelemetry = { version = "0.18.0", features = ["rt-tokio", "trace"] }
opentelemetry-jaeger = { version = "0.17.0", features = ["tokio", "isahc_collector_client", "isahc", "collector_client", "rt-tokio"] }
tracing-attributes = "0.1.23"
tracing-opentelemetry = "0.18.0"
tracing-core = "0.1.30"
tracing-subscriber = "0.3.16"
tracing = "0.1.37"
log = "0.4"
pretty_env_logger = "0.5"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
rand = "0.8"
indicatif = "=0.17.1"
bb8-redis = { version = "0.14", optional = true }
[dependencies.fred]
#path = "../.."
path = "/fred"
features = ["replicas", "unix-sockets"]
default-features = false
[features]
default = []
assert-expected = []
redis-rs = ["bb8-redis"]
enable-rustls = ["fred/enable-rustls"]
enable-native-tls = ["fred/enable-native-tls"]
debug-ids = ["fred/debug-ids"]
stdout-tracing = ["fred/partial-tracing"]
partial-tracing = ["fred/partial-tracing"]
full-tracing = ["fred/full-tracing"]
blocking-encoding = ["fred/blocking-encoding"]