27 lines
744 B
TOML
27 lines
744 B
TOML
[package]
|
|
name = "trace_exporters"
|
|
version = "0.1.0"
|
|
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
|
|
edition = "2018"
|
|
description = "Additional tracing exporters for IOx"
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4" }
|
|
futures = "0.3"
|
|
observability_deps = { path = "../observability_deps" }
|
|
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
|
|
opentelemetry-jaeger = { version = "0.15", optional = true, features = ["rt-tokio"] }
|
|
snafu = "0.6"
|
|
structopt = { version = "0.3.23" }
|
|
tokio = { version = "1.11", features = ["macros", "time", "sync", "rt"] }
|
|
tokio-util = { version = "0.6.3" }
|
|
trace = { path = "../trace" }
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
default = []
|
|
jaeger = ["opentelemetry-jaeger"]
|