Unify versions of "windows" crate.

This commit is contained in:
Samuel Guerra 2023-12-02 15:10:34 -03:00
parent f0d5407903
commit b56cad2593
1 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ accesskit = "0.12"
accesskit_winit = "0.16"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48.0"
version = "0.48.0" # matches winit, glutin, other crates
features = [
"Win32_UI_Shell",
"Win32_System_Com",
@ -109,11 +109,11 @@ features = [
"Win32_System_Power",
]
[target.'cfg(windows)'.dependencies.windows]
version = "0.51.0"
version = "0.48.0" # matches accesskit, other crates
features = ["Foundation_Collections", "System_UserProfile"]
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "4", features = ["std"] }
clipboard-win = { version = "5", features = ["std"] }
[target.'cfg(not(windows))'.dependencies]
arboard = "3"