| [package] |
| name = "win_util" |
| version = "0.1.0" |
| authors = ["The ChromiumOS Authors"] |
| edition = "2021" |
| |
| [dependencies] |
| anyhow = { workspace = true } |
| enumn = { workspace = true } |
| libc = { workspace = true } |
| serde = { workspace = true, features = [ "derive" ] } |
| zeroize = "1.5.7" |
| |
| [target.'cfg(windows)'.dependencies] |
| winapi = { version = "0.3", features = ["everything", "std", "impl-default"] } |
| |
| [target.'cfg(windows)'.dependencies.windows] |
| workspace = true |
| features = [ |
| "Win32_Foundation", |
| "Win32_Globalization", |
| "Win32_Graphics_Gdi", |
| "Win32_UI_Input_Ime", |
| "Win32_UI_Input_KeyboardAndMouse", |
| "Win32_UI_TextServices", |
| "Win32_UI_WindowsAndMessaging", |
| "Win32_System_Com", |
| ] |
| |
| [target.'cfg(windows)'.build-dependencies.windows] |
| workspace = true |
| features = [ |
| "Win32_Foundation", |
| "Win32_Globalization", |
| "Win32_Graphics_Gdi", |
| "Win32_UI_Input_Ime", |
| "Win32_UI_Input_KeyboardAndMouse", |
| "Win32_UI_TextServices", |
| "Win32_UI_WindowsAndMessaging", |
| "Win32_System_Com", |
| ] |