POC in Rust get db from websocket

This commit is contained in:
Martin Quarda
2025-05-10 19:59:24 +02:00
parent 2a89528b8f
commit d7c5f0f048
5 changed files with 70 additions and 11 deletions

View File

@@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
async-tungstenite = {version="0.29.1", features=["tokio-rustls-webpki-roots"]}
chrono = "0.4.41"
env_logger = "0.11.8"
futures-lite = "2.6.0"
@@ -12,6 +13,7 @@ lazy_static = "1.5.0"
nusb = "0.1.13"
reqwest = { version = "0.12.15", features = ["json", "multipart", "http2", "cookies"] }
reqwest-middleware = "0.4.2"
rustls = "0.23.27"
serde = {version = "1.0.219", features=["derive"]}
serde_json = "1.0.140"
tokio = {version = "1.45.0", features=["time", "fs", "io-util", "macros"]}