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
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ serde = { version = "1.0", default-features = false }
syn = { version = "2.0", default-features = false }
serde_json = {version = "1.0", default-features = false }
# generated dependencies
cppwinrt = { version = "0.3.2", path = "crates/libs/cppwinrt", default-features = false }
windows = { version = "0.61.3", path = "crates/libs/windows", 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 }
cppwinrt = { version = "0.3.3", path = "crates/libs/cppwinrt", default-features = false }
windows = { version = "0.62.0", path = "crates/libs/windows", default-features = false }
windows-bindgen = { version = "0.63.0", path = "crates/libs/bindgen", default-features = false }
windows-collections = { version = "0.3.0", path = "crates/libs/collections", default-features = false }
windows-core = { version = "0.62.0", path = "crates/libs/core", default-features = false }
windows-future = { version = "0.3.0", 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.3", path = "crates/libs/link", default-features = false }
windows-link = { version = "0.2.0", 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.3", path = "crates/libs/registry", default-features = false }
windows-result = { version = "0.3.4", path = "crates/libs/result", default-features = false }
windows-services = { version = "0.25.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.2", path = "crates/libs/sys", default-features = false }
windows-numerics = { version = "0.3.0", path = "crates/libs/numerics", default-features = false }
windows-registry = { version = "0.6.0", path = "crates/libs/registry", default-features = false }
windows-result = { version = "0.4.0", path = "crates/libs/result", default-features = false }
windows-services = { version = "0.26.0", path = "crates/libs/services", default-features = false }
windows-strings = { version = "0.5.0", path = "crates/libs/strings", default-features = false }
windows-sys = { version = "0.61.0", path = "crates/libs/sys", default-features = false }
windows-targets = { version = "0.53.3", 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 }
windows-threading = { version = "0.2.0", path = "crates/libs/threading", default-features = false }
windows-version = { version = "0.1.5", 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.1"
version = "0.63.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/bindgen/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-link]
version = "0.1"
version = "0.2"

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

Generate Rust bindings in a build script as follows:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/collections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-collections"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/collections/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.windows-collections]
version = "0.2"
version = "0.3"
```

Use the Windows collection types as needed:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-core"
version = "0.61.2"
version = "0.62.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
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.2"
version = "0.3.3"
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/future/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-future"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/future/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.windows-future]
version = "0.2"
version = "0.3"
```

Use the Windows async types as needed:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/link/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-link"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.71"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/link/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.windows-link]
version = "0.1"
version = "0.2"
```

Use the `link` macro to define the external functions you wish to call:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/numerics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-numerics"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-registry"
version = "0.5.3"
version = "0.6.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/registry/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.windows-registry]
version = "0.5"
version = "0.6"
```

Read and write registry keys and values as needed:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-result"
version = "0.3.4"
version = "0.4.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/result/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.windows-result]
version = "0.3"
version = "0.4"
```

Use the `HRESULT`, `Error`, and specialized `Result` types as needed:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-services"
version = "0.25.0"
version = "0.26.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/services/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.windows-services]
version = "0.25"
version = "0.26"
```

Use the Windows services support as needed. Here is how you might write a simple Windows services process:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/strings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-strings"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/strings/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.windows-strings]
version = "0.4"
version = "0.5"
```

Use the Windows string types 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.2"
version = "0.61.0"
edition = "2021"
rust-version = "1.71"
license = "MIT OR Apache-2.0"
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.60"
version = "0.61"
features = [
"Win32_Security",
"Win32_System_Threading",
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/threading/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-threading"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/threading/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.windows-threading]
version = "0.1"
version = "0.2"
```

Use the Windows threading support as needed. Here is how you might submit a closure to run on the default thread pool:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-version"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.61.3"
version = "0.62.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/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]
version = "0.61"
version = "0.62"
features = [
"Data_Xml_Dom",
"Win32_Security",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.62.1
// Bindings generated by `windows-bindgen` 0.63.0

#![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.1
// Bindings generated by `windows-bindgen` 0.63.0

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

#![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.1
// Bindings generated by `windows-bindgen` 0.63.0

#![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.1
// Bindings generated by `windows-bindgen` 0.63.0

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