31 lines
776 B
TOML
31 lines
776 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-telemetry"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
tokio = { workspace = true }
|
||
|
|
opentelemetry = { workspace = true }
|
||
|
|
opentelemetry-jaeger = { workspace = true }
|
||
|
|
opentelemetry_sdk = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-opentelemetry = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
uuid = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
parking_lot = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
criterion = { workspace = true }
|
||
|
|
|
||
|
|
[[bench]]
|
||
|
|
name = "metrics_benchmarks"
|
||
|
|
harness = false
|