record-daemon: update dependencies

This commit is contained in:
2026-03-21 00:57:18 +01:00
parent 8143610dad
commit 8c83404191
2 changed files with 42 additions and 70 deletions

View File

@@ -13,7 +13,7 @@ tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
toml = "1.0"
# WebSocket for LQP (with TLS support)
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
@@ -28,7 +28,7 @@ futures = "0.3"
async-trait = "0.1"
# Error handling
thiserror = "1"
thiserror = "2"
anyhow = "1"
# Logging
@@ -51,7 +51,7 @@ crossbeam = "0.8"
tokio-util = { version = "0.7", features = ["codec"] }
# Configuration directories
directories = "5"
directories = "6"
# CLI (for debugging and control)
clap = { version = "4", features = ["derive"] }
@@ -72,8 +72,8 @@ display-info = "0.5"
# Signal handling for graceful shutdown (Unix only)
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
signal-hook = "0.4"
signal-hook-tokio = { version = "0.4" }
# Windows-specific dependencies
[target.'cfg(windows)'.dependencies]