Skip to content

Commit 6b3e731

Browse files
build(core): allow windows-targets 0.53.0
1 parent 016f80a commit 6b3e731

File tree

3 files changed

+27
-23
lines changed

3 files changed

+27
-23
lines changed

Cargo.lock

+20-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cpp_demangle = { default-features = false, version = "0.4.0", optional = true, f
3939
] }
4040

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

4444
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
4545
miniz_oxide = { version = "0.8", default-features = false }
@@ -119,3 +119,8 @@ harness = false
119119
[lints.rust]
120120
# This crate uses them pervasively
121121
unexpected_cfgs = "allow"
122+
123+
# TODO: Consume this PR via Crates.io after a release with
124+
# <https://github.com/nagisa/rust_libloading/pull/169>.
125+
[patch.crates-io]
126+
libloading = { git = "https://github.com/erichdongubler-contrib/rust_libloading", rev = "3a968416490d8d2beca36d9b18a4efde3eceb161" }

crates/as-if-std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ optional = true
2828
features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive']
2929

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

3333
[features]
3434
default = ['backtrace']

0 commit comments

Comments
 (0)