[package]
edition = "2021"
name = "df_ddc"
version = "0.1.0"
authors = ["piot5"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DDC/CI monitor control backend."
homepage = "https://github.com/piot5/displaymanager"
readme = "README.md"
keywords = [
"display",
"monitor",
"ddc",
"windows",
"linux",
]
categories = [
"os::windows-apis",
"os::linux-apis",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/piot5/displaymanager"
[lib]
name = "df_ddc"
path = "src/lib.rs"
[[bin]]
name = "ddc_mgr"
path = "src/bin/ddc_mgr.rs"
[[test]]
name = "ddc_test"
path = "tests/ddc_test.rs"
[[bench]]
name = "ddc_operations"
path = "benches/ddc_operations.rs"
harness = false
[dependencies.async-trait]
version = "0.1.89"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.snafu]
version = "0.8"
[dev-dependencies.criterion]
version = "0.4"
features = ["async_tokio"]
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.tempfile]
version = "3.8"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_HiDpi",
"Win32_Devices_Display",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Registry",
]