Add libc dependency for unix targets

This commit adds the `libc` dependency to the `Cargo.toml` file for
Unix-based targets. This dependency is required by the `ffmpeg` command
execution within the `recorder` module, specifically for handling
process management and signaling on Unix-like systems.
This commit is contained in:
2026-04-17 16:23:04 +02:00
parent 5f7e46256c
commit d0f70e706e
6 changed files with 590 additions and 39 deletions
+3
View File
@@ -19,6 +19,9 @@ directories = "5"
thiserror = "1"
which = "6"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3"
tokio = { workspace = true, features = ["test-util"] }