record-daemon: fix windows build

This commit is contained in:
2026-03-19 18:17:31 +01:00
parent d6c0334369
commit f062cee010
2 changed files with 183 additions and 112 deletions

View File

@@ -54,16 +54,17 @@ directories = "5"
# CLI (for debugging and control)
clap = { version = "4", features = ["derive"] }
# Signal handling for graceful shutdown
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
# Base64 for LQP authentication
base64 = "0.22"
# Regex for lockfile parsing
regex = "1"
# 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"] }
[dev-dependencies]
# Testing utilities
tokio-test = "0.4"