d0f70e706e
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.
29 lines
726 B
TOML
29 lines
726 B
TOML
[package]
|
|
name = "doctate-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Desktop dictation client for the doctate medical dictation system"
|
|
|
|
[dependencies]
|
|
doctate-common = { path = "../doctate-common" }
|
|
eframe = "0.28"
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uuid = { workspace = true }
|
|
directories = "5"
|
|
thiserror = "1"
|
|
which = "6"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
wiremock = "0.6"
|