Skip to content

Commit

Permalink
windows-targets 0.48.1 (#2558)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jun 28, 2023
1 parent 7598b42 commit 686384e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.48.0"
version = "0.48.1"
path = "../targets"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ targets = []
all-features = true

[dependencies.windows-targets]
version = "0.48.0"
version = "0.48.1"
path = "../targets"

[features]
Expand Down
2 changes: 1 addition & 1 deletion 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.48.0"
version = "0.48.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 0 additions & 4 deletions crates/libs/targets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs

#[cfg(all(windows_raw_dylib, target_arch = "x86"))]
#[macro_export]
#[doc(hidden)]
macro_rules! link {
($library:literal $abi:literal $($link_name:literal)? $(#[$doc:meta])? fn $($function:tt)*) => (
#[link(name = $library, kind = "raw-dylib", modifiers = "+verbatim", import_name_type = "undecorated")]
Expand All @@ -20,7 +19,6 @@ macro_rules! link {

#[cfg(all(windows_raw_dylib, not(target_arch = "x86")))]
#[macro_export]
#[doc(hidden)]
macro_rules! link {
($library:literal $abi:literal $($link_name:literal)? $(#[$doc:meta])? fn $($function:tt)*) => (
#[link(name = $library, kind = "raw-dylib", modifiers = "+verbatim")]
Expand All @@ -34,7 +32,6 @@ macro_rules! link {

#[cfg(all(windows, not(windows_raw_dylib)))]
#[macro_export]
#[doc(hidden)]
macro_rules! link {
($library:literal $abi:literal $($link_name:literal)? $(#[$doc:meta])? fn $($function:tt)*) => (
#[link(name = "windows.0.48.0")]
Expand All @@ -48,7 +45,6 @@ macro_rules! link {

#[cfg(all(not(windows), not(windows_raw_dylib)))]
#[macro_export]
#[doc(hidden)]
macro_rules! link {
($library:literal $abi:literal $($link_name:literal)? $(#[$doc:meta])? fn $($function:tt)*) => (
extern $abi {
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.50.0" }
windows-targets = { path = "../targets", version = "0.48.0" }
windows-targets = { path = "../targets", version = "0.48.1" }
windows-implement = { path = "../implement", version = "0.48.0", optional = true }
windows-interface = { path = "../interface", version = "0.48.0", optional = true }

Expand Down

0 comments on commit 686384e

Please sign in to comment.