Skip to content

Commit

Permalink
v56
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Apr 12, 2024
1 parent bedd359 commit 7ee661d
Show file tree
Hide file tree
Showing 22 changed files with 46 additions and 46 deletions.
4 changes: 2 additions & 2 deletions 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.55.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -21,7 +21,7 @@ default = ["metadata"]
metadata = []

[dependencies]
windows-metadata = { path = "../metadata", version = "0.55" }
windows-metadata = { path = "../metadata", version = "0.56.0" }
rayon = "1.7"

[dependencies.syn]
Expand Down
12 changes: 6 additions & 6 deletions 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.55.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.62"
Expand All @@ -18,17 +18,17 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52"
version = "0.52.5"
path = "../targets"

[dependencies.windows-result]
version = "0.1"
version = "0.1.1"
path = "../result"

[dependencies]
windows-implement = { path = "../implement", version = "0.53" }
windows-interface = { path = "../interface", version = "0.53" }
windows-implement = { path = "../implement", version = "0.56.0" }
windows-interface = { path = "../interface", version = "0.56.0" }

[dev-dependencies.windows-bindgen]
version = "0.55"
version = "0.56.0"
path = "../bindgen"
2 changes: 1 addition & 1 deletion crates/libs/implement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-implement"
version = "0.53.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.62"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-interface"
version = "0.53.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.62"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.55.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand Down
8 changes: 4 additions & 4 deletions 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.1.0"
version = "0.1.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -19,13 +19,13 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52"
version = "0.52.5"
path = "../targets"

[dependencies.windows-result]
version = "0.1"
version = "0.1.1"
path = "../result"

[dev-dependencies.windows-bindgen]
version = "0.55"
version = "0.56.0"
path = "../bindgen"
6 changes: 3 additions & 3 deletions 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.1.0"
version = "0.1.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -19,9 +19,9 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52"
version = "0.52.5"
path = "../targets"

[dev-dependencies.windows-bindgen]
version = "0.55"
version = "0.56.0"
path = "../bindgen"
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ targets = []
all-features = true

[dependencies.windows-targets]
version = "0.52"
version = "0.52.5"
path = "../targets"

[features]
Expand Down
18 changes: 9 additions & 9 deletions crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-targets"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand All @@ -14,25 +14,25 @@ readme = "readme.md"
workspace = true

[target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52.5" }

[target.'cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52.5" }

[target.'cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52.5" }

[target.'cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52.5" }

[target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52.5" }

[target.i686-pc-windows-gnullvm.dependencies]
windows_i686_gnullvm = { path = "../../targets/i686_gnullvm", version = "0.52" }
windows_i686_gnullvm = { path = "../../targets/i686_gnullvm", version = "0.52.5" }

[target.x86_64-pc-windows-gnullvm.dependencies]
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52" }
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52.5" }

[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52" }
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52.5" }
6 changes: 3 additions & 3 deletions 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.0"
version = "0.1.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -18,9 +18,9 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52"
version = "0.52.5"
path = "../targets"

[dev-dependencies.windows-bindgen]
version = "0.55"
version = "0.56.0"
path = "../bindgen"
6 changes: 3 additions & 3 deletions crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.54.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.62"
Expand All @@ -22,8 +22,8 @@ targets = []
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.55" }
windows-targets = { path = "../targets", version = "0.52" }
windows-core = { path = "../core", version = "0.56.0" }
windows-targets = { path = "../targets", version = "0.52.5" }

[features]
default = []
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.55.0
// Bindings generated by `windows-bindgen` 0.56.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.55.0
// Bindings generated by `windows-bindgen` 0.56.0

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/aarch64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_aarch64_gnullvm"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/aarch64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_aarch64_msvc"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_gnu"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_gnullvm"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_msvc"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_gnu"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_gnullvm"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_msvc"
version = "0.52.4"
version = "0.52.5"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.56"
Expand Down
4 changes: 2 additions & 2 deletions crates/tools/riddle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "riddle"
version = "0.3.0"
version = "0.56.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -11,5 +11,5 @@ readme = "readme.md"

[dependencies.windows-bindgen]
path = "../../libs/bindgen"
version = "0.55"
version = "0.56.0"
default-features = false

0 comments on commit 7ee661d

Please sign in to comment.