2024-12-22 20:56:52 -03:00
|
|
|
[package]
|
|
|
|
name = "gb-monitoring"
|
2024-12-25 16:25:09 -03:00
|
|
|
version= { workspace = true }
|
|
|
|
edition= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-12-23 00:20:59 -03:00
|
|
|
opentelemetry = { version = "0.19", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-otlp = { version = "0.12", features = ["tonic"] }
|
2024-12-25 16:25:09 -03:00
|
|
|
tracing= { workspace = true }
|
|
|
|
tracing-subscriber= { workspace = true }
|
|
|
|
thiserror= { workspace = true }
|
|
|
|
prometheus= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
gb-core = { path = "../gb-core" }
|
2024-12-23 00:20:59 -03:00
|
|
|
lazy_static = "1.4"
|
2024-12-25 16:25:09 -03:00
|
|
|
tokio= { workspace = true }
|
|
|
|
serde= { workspace = true }
|
|
|
|
serde_json= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 16:25:09 -03:00
|
|
|
rstest= { workspace = true }
|
2024-12-23 00:54:50 -03:00
|
|
|
tokio-test = "0.4"
|