Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ 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.3.0", path = "crates/libs/cppwinrt", default-features = false }
cppwinrt = { version = "0.3.1", 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-bindgen = { version = "0.62.1", 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 }
Expand All @@ -49,7 +49,7 @@ windows-registry = { version = "0.5.2", path = "crates/libs/registry", default-f
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.60.0", path = "crates/libs/sys", default-features = false }
windows-sys = { version = "0.60.1", 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 }
2 changes: 1 addition & 1 deletion crates/libs/bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-bindgen"
version = "0.62.0"
version = "0.62.1"
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/bindgen/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file:
version = "0.1"

[build-dependencies.windows-bindgen]
version = "0.61"
version = "0.62"
```

Generate Rust bindings in a build script as follows:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/cppwinrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cppwinrt"
version = "0.3.0"
version = "0.3.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.74"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/cppwinrt/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.cppwinrt]
version = "0.2"
version = "0.3"
```

Use `cppwinrt` function as needed:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-sys"
version = "0.60.0"
version = "0.60.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-sys]
version = "0.59"
version = "0.60"
features = [
"Win32_Security",
"Win32_System_Threading",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.62.0
// Bindings generated by `windows-bindgen` 0.62.1

#![allow(
non_snake_case,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.62.0
// Bindings generated by `windows-bindgen` 0.62.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/libs/bindgen/src/comment.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.62.0
// Bindings generated by `windows-bindgen` 0.62.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/libs/bindgen/src/comment_no_allow.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Bindings generated by `windows-bindgen` 0.62.0
// Bindings generated by `windows-bindgen` 0.62.1

windows_link::link!("kernel32.dll" "system" fn GetTickCount() -> u32);