mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
e746033396
This version is already used downstream, and upgrading means we only have one version of the windows crate to maintain in crosvm downstreams. BUG=none TEST=builds Change-Id: Ic823b0d07eaf75dac941bd32e23a4a5bfd52d088 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4416223 Reviewed-by: Vikram Auradkar <auradkar@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
41 lines
899 B
TOML
41 lines
899 B
TOML
[package]
|
|
name = "win_util"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
enumn = "0.1.0"
|
|
winapi = { version = "*", features = ["everything", "std", "impl-default"] }
|
|
libc = "*"
|
|
once_cell = "1.7"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
|
|
[dependencies.windows]
|
|
version = "0.39.0"
|
|
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",
|
|
]
|
|
|
|
[build-dependencies.windows]
|
|
version = "0.39.0"
|
|
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",
|
|
]
|
|
|
|
[workspace]
|