From 53a20dd1deb3403a56f93920f6f51b3b840b5047 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Thu, 19 May 2022 06:39:43 -0700 Subject: [PATCH] Version 0.37.0 (#1765) --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/publish.cmd | 11 +++++++++++ .github/readme.md | 2 +- crates/libs/bindgen/Cargo.toml | 6 +++--- crates/libs/implement/Cargo.toml | 4 ++-- crates/libs/interface/Cargo.toml | 2 +- crates/libs/metadata/Cargo.toml | 2 +- crates/libs/sys/Cargo.toml | 22 +++++++++++----------- crates/libs/tokens/Cargo.toml | 2 +- crates/libs/windows/Cargo.toml | 26 +++++++++++++------------- crates/targets/aarch64_msvc/Cargo.toml | 2 +- crates/targets/i686_gnu/Cargo.toml | 2 +- crates/targets/i686_msvc/Cargo.toml | 2 +- crates/targets/x86_64_gnu/Cargo.toml | 2 +- crates/targets/x86_64_msvc/Cargo.toml | 2 +- crates/tools/bindings/Cargo.toml | 4 ++-- crates/tools/gnu/Cargo.toml | 2 +- crates/tools/ilrs/Cargo.toml | 2 +- crates/tools/msvc/Cargo.toml | 2 +- crates/tools/sys/Cargo.toml | 4 ++-- crates/tools/sys/src/main.rs | 22 +++++++++++----------- crates/tools/windows/Cargo.toml | 4 ++-- crates/tools/windows/src/main.rs | 26 +++++++++++++------------- crates/tools/yml/Cargo.toml | 2 +- 24 files changed, 84 insertions(+), 73 deletions(-) create mode 100644 .github/publish.cmd diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ee3eb3a599..3f47f7214a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -83,7 +83,7 @@ body: # ... [dependencies.windows] - version = "0.36.1" + version = "0.37.0" features = [ "alloc", "Win32_Foundation", diff --git a/.github/publish.cmd b/.github/publish.cmd new file mode 100644 index 0000000000..73f9d992db --- /dev/null +++ b/.github/publish.cmd @@ -0,0 +1,11 @@ +cargo publish windows_aarch64_msvc +cargo publish windows_i686_gnu +cargo publish windows_i686_msvc +cargo publish windows_x86_64_gnu +cargo publish windows_x86_64_msvc +cargo publish windows-tokens +cargo publish windows-metadata +cargo publish windows-interface +cargo publish windows-implement +cargo publish windows-bindgen +cargo publish windows diff --git a/.github/readme.md b/.github/readme.md index 01b3b9d125..29ce56591b 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.36.1" +version = "0.37.0" features = [ "alloc", "Data_Xml_Dom", diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index 184ae1daf3..935a2b9822 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -12,5 +12,5 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies] -tokens = { package = "windows-tokens", path = "../tokens", version = "0.36.1" } -metadata = { package = "windows-metadata", path = "../metadata", version = "0.36.1" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.37.0" } +metadata = { package = "windows-metadata", path = "../metadata", version = "0.37.0" } diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index 2e4b5677b3..0560d0ac29 100644 --- a/crates/libs/implement/Cargo.toml +++ b/crates/libs/implement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-implement" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,4 +16,4 @@ proc-macro = true [dependencies] syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full", "derive"] } -tokens = { package = "windows-tokens", path = "../tokens", version = "0.36.1" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.37.0" } diff --git a/crates/libs/interface/Cargo.toml b/crates/libs/interface/Cargo.toml index 92c3cf875f..ea2a68b2b8 100644 --- a/crates/libs/interface/Cargo.toml +++ b/crates/libs/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-interface" -version = "0.36.1" +version = "0.37.0" edition = "2018" authors = ["Microsoft"] license = "MIT OR Apache-2.0" diff --git a/crates/libs/metadata/Cargo.toml b/crates/libs/metadata/Cargo.toml index b8bc715887..d322e6d4f3 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/crates/libs/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-metadata" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 63f8f2097a..cbd112360d 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-sys" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,34 +16,34 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [features] default = [] diff --git a/crates/libs/tokens/Cargo.toml b/crates/libs/tokens/Cargo.toml index 31f07619c0..1ec1ea6f2b 100644 --- a/crates/libs/tokens/Cargo.toml +++ b/crates/libs/tokens/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-tokens" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index 2d82f7a019..82fb32193a 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,38 +16,38 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.36.1", optional = true } -windows-interface = { path = "../interface", version = "0.36.1", optional = true } +windows-implement = { path = "../implement", version = "0.37.0", optional = true } +windows-interface = { path = "../interface", version = "0.37.0", optional = true } [features] default = [] diff --git a/crates/targets/aarch64_msvc/Cargo.toml b/crates/targets/aarch64_msvc/Cargo.toml index ab2282c6ba..7763e0352f 100644 --- a/crates/targets/aarch64_msvc/Cargo.toml +++ b/crates/targets/aarch64_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_aarch64_msvc" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_gnu/Cargo.toml b/crates/targets/i686_gnu/Cargo.toml index 480c3d62e8..7b7350f61b 100644 --- a/crates/targets/i686_gnu/Cargo.toml +++ b/crates/targets/i686_gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_i686_gnu" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_msvc/Cargo.toml b/crates/targets/i686_msvc/Cargo.toml index 77124230d5..b5feee839c 100644 --- a/crates/targets/i686_msvc/Cargo.toml +++ b/crates/targets/i686_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_i686_msvc" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/x86_64_gnu/Cargo.toml b/crates/targets/x86_64_gnu/Cargo.toml index 516f39d911..bd059a707d 100644 --- a/crates/targets/x86_64_gnu/Cargo.toml +++ b/crates/targets/x86_64_gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_x86_64_gnu" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/x86_64_msvc/Cargo.toml b/crates/targets/x86_64_msvc/Cargo.toml index fe2d2c9580..5df0cd89af 100644 --- a/crates/targets/x86_64_msvc/Cargo.toml +++ b/crates/targets/x86_64_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_x86_64_msvc" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/tools/bindings/Cargo.toml b/crates/tools/bindings/Cargo.toml index 2d0765ee2f..1e9d9f8df2 100644 --- a/crates/tools/bindings/Cargo.toml +++ b/crates/tools/bindings/Cargo.toml @@ -5,5 +5,5 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" } diff --git a/crates/tools/gnu/Cargo.toml b/crates/tools/gnu/Cargo.toml index 132bee18eb..9ad7e71b37 100644 --- a/crates/tools/gnu/Cargo.toml +++ b/crates/tools/gnu/Cargo.toml @@ -5,4 +5,4 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } diff --git a/crates/tools/ilrs/Cargo.toml b/crates/tools/ilrs/Cargo.toml index 9e9db93f58..71effc36d5 100644 --- a/crates/tools/ilrs/Cargo.toml +++ b/crates/tools/ilrs/Cargo.toml @@ -5,4 +5,4 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } diff --git a/crates/tools/msvc/Cargo.toml b/crates/tools/msvc/Cargo.toml index 518df4ffc2..b1916d457c 100644 --- a/crates/tools/msvc/Cargo.toml +++ b/crates/tools/msvc/Cargo.toml @@ -5,4 +5,4 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } diff --git a/crates/tools/sys/Cargo.toml b/crates/tools/sys/Cargo.toml index 355a958587..aed8c05c4d 100644 --- a/crates/tools/sys/Cargo.toml +++ b/crates/tools/sys/Cargo.toml @@ -5,6 +5,6 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" } rayon = "1.5.1" diff --git a/crates/tools/sys/src/main.rs b/crates/tools/sys/src/main.rs index d30f505d46..bbc34e6f77 100644 --- a/crates/tools/sys/src/main.rs +++ b/crates/tools/sys/src/main.rs @@ -25,7 +25,7 @@ fn main() { r#" [package] name = "windows-sys" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -40,34 +40,34 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [features] default = [] diff --git a/crates/tools/windows/Cargo.toml b/crates/tools/windows/Cargo.toml index 55fbc56f85..b40923efc3 100644 --- a/crates/tools/windows/Cargo.toml +++ b/crates/tools/windows/Cargo.toml @@ -5,6 +5,6 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.37.0" } rayon = "1.5.1" diff --git a/crates/tools/windows/src/main.rs b/crates/tools/windows/src/main.rs index cd1f4432d2..4e7e7c7998 100644 --- a/crates/tools/windows/src/main.rs +++ b/crates/tools/windows/src/main.rs @@ -25,7 +25,7 @@ fn main() { r#" [package] name = "windows" -version = "0.36.1" +version = "0.37.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -40,38 +40,38 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.37.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.37.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.37.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.37.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.37.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.36.1", optional = true } -windows-interface = { path = "../interface", version = "0.36.1", optional = true } +windows-implement = { path = "../implement", version = "0.37.0", optional = true } +windows-interface = { path = "../interface", version = "0.37.0", optional = true } [features] default = [] diff --git a/crates/tools/yml/Cargo.toml b/crates/tools/yml/Cargo.toml index a03346a2cf..22cd5868da 100644 --- a/crates/tools/yml/Cargo.toml +++ b/crates/tools/yml/Cargo.toml @@ -5,4 +5,4 @@ edition = "2018" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.37.0" }