From 5c8e6085ab63717bf96e42630d402a2db089e8b7 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Tue, 21 Jan 2025 15:25:22 -0500 Subject: [PATCH] build(core): allow `windows-targets` 0.53.0 --- Cargo.toml | 5 +++++ core/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8546b32d..db128442 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,3 +40,8 @@ hardware-lock-elision = [] [workspace] exclude = ["benchmark"] + +# TODO: Consume a release of `backtrace` that contains +# . +[patch.crates-io] +backtrace = { git = "https://github.com/erichdongubler-contrib/backtrace-rs", rev = "43e7db9bf1f9d60333a04cf1b0cbe86a679aaad0" } diff --git a/core/Cargo.toml b/core/Cargo.toml index c9672b34..9ff4a192 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -27,7 +27,7 @@ libc = "0.2.95" redox_syscall = "0.5" [target.'cfg(windows)'.dependencies] -windows-targets = "0.52.0" +windows-targets = ">=0.52.0,<0.54.0" [features] nightly = []