diff --git a/Cargo.toml b/Cargo.toml index 7cf6f2f7af..2b49616837 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,22 +34,22 @@ syn = { version = "2.0", default-features = false } toml = { version = "0.8", features = ["parse"] } serde_json = {version = "1.0", default-features = false } # generated dependencies -cppwinrt = { version = "0.2.2", path = "crates/libs/cppwinrt", default-features = false } -windows = { version = "0.61.1", path = "crates/libs/windows", default-features = false } -windows-bindgen = { version = "0.61.1", path = "crates/libs/bindgen", default-features = false } +cppwinrt = { version = "0.3.0", path = "crates/libs/cppwinrt", default-features = false } +windows = { version = "0.61.2", path = "crates/libs/windows", default-features = false } +windows-bindgen = { version = "0.62.0", path = "crates/libs/bindgen", default-features = false } windows-collections = { version = "0.2.0", path = "crates/libs/collections", default-features = false } windows-core = { version = "0.61.2", path = "crates/libs/core", default-features = false } windows-future = { version = "0.2.1", path = "crates/libs/future", default-features = false } windows-implement = { version = "0.60.0", path = "crates/libs/implement", default-features = false } windows-interface = { version = "0.59.1", path = "crates/libs/interface", default-features = false } -windows-link = { version = "0.1.1", path = "crates/libs/link", default-features = false } +windows-link = { version = "0.1.2", path = "crates/libs/link", default-features = false } windows-metadata = { version = "0.59.0", path = "crates/libs/metadata", default-features = false } windows-numerics = { version = "0.2.0", path = "crates/libs/numerics", default-features = false } windows-registry = { version = "0.5.2", path = "crates/libs/registry", default-features = false } windows-result = { version = "0.3.4", path = "crates/libs/result", default-features = false } windows-services = { version = "0.24.0", path = "crates/libs/services", default-features = false } windows-strings = { version = "0.4.2", path = "crates/libs/strings", default-features = false } -windows-sys = { version = "0.59.0", path = "crates/libs/sys", default-features = false } -windows-targets = { version = "0.53.0", path = "crates/libs/targets", default-features = false } +windows-sys = { version = "0.60.0", path = "crates/libs/sys", default-features = false } +windows-targets = { version = "0.53.1", path = "crates/libs/targets", default-features = false } windows-threading = { version = "0.1.0", path = "crates/libs/threading", default-features = false } windows-version = { version = "0.1.4", path = "crates/libs/version", default-features = false } diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index 97f18bb8d0..ed9e48788d 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.61.1" +version = "0.62.0" edition = "2021" rust-version = "1.74" license = "MIT OR Apache-2.0" diff --git a/crates/libs/cppwinrt/Cargo.toml b/crates/libs/cppwinrt/Cargo.toml index 037b16ff4c..2357cc1300 100644 --- a/crates/libs/cppwinrt/Cargo.toml +++ b/crates/libs/cppwinrt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cppwinrt" -version = "0.2.2" +version = "0.3.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.74" diff --git a/crates/libs/link/Cargo.toml b/crates/libs/link/Cargo.toml index 935fccf8fc..79a0471f0b 100644 --- a/crates/libs/link/Cargo.toml +++ b/crates/libs/link/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-link" -version = "0.1.1" +version = "0.1.2" authors = ["Microsoft"] edition = "2021" rust-version = "1.71" diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 408a3512ca..3dc4ed6cea 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-sys" -version = "0.59.0" +version = "0.60.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" diff --git a/crates/libs/targets/Cargo.toml b/crates/libs/targets/Cargo.toml index 0c1d8e5094..ac0d9a80c2 100644 --- a/crates/libs/targets/Cargo.toml +++ b/crates/libs/targets/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-targets" -version = "0.53.0" +version = "0.53.1" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index 30f8c39fdb..3f471d33fb 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.61.1" +version = "0.61.2" authors = ["Microsoft"] edition = "2021" rust-version = "1.74" diff --git a/crates/samples/components/json_validator_winrt/src/bindings.rs b/crates/samples/components/json_validator_winrt/src/bindings.rs index dbf6bf6c80..9db6a9a7b6 100644 --- a/crates/samples/components/json_validator_winrt/src/bindings.rs +++ b/crates/samples/components/json_validator_winrt/src/bindings.rs @@ -1,4 +1,4 @@ -// Bindings generated by `windows-bindgen` 0.61.1 +// Bindings generated by `windows-bindgen` 0.62.0 #![allow( non_snake_case, diff --git a/crates/samples/components/json_validator_winrt_client/src/bindings.rs b/crates/samples/components/json_validator_winrt_client/src/bindings.rs index 3ea8737920..c57efebeed 100644 --- a/crates/samples/components/json_validator_winrt_client/src/bindings.rs +++ b/crates/samples/components/json_validator_winrt_client/src/bindings.rs @@ -1,4 +1,4 @@ -// Bindings generated by `windows-bindgen` 0.61.1 +// Bindings generated by `windows-bindgen` 0.62.0 #![allow( non_snake_case, diff --git a/crates/tests/libs/bindgen/src/comment.rs b/crates/tests/libs/bindgen/src/comment.rs index aac4fbe2f2..103e469eaa 100644 --- a/crates/tests/libs/bindgen/src/comment.rs +++ b/crates/tests/libs/bindgen/src/comment.rs @@ -1,4 +1,4 @@ -// Bindings generated by `windows-bindgen` 0.61.1 +// Bindings generated by `windows-bindgen` 0.62.0 #![allow( non_snake_case, diff --git a/crates/tests/libs/bindgen/src/comment_no_allow.rs b/crates/tests/libs/bindgen/src/comment_no_allow.rs index 3ab95009b5..b5297e927d 100644 --- a/crates/tests/libs/bindgen/src/comment_no_allow.rs +++ b/crates/tests/libs/bindgen/src/comment_no_allow.rs @@ -1,3 +1,3 @@ -// Bindings generated by `windows-bindgen` 0.61.1 +// Bindings generated by `windows-bindgen` 0.62.0 windows_link::link!("kernel32.dll" "system" fn GetTickCount() -> u32);