updates telemetry to no longer use grpc

This commit is contained in:
2025-12-29 19:08:13 -05:00
parent f658b55586
commit 8d737e8f33
29 changed files with 911 additions and 514 deletions

View File

@@ -4,9 +4,14 @@ name = "simple_producer"
edition = "2021"
[dependencies]
server = { path = "../../server" }
tonic = "0.12.3"
tokio = { version = "1.43.0", features = ["rt-multi-thread", "signal"] }
api = { path = "../../api" }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "signal", "time", "macros"] }
chrono = "0.4.39"
tokio-util = "0.7.13"
num-traits = "0.2.19"
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] }
anyhow = "1.0.100"
futures-util = "0.3.31"
serde_json = "1.0.145"
uuid = { version = "1.19.0", features = ["v4"] }
tokio-util = "0.7.17"
tokio-stream = "0.1.17"