Skip to content

Commit

Permalink
build(core): allow windows-targets 0.53.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Jan 21, 2025
1 parent 016f80a commit 6b3e731
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 23 deletions.
41 changes: 20 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cpp_demangle = { default-features = false, version = "0.4.0", optional = true, f
] }

[target.'cfg(windows)'.dependencies]
windows-targets = "0.52.6"
windows-targets = ">=0.52.6,<0.54.0"

[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
miniz_oxide = { version = "0.8", default-features = false }
Expand Down Expand Up @@ -119,3 +119,8 @@ harness = false
[lints.rust]
# This crate uses them pervasively
unexpected_cfgs = "allow"

# TODO: Consume this PR via Crates.io after a release with
# <https://github.com/nagisa/rust_libloading/pull/169>.
[patch.crates-io]
libloading = { git = "https://github.com/erichdongubler-contrib/rust_libloading", rev = "3a968416490d8d2beca36d9b18a4efde3eceb161" }
2 changes: 1 addition & 1 deletion crates/as-if-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ optional = true
features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive']

[target.'cfg(windows)'.dependencies]
windows-targets = "0.52.6"
windows-targets = ">=0.52.6,<0.54.0"

[features]
default = ['backtrace']
Expand Down

0 comments on commit 6b3e731

Please sign in to comment.