forked from aembke/fred.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 911 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
32
33
34
[package]
name = "pipeline_test"
version = "0.1.0"
authors = ["Alec Embke <[email protected]>"]
edition = "2018"
description = "A script to test pipelining commands with tracing."
[profile.release]
debug = true
[dependencies]
clap = { version = "2.33", features = ["yaml"] }
opentelemetry = { version = "0.13", features = ["rt-tokio", "trace"] }
opentelemetry-jaeger = { version = "0.12", features = ["tokio", "reqwest_collector_client"] }
tracing-attributes = "0.1"
tracing-opentelemetry = "0.12"
tracing-core = "0.1"
tracing-subscriber = "0.2"
tracing = "0.1"
log = "0.4"
pretty_env_logger = "0.4"
tokio = { version = "1.8", features = ["full"] }
futures = "0.3"
[dependencies.fred]
path = "../.."
features = ["ignore-auth-error"]
default-features = false
[features]
default = []
partial-tracing = ["fred/partial-tracing"]
full-tracing = ["fred/full-tracing"]
blocking-encoding = ["fred/blocking-encoding"]