-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjust frame IP in SGX relative to image base #566
Conversation
Is there no way to automatically recover the base image address in this scenario? |
No, due to ASLR the base address changes every time the enclave is loaded into memory. |
Then how does std know? Apologies if this is an obvious/silly question, I am not familiar with the particulars of the SGX target, as opposed to my familiarity with x86. |
The relevant code is here: https://github.com/rust-lang/rust/blob/1.72.1/library/std/src/sys/sgx/abi/mem.rs#L37 it's using inline assembly (that's why I don't think it's a good idea to duplicate that code in this crate or elsewhere) |
I see.
That... seems like a compiler bug? Is there a bug tracking this concern? Can you mark the exposed APIs |
I'm not aware. @jethrogb might know.
Sure, I'll update the PR |
With that, happy to merge this once the question about the relocation thing is settled. Maybe it's a bug but unfixable? Either way, I'd like to know so I'm sure there's no loose ends, or er... more like the loose ends are properly loosened? I don't know. |
SGX doesn't have a dynamic loader, so the Rust entry code needs to do the relocations manually. Any code that's used to compute the relocations (which includes |
Oh, I see! That's kinda wild. |
@workingjubilee the CI failures seem unrelated to the changes, is there a separate effort to address those? How should we proceed with this PR? |
Code size changes for a hello-world Rust program linked with libstd with backtrace: On platform
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
…-Simulacrum Update backtrace submodule This pulls in a few notable changes (see the [complete list](rust-lang/backtrace-rs@99faef8...e9da96e) for details): - rust-lang/backtrace-rs#508 - rust-lang/backtrace-rs#566 - rust-lang/backtrace-rs#569 - Fixes rust-lang#116403 by no longer using `dbghelp.dll` during backtrace capture.
…-Simulacrum Update backtrace submodule This pulls in a few notable changes (see the [complete list](rust-lang/backtrace-rs@99faef8...e9da96e) for details): - rust-lang/backtrace-rs#508 - rust-lang/backtrace-rs#566 - rust-lang/backtrace-rs#569 - Fixes rust-lang#116403 by no longer using `dbghelp.dll` during backtrace capture.
Update backtrace submodule This pulls in a few notable changes (see the [complete list](rust-lang/backtrace-rs@99faef8...e9da96e) for details): - rust-lang/backtrace-rs#508 - rust-lang/backtrace-rs#566 - rust-lang/backtrace-rs#569 - Fixes #116403 by no longer using `dbghelp.dll` during backtrace capture.
…ark-Simulacrum Adjust frame IP in backtraces relative to image base for SGX target This is followup to rust-lang/backtrace-rs#566. The backtraces printed by `panic!` or generated by `std::backtrace::Backtrace` in SGX target are not usable. The frame addresses need to be relative to image base address so they can be used for symbol resolution. Here's an example panic backtrace generated before this change: ``` $ cargo r --target x86_64-fortanix-unknown-sgx ... stack backtrace: 0: 0x7f8fe401d3a5 - <unknown> 1: 0x7f8fe4034780 - <unknown> 2: 0x7f8fe401c5a3 - <unknown> 3: 0x7f8fe401d1f5 - <unknown> 4: 0x7f8fe401e6f6 - <unknown> ``` Here's the same panic after this change: ``` $ cargo +stage1 r --target x86_64-fortanix-unknown-sgx stack backtrace: 0: 0x198bf - <unknown> 1: 0x3d181 - <unknown> 2: 0x26164 - <unknown> 3: 0x19705 - <unknown> 4: 0x1ef36 - <unknown> ``` cc `@jethrogb` and `@workingjubilee`
…k-Simulacrum Adjust frame IP in backtraces relative to image base for SGX target This is followup to rust-lang/backtrace-rs#566. The backtraces printed by `panic!` or generated by `std::backtrace::Backtrace` in SGX target are not usable. The frame addresses need to be relative to image base address so they can be used for symbol resolution. Here's an example panic backtrace generated before this change: ``` $ cargo r --target x86_64-fortanix-unknown-sgx ... stack backtrace: 0: 0x7f8fe401d3a5 - <unknown> 1: 0x7f8fe4034780 - <unknown> 2: 0x7f8fe401c5a3 - <unknown> 3: 0x7f8fe401d1f5 - <unknown> 4: 0x7f8fe401e6f6 - <unknown> ``` Here's the same panic after this change: ``` $ cargo +stage1 r --target x86_64-fortanix-unknown-sgx stack backtrace: 0: 0x198bf - <unknown> 1: 0x3d181 - <unknown> 2: 0x26164 - <unknown> 3: 0x19705 - <unknown> 4: 0x1ef36 - <unknown> ``` cc `@jethrogb` and `@workingjubilee`
Adjust frame IP in backtraces relative to image base for SGX target This is followup to rust-lang/backtrace-rs#566. The backtraces printed by `panic!` or generated by `std::backtrace::Backtrace` in SGX target are not usable. The frame addresses need to be relative to image base address so they can be used for symbol resolution. Here's an example panic backtrace generated before this change: ``` $ cargo r --target x86_64-fortanix-unknown-sgx ... stack backtrace: 0: 0x7f8fe401d3a5 - <unknown> 1: 0x7f8fe4034780 - <unknown> 2: 0x7f8fe401c5a3 - <unknown> 3: 0x7f8fe401d1f5 - <unknown> 4: 0x7f8fe401e6f6 - <unknown> ``` Here's the same panic after this change: ``` $ cargo +stage1 r --target x86_64-fortanix-unknown-sgx stack backtrace: 0: 0x198bf - <unknown> 1: 0x3d181 - <unknown> 2: 0x26164 - <unknown> 3: 0x19705 - <unknown> 4: 0x1ef36 - <unknown> ``` cc `@jethrogb` and `@workingjubilee`
Update backtrace submodule This pulls in a few notable changes (see the [complete list](rust-lang/backtrace-rs@99faef8...e9da96e) for details): - rust-lang/backtrace-rs#508 - rust-lang/backtrace-rs#566 - rust-lang/backtrace-rs#569 - Fixes #116403 by no longer using `dbghelp.dll` during backtrace capture.
Adjust frame IP in backtraces relative to image base for SGX target This is followup to rust-lang/backtrace-rs#566. The backtraces printed by `panic!` or generated by `std::backtrace::Backtrace` in SGX target are not usable. The frame addresses need to be relative to image base address so they can be used for symbol resolution. Here's an example panic backtrace generated before this change: ``` $ cargo r --target x86_64-fortanix-unknown-sgx ... stack backtrace: 0: 0x7f8fe401d3a5 - <unknown> 1: 0x7f8fe4034780 - <unknown> 2: 0x7f8fe401c5a3 - <unknown> 3: 0x7f8fe401d1f5 - <unknown> 4: 0x7f8fe401e6f6 - <unknown> ``` Here's the same panic after this change: ``` $ cargo +stage1 r --target x86_64-fortanix-unknown-sgx stack backtrace: 0: 0x198bf - <unknown> 1: 0x3d181 - <unknown> 2: 0x26164 - <unknown> 3: 0x19705 - <unknown> 4: 0x1ef36 - <unknown> ``` cc `@jethrogb` and `@workingjubilee`
Update backtrace submodule This pulls in a few notable changes (see the [complete list](rust-lang/backtrace-rs@99faef8...e9da96e) for details): - rust-lang/backtrace-rs#508 - rust-lang/backtrace-rs#566 - rust-lang/backtrace-rs#569 - Fixes #116403 by no longer using `dbghelp.dll` during backtrace capture.
Adjust frame IP in backtraces relative to image base for SGX target This is followup to rust-lang/backtrace-rs#566. The backtraces printed by `panic!` or generated by `std::backtrace::Backtrace` in SGX target are not usable. The frame addresses need to be relative to image base address so they can be used for symbol resolution. Here's an example panic backtrace generated before this change: ``` $ cargo r --target x86_64-fortanix-unknown-sgx ... stack backtrace: 0: 0x7f8fe401d3a5 - <unknown> 1: 0x7f8fe4034780 - <unknown> 2: 0x7f8fe401c5a3 - <unknown> 3: 0x7f8fe401d1f5 - <unknown> 4: 0x7f8fe401e6f6 - <unknown> ``` Here's the same panic after this change: ``` $ cargo +stage1 r --target x86_64-fortanix-unknown-sgx stack backtrace: 0: 0x198bf - <unknown> 1: 0x3d181 - <unknown> 2: 0x26164 - <unknown> 3: 0x19705 - <unknown> 4: 0x1ef36 - <unknown> ``` cc `@jethrogb` and `@workingjubilee`
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [backtrace](https://github.com/rust-lang/backtrace-rs) | dependencies | patch | `0.3` -> `0.3.71` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>rust-lang/backtrace-rs (backtrace)</summary> ### [`v0.3.71`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.71) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.70...0.3.71) This is mostly CI changes, with a very mild bump to our effective cc crate version recorded, and a small modification to a previous changeset to allow backtrace to run at its current checked-in MSRV on Windows. Sorry about that! We will be getting 0.3.70 yanked shortly. ##### What's Changed - Make sgx functions exist with cfg(miri) by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/591](https://github.com/rust-lang/backtrace-rs/pull/591) - Update version of cc crate by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - Pull back MSRV on Windows by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/598](https://github.com/rust-lang/backtrace-rs/pull/598) - Force frame pointers on all i686 tests by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/601](https://github.com/rust-lang/backtrace-rs/pull/601) - Use rustc from stage0 instead of stage0-sysroot by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) - Cut backtrace 0.3.71 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/599](https://github.com/rust-lang/backtrace-rs/pull/599) ##### New Contributors - [@​jfgoog](https://github.com/jfgoog) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - [@​Nilstrieb](https://github.com/Nilstrieb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) **Full Changelog**: rust-lang/backtrace-rs@0.3.70...0.3.71 ### [`v0.3.70`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.70) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.70) ##### New API - A `BacktraceFrame` can now have `resolve(&mut self)` called on it thanks to [@​fraillt](https://github.com/fraillt) in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) ##### Platform Support We added support for new platforms in this release! - Thanks to [@​bzEq](https://github.com/bzEq) in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) we now have AIX support! - Thanks to [@​sthibaul](https://github.com/sthibaul) in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) we now have GNU/Hurd support! - Thanks to [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) we now support "emulation-compatible" AArch64 Windows (aka arm64ec) ##### Windows - Rewrite msvc backtrace support to be much faster on 64-bit platforms by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - Fix i686-pc-windows-gnu missing dbghelp module by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/571](https://github.com/rust-lang/backtrace-rs/pull/571) - Fix build errors on `thumbv7a-*-windows-msvc` targets by [@​kleisauke](https://github.com/kleisauke) in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - Fix panic in backtrace symbolication on win7 by [@​roblabla](https://github.com/roblabla) in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - remove few unused windows ffi fn by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/576](https://github.com/rust-lang/backtrace-rs/pull/576) - Make dbghelp look for PDBs next to their exe/dll. by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - Revert 32-bit dbghelp to a version WINE (presumably) likes by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/588](https://github.com/rust-lang/backtrace-rs/pull/588) - Update for Win10+ by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/589](https://github.com/rust-lang/backtrace-rs/pull/589) ##### SGX Thanks to - Adjust frame IP in SGX relative to image base by [@​mzohreva](https://github.com/mzohreva) in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) ##### Internals We did a bunch more work on our CI and internal cleanups - Modularise CI workflow and validate outputs for binary size checks. by [@​detly](https://github.com/detly) in [https://github.com/rust-lang/backtrace-rs/pull/549](https://github.com/rust-lang/backtrace-rs/pull/549) - Commit Cargo.lock by [@​bjorn3](https://github.com/bjorn3) in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - Enable calling build.rs externally v2 by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/568](https://github.com/rust-lang/backtrace-rs/pull/568) - Upgrade to 2021 ed and inline panics by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - Fix deny(unused) of an unused import with SGX + Miri by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/581](https://github.com/rust-lang/backtrace-rs/pull/581) - Fix unused_imports warning on latest nightly by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/575](https://github.com/rust-lang/backtrace-rs/pull/575) - Fix CI by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/582](https://github.com/rust-lang/backtrace-rs/pull/582) - Use `addr_of!` by [@​GrigorenkoPV](https://github.com/GrigorenkoPV) in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - Write down MSRV policy by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/561](https://github.com/rust-lang/backtrace-rs/pull/561) - Apply clippy::uninlined_format_args fixes by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/486](https://github.com/rust-lang/backtrace-rs/pull/486) - ignore clippy lints in `symbolize/gimli/stash.rs` by [@​onur-ozkan](https://github.com/onur-ozkan) in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) ##### New Contributors - [@​nyurik](https://github.com/nyurik) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - [@​bzEq](https://github.com/bzEq) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) - [@​bjorn3](https://github.com/bjorn3) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - [@​sthibaul](https://github.com/sthibaul) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) - [@​mzohreva](https://github.com/mzohreva) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) - [@​wesleywiser](https://github.com/wesleywiser) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - [@​kleisauke](https://github.com/kleisauke) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - [@​roblabla](https://github.com/roblabla) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - [@​michaelwoerister](https://github.com/michaelwoerister) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - [@​dpaoliello](https://github.com/dpaoliello) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) - [@​GrigorenkoPV](https://github.com/GrigorenkoPV) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - [@​fraillt](https://github.com/fraillt) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) - [@​onur-ozkan](https://github.com/onur-ozkan) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) **Full Changelog**: rust-lang/backtrace-rs@0.3.69...0.3.70 ### [`v0.3.69`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.69) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.68...0.3.69) Thank you everyone for contributing to a very nice release! ##### Tracking Binary Size As backtrace-rs is compiled into every single Rust program, we have begun tracking its binary size in order to find ways to reduce its impact on programs that only minimally use backtraces over time. This change is mostly relevant to this crate's CI, and has been implemented by [@​Kobzol](https://github.com/Kobzol) and [@​detly](https://github.com/detly) over PRs [#​542](https://github.com/rust-lang/backtrace-rs/issues/542), [#​544](https://github.com/rust-lang/backtrace-rs/issues/544), [#​546](https://github.com/rust-lang/backtrace-rs/issues/546), and [#​550](https://github.com/rust-lang/backtrace-rs/issues/550)! ##### Platform-Specific Fixes As usual, the majority of PRs for this release only affect 1 or 2 platforms. Technically, even the binary-size tracking is only implemented to track binary size on `x86_64-unknown-linux-gnu`. ##### fuchsia Backtraces for Fuchsia will now uses extended symbolization thanks to [@​liudangyi](https://github.com/liudangyi) in [https://github.com/rust-lang/backtrace-rs/pull/559](https://github.com/rust-lang/backtrace-rs/pull/559) ##### unix (with `procfs`) Many Unix-y platforms support `/proc`, including Linux and FreeBSD, but not OpenBSD. For those which do, backtrace uses `/proc/self/maps` to assist in recovering the trace. We did not parse the output of `/proc/self/maps` in a way that accounted for the fact that it may have spaces in path names, but this was fixed thanks to [@​MasonRemaley](https://github.com/MasonRemaley) in [https://github.com/rust-lang/backtrace-rs/pull/553](https://github.com/rust-lang/backtrace-rs/pull/553) ##### windows-msvc Some changes that should help binary size specifically on Windows MSVC targets, or at least compile times, have already been implemented, thanks to [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/543](https://github.com/rust-lang/backtrace-rs/pull/543) omitting compiling-in ELF backtrace capabilities. We don't have full binary size tracking for all major supported operating systems yet, so we believe this is worth 30KiB but that's more of an estimate than hard stats. ##### Dependency Management - Update addr2line and object dependencies by [@​philipc](https://github.com/philipc) in [https://github.com/rust-lang/backtrace-rs/pull/557](https://github.com/rust-lang/backtrace-rs/pull/557) - Exclude ci directory from packaged crate by [@​mulkieran](https://github.com/mulkieran) in [https://github.com/rust-lang/backtrace-rs/pull/555](https://github.com/rust-lang/backtrace-rs/pull/555) - Enable calling build.rs directly from std/build.rs by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/556](https://github.com/rust-lang/backtrace-rs/pull/556) ##### New Contributors - [@​Kobzol](https://github.com/Kobzol) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/542](https://github.com/rust-lang/backtrace-rs/pull/542) - [@​detly](https://github.com/detly) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/550](https://github.com/rust-lang/backtrace-rs/pull/550) - [@​liudangyi](https://github.com/liudangyi) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/559](https://github.com/rust-lang/backtrace-rs/pull/559) - [@​MasonRemaley](https://github.com/MasonRemaley) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/553](https://github.com/rust-lang/backtrace-rs/pull/553) - [@​mulkieran](https://github.com/mulkieran) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/555](https://github.com/rust-lang/backtrace-rs/pull/555) - [@​pitaj](https://github.com/pitaj) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/556](https://github.com/rust-lang/backtrace-rs/pull/556) - [@​klensy](https://github.com/klensy) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/543](https://github.com/rust-lang/backtrace-rs/pull/543) **Full Changelog**: rust-lang/backtrace-rs@0.3.68...0.3.69 ### [`v0.3.68`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.68) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.67...0.3.68) A bunch of behind-the-scenes work on upgrading CI has finally got things to a place where we can do confident releases again, so hopefully the next backtrace version will not take 6 months! Thanks to everyone who contributed to that! Most of the user-facing changes are about dependency updates and consequent improved platform compatibility, including with split DWARF. A few new functions on BacktraceFmt should also make it easier to inject additional text into backtrace's output. - Adapt to new Fuchsia target name by [@​flba-eb](https://github.com/flba-eb) in [https://github.com/rust-lang/backtrace-rs/pull/509](https://github.com/rust-lang/backtrace-rs/pull/509) - armv7 PSVita OS support by [@​nikarh](https://github.com/nikarh) in [https://github.com/rust-lang/backtrace-rs/pull/523](https://github.com/rust-lang/backtrace-rs/pull/523) - Upgrade addr2line and properly handle split DWARF on Linux by [@​khuey](https://github.com/khuey) in [https://github.com/rust-lang/backtrace-rs/pull/513](https://github.com/rust-lang/backtrace-rs/pull/513) - deps: update miniz_oxide to 0.7 by [@​poliorcetics](https://github.com/poliorcetics) in [https://github.com/rust-lang/backtrace-rs/pull/521](https://github.com/rust-lang/backtrace-rs/pull/521) - Add print in BacktraceFmt by [@​chenyukang](https://github.com/chenyukang) in [https://github.com/rust-lang/backtrace-rs/pull/527](https://github.com/rust-lang/backtrace-rs/pull/527) - Bump object to 0.31 by [@​lnicola](https://github.com/lnicola) in [https://github.com/rust-lang/backtrace-rs/pull/522](https://github.com/rust-lang/backtrace-rs/pull/522) - Add an exception for QNX Neutrino 7.0 as a 'no-op' platform by [@​samkearney](https://github.com/samkearney) in [https://github.com/rust-lang/backtrace-rs/pull/529](https://github.com/rust-lang/backtrace-rs/pull/529) - Use mmap64 on Linux. by [@​mikebenfield](https://github.com/mikebenfield) in [https://github.com/rust-lang/backtrace-rs/pull/501](https://github.com/rust-lang/backtrace-rs/pull/501) - dbghlp: Make mutex name unique to the process by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/518](https://github.com/rust-lang/backtrace-rs/pull/518) - gimli add netbsd to handle dl_iterate_phdr as well. by [@​devnexen](https://github.com/devnexen) in [https://github.com/rust-lang/backtrace-rs/pull/512](https://github.com/rust-lang/backtrace-rs/pull/512) - Add other apple targets to libunwind workaround by [@​thomcc](https://github.com/thomcc) in [https://github.com/rust-lang/backtrace-rs/pull/516](https://github.com/rust-lang/backtrace-rs/pull/516) - Add fmt method for BacktraceFmt by [@​chenyukang](https://github.com/chenyukang) in [https://github.com/rust-lang/backtrace-rs/pull/532](https://github.com/rust-lang/backtrace-rs/pull/532) ##### New Contributors - [@​bwmf2](https://github.com/bwmf2) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/515](https://github.com/rust-lang/backtrace-rs/pull/515) - [@​flba-eb](https://github.com/flba-eb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/509](https://github.com/rust-lang/backtrace-rs/pull/509) - [@​nikarh](https://github.com/nikarh) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/523](https://github.com/rust-lang/backtrace-rs/pull/523) - [@​poliorcetics](https://github.com/poliorcetics) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/521](https://github.com/rust-lang/backtrace-rs/pull/521) - [@​GuillaumeGomez](https://github.com/GuillaumeGomez) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/524](https://github.com/rust-lang/backtrace-rs/pull/524) - [@​chenyukang](https://github.com/chenyukang) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/527](https://github.com/rust-lang/backtrace-rs/pull/527) - [@​lnicola](https://github.com/lnicola) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/522](https://github.com/rust-lang/backtrace-rs/pull/522) - [@​samkearney](https://github.com/samkearney) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/529](https://github.com/rust-lang/backtrace-rs/pull/529) - [@​mikebenfield](https://github.com/mikebenfield) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/501](https://github.com/rust-lang/backtrace-rs/pull/501) - [@​devnexen](https://github.com/devnexen) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/512](https://github.com/rust-lang/backtrace-rs/pull/512) - [@​thomcc](https://github.com/thomcc) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/516](https://github.com/rust-lang/backtrace-rs/pull/516) - [@​workingjubilee](https://github.com/workingjubilee) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/533](https://github.com/rust-lang/backtrace-rs/pull/533) - [@​chriswailes](https://github.com/chriswailes) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/534](https://github.com/rust-lang/backtrace-rs/pull/534) **Full Changelog**: rust-lang/backtrace-rs@0.3.67...0.3.68 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Canary-nextjs).
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [backtrace](https://github.com/rust-lang/backtrace-rs) | dependencies | patch | `0.3` -> `0.3.71` | --- ### Release Notes <details> <summary>rust-lang/backtrace-rs (backtrace)</summary> ### [`v0.3.71`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.71) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.70...0.3.71) This is mostly CI changes, with a very mild bump to our effective cc crate version recorded, and a small modification to a previous changeset to allow backtrace to run at its current checked-in MSRV on Windows. Sorry about that! We will be getting 0.3.70 yanked shortly. ##### What's Changed - Make sgx functions exist with cfg(miri) by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/591](https://github.com/rust-lang/backtrace-rs/pull/591) - Update version of cc crate by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - Pull back MSRV on Windows by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/598](https://github.com/rust-lang/backtrace-rs/pull/598) - Force frame pointers on all i686 tests by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/601](https://github.com/rust-lang/backtrace-rs/pull/601) - Use rustc from stage0 instead of stage0-sysroot by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) - Cut backtrace 0.3.71 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/599](https://github.com/rust-lang/backtrace-rs/pull/599) ##### New Contributors - [@​jfgoog](https://github.com/jfgoog) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - [@​Nilstrieb](https://github.com/Nilstrieb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) **Full Changelog**: rust-lang/backtrace-rs@0.3.70...0.3.71 ### [`v0.3.70`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.70) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.70) ##### New API - A `BacktraceFrame` can now have `resolve(&mut self)` called on it thanks to [@​fraillt](https://github.com/fraillt) in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) ##### Platform Support We added support for new platforms in this release! - Thanks to [@​bzEq](https://github.com/bzEq) in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) we now have AIX support! - Thanks to [@​sthibaul](https://github.com/sthibaul) in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) we now have GNU/Hurd support! - Thanks to [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) we now support "emulation-compatible" AArch64 Windows (aka arm64ec) ##### Windows - Rewrite msvc backtrace support to be much faster on 64-bit platforms by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - Fix i686-pc-windows-gnu missing dbghelp module by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/571](https://github.com/rust-lang/backtrace-rs/pull/571) - Fix build errors on `thumbv7a-*-windows-msvc` targets by [@​kleisauke](https://github.com/kleisauke) in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - Fix panic in backtrace symbolication on win7 by [@​roblabla](https://github.com/roblabla) in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - remove few unused windows ffi fn by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/576](https://github.com/rust-lang/backtrace-rs/pull/576) - Make dbghelp look for PDBs next to their exe/dll. by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - Revert 32-bit dbghelp to a version WINE (presumably) likes by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/588](https://github.com/rust-lang/backtrace-rs/pull/588) - Update for Win10+ by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/589](https://github.com/rust-lang/backtrace-rs/pull/589) ##### SGX Thanks to - Adjust frame IP in SGX relative to image base by [@​mzohreva](https://github.com/mzohreva) in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) ##### Internals We did a bunch more work on our CI and internal cleanups - Modularise CI workflow and validate outputs for binary size checks. by [@​detly](https://github.com/detly) in [https://github.com/rust-lang/backtrace-rs/pull/549](https://github.com/rust-lang/backtrace-rs/pull/549) - Commit Cargo.lock by [@​bjorn3](https://github.com/bjorn3) in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - Enable calling build.rs externally v2 by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/568](https://github.com/rust-lang/backtrace-rs/pull/568) - Upgrade to 2021 ed and inline panics by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - Fix deny(unused) of an unused import with SGX + Miri by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/581](https://github.com/rust-lang/backtrace-rs/pull/581) - Fix unused_imports warning on latest nightly by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/575](https://github.com/rust-lang/backtrace-rs/pull/575) - Fix CI by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/582](https://github.com/rust-lang/backtrace-rs/pull/582) - Use `addr_of!` by [@​GrigorenkoPV](https://github.com/GrigorenkoPV) in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - Write down MSRV policy by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/561](https://github.com/rust-lang/backtrace-rs/pull/561) - Apply clippy::uninlined_format_args fixes by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/486](https://github.com/rust-lang/backtrace-rs/pull/486) - ignore clippy lints in `symbolize/gimli/stash.rs` by [@​onur-ozkan](https://github.com/onur-ozkan) in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) ##### New Contributors - [@​nyurik](https://github.com/nyurik) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - [@​bzEq](https://github.com/bzEq) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) - [@​bjorn3](https://github.com/bjorn3) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - [@​sthibaul](https://github.com/sthibaul) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) - [@​mzohreva](https://github.com/mzohreva) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) - [@​wesleywiser](https://github.com/wesleywiser) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - [@​kleisauke](https://github.com/kleisauke) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - [@​roblabla](https://github.com/roblabla) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - [@​michaelwoerister](https://github.com/michaelwoerister) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - [@​dpaoliello](https://github.com/dpaoliello) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) - [@​GrigorenkoPV](https://github.com/GrigorenkoPV) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - [@​fraillt](https://github.com/fraillt) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) - [@​onur-ozkan](https://github.com/onur-ozkan) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) **Full Changelog**: rust-lang/backtrace-rs@0.3.69...0.3.70 ### [`v0.3.69`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.69) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.68...0.3.69) Thank you everyone for contributing to a very nice release! ##### Tracking Binary Size As backtrace-rs is compiled into every single Rust program, we have begun tracking its binary size in order to find ways to reduce its impact on programs that only minimally use backtraces over time. This change is mostly relevant to this crate's CI, and has been implemented by [@​Kobzol](https://github.com/Kobzol) and [@​detly](https://github.com/detly) over PRs [#​542](https://github.com/rust-lang/backtrace-rs/issues/542), [#​544](https://github.com/rust-lang/backtrace-rs/issues/544), [#​546](https://github.com/rust-lang/backtrace-rs/issues/546), and [#​550](https://github.com/rust-lang/backtrace-rs/issues/550)! ##### Platform-Specific Fixes As usual, the majority of PRs for this release only affect 1 or 2 platforms. Technically, even the binary-size tracking is only implemented to track binary size on `x86_64-unknown-linux-gnu`. ##### fuchsia Backtraces for Fuchsia will now uses extended symbolization thanks to [@​liudangyi](https://github.com/liudangyi) in [https://github.com/rust-lang/backtrace-rs/pull/559](https://github.com/rust-lang/backtrace-rs/pull/559) ##### unix (with `procfs`) Many Unix-y platforms support `/proc`, including Linux and FreeBSD, but not OpenBSD. For those which do, backtrace uses `/proc/self/maps` to assist in recovering the trace. We did not parse the output of `/proc/self/maps` in a way that accounted for the fact that it may have spaces in path names, but this was fixed thanks to [@​MasonRemaley](https://github.com/MasonRemaley) in [https://github.com/rust-lang/backtrace-rs/pull/553](https://github.com/rust-lang/backtrace-rs/pull/553) ##### windows-msvc Some changes that should help binary size specifically on Windows MSVC targets, or at least compile times, have already been implemented, thanks to [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/543](https://github.com/rust-lang/backtrace-rs/pull/543) omitting compiling-in ELF backtrace capabilities. We don't have full binary size tracking for all major supported operating systems yet, so we believe this is worth 30KiB but that's more of an estimate than hard stats. ##### Dependency Management - Update addr2line and object dependencies by [@​philipc](https://github.com/philipc) in [https://github.com/rust-lang/backtrace-rs/pull/557](https://github.com/rust-lang/backtrace-rs/pull/557) - Exclude ci directory from packaged crate by [@​mulkieran](https://github.com/mulkieran) in [https://github.com/rust-lang/backtrace-rs/pull/555](https://github.com/rust-lang/backtrace-rs/pull/555) - Enable calling build.rs directly from std/build.rs by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/556](https://github.com/rust-lang/backtrace-rs/pull/556) ##### New Contributors - [@​Kobzol](https://github.com/Kobzol) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/542](https://github.com/rust-lang/backtrace-rs/pull/542) - [@​detly](https://github.com/detly) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/550](https://github.com/rust-lang/backtrace-rs/pull/550) - [@​liudangyi](https://github.com/liudangyi) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/559](https://github.com/rust-lang/backtrace-rs/pull/559) - [@​MasonRemaley](https://github.com/MasonRemaley) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/553](https://github.com/rust-lang/backtrace-rs/pull/553) - [@​mulkieran](https://github.com/mulkieran) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/555](https://github.com/rust-lang/backtrace-rs/pull/555) - [@​pitaj](https://github.com/pitaj) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/556](https://github.com/rust-lang/backtrace-rs/pull/556) - [@​klensy](https://github.com/klensy) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/543](https://github.com/rust-lang/backtrace-rs/pull/543) **Full Changelog**: rust-lang/backtrace-rs@0.3.68...0.3.69 ### [`v0.3.68`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.68) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.67...0.3.68) A bunch of behind-the-scenes work on upgrading CI has finally got things to a place where we can do confident releases again, so hopefully the next backtrace version will not take 6 months! Thanks to everyone who contributed to that! Most of the user-facing changes are about dependency updates and consequent improved platform compatibility, including with split DWARF. A few new functions on BacktraceFmt should also make it easier to inject additional text into backtrace's output. - Adapt to new Fuchsia target name by [@​flba-eb](https://github.com/flba-eb) in [https://github.com/rust-lang/backtrace-rs/pull/509](https://github.com/rust-lang/backtrace-rs/pull/509) - armv7 PSVita OS support by [@​nikarh](https://github.com/nikarh) in [https://github.com/rust-lang/backtrace-rs/pull/523](https://github.com/rust-lang/backtrace-rs/pull/523) - Upgrade addr2line and properly handle split DWARF on Linux by [@​khuey](https://github.com/khuey) in [https://github.com/rust-lang/backtrace-rs/pull/513](https://github.com/rust-lang/backtrace-rs/pull/513) - deps: update miniz_oxide to 0.7 by [@​poliorcetics](https://github.com/poliorcetics) in [https://github.com/rust-lang/backtrace-rs/pull/521](https://github.com/rust-lang/backtrace-rs/pull/521) - Add print in BacktraceFmt by [@​chenyukang](https://github.com/chenyukang) in [https://github.com/rust-lang/backtrace-rs/pull/527](https://github.com/rust-lang/backtrace-rs/pull/527) - Bump object to 0.31 by [@​lnicola](https://github.com/lnicola) in [https://github.com/rust-lang/backtrace-rs/pull/522](https://github.com/rust-lang/backtrace-rs/pull/522) - Add an exception for QNX Neutrino 7.0 as a 'no-op' platform by [@​samkearney](https://github.com/samkearney) in [https://github.com/rust-lang/backtrace-rs/pull/529](https://github.com/rust-lang/backtrace-rs/pull/529) - Use mmap64 on Linux. by [@​mikebenfield](https://github.com/mikebenfield) in [https://github.com/rust-lang/backtrace-rs/pull/501](https://github.com/rust-lang/backtrace-rs/pull/501) - dbghlp: Make mutex name unique to the process by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/518](https://github.com/rust-lang/backtrace-rs/pull/518) - gimli add netbsd to handle dl_iterate_phdr as well. by [@​devnexen](https://github.com/devnexen) in [https://github.com/rust-lang/backtrace-rs/pull/512](https://github.com/rust-lang/backtrace-rs/pull/512) - Add other apple targets to libunwind workaround by [@​thomcc](https://github.com/thomcc) in [https://github.com/rust-lang/backtrace-rs/pull/516](https://github.com/rust-lang/backtrace-rs/pull/516) - Add fmt method for BacktraceFmt by [@​chenyukang](https://github.com/chenyukang) in [https://github.com/rust-lang/backtrace-rs/pull/532](https://github.com/rust-lang/backtrace-rs/pull/532) ##### New Contributors - [@​bwmf2](https://github.com/bwmf2) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/515](https://github.com/rust-lang/backtrace-rs/pull/515) - [@​flba-eb](https://github.com/flba-eb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/509](https://github.com/rust-lang/backtrace-rs/pull/509) - [@​nikarh](https://github.com/nikarh) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/523](https://github.com/rust-lang/backtrace-rs/pull/523) - [@​poliorcetics](https://github.com/poliorcetics) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/521](https://github.com/rust-lang/backtrace-rs/pull/521) - [@​GuillaumeGomez](https://github.com/GuillaumeGomez) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/524](https://github.com/rust-lang/backtrace-rs/pull/524) - [@​chenyukang](https://github.com/chenyukang) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/527](https://github.com/rust-lang/backtrace-rs/pull/527) - [@​lnicola](https://github.com/lnicola) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/522](https://github.com/rust-lang/backtrace-rs/pull/522) - [@​samkearney](https://github.com/samkearney) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/529](https://github.com/rust-lang/backtrace-rs/pull/529) - [@​mikebenfield](https://github.com/mikebenfield) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/501](https://github.com/rust-lang/backtrace-rs/pull/501) - [@​devnexen](https://github.com/devnexen) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/512](https://github.com/rust-lang/backtrace-rs/pull/512) - [@​thomcc](https://github.com/thomcc) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/516](https://github.com/rust-lang/backtrace-rs/pull/516) - [@​workingjubilee](https://github.com/workingjubilee) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/533](https://github.com/rust-lang/backtrace-rs/pull/533) - [@​chriswailes](https://github.com/chriswailes) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/534](https://github.com/rust-lang/backtrace-rs/pull/534) **Full Changelog**: rust-lang/backtrace-rs@0.3.67...0.3.68 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [backtrace](https://github.com/rust-lang/backtrace-rs) | dependencies | patch | `0.3.69` -> `0.3.73` | | [backtrace](https://github.com/rust-lang/backtrace-rs) | workspace.dependencies | patch | `0.3.69` -> `0.3.73` | | [bytecheck](https://github.com/rkyv/bytecheck) | workspace.dependencies | patch | `0.6.11` -> `0.6.12` | | [hstr](https://github.com/dudykr/ddbase) | workspace.dependencies | patch | `0.2.8` -> `0.2.10` | | [js-sys](https://rustwasm.github.io/wasm-bindgen/) ([source](https://github.com/rustwasm/wasm-bindgen/tree/HEAD/crates/js-sys)) | workspace.dependencies | patch | `0.3.68` -> `0.3.69` | | [libfuzzer-sys](https://github.com/rust-fuzz/libfuzzer) | dependencies | patch | `0.4.5` -> `0.4.7` | | [num-bigint](https://github.com/rust-num/num-bigint) | workspace.dependencies | patch | `0.4.4` -> `0.4.6` | | [num-traits](https://github.com/rust-num/num-traits) | workspace.dependencies | patch | `0.2.17` -> `0.2.19` | | [parking_lot](https://github.com/Amanieu/parking_lot) | workspace.dependencies | patch | `0.12.1` -> `0.12.3` | | [petgraph](https://github.com/petgraph/petgraph) | workspace.dependencies | patch | `0.6.4` -> `0.6.5` | | [toml](https://github.com/toml-rs/toml) | workspace.dependencies | patch | `0.8.8` -> `0.8.15` | | [unicode-width](https://github.com/unicode-rs/unicode-width) | workspace.dependencies | patch | `0.1.11` -> `0.1.13` | | [virtual-fs](https://wasmer.io/) ([source](https://github.com/wasmerio/wasmer)) | workspace.dependencies | patch | `=0.11.1` -> `=0.11.4` | | [wasm-bindgen](https://rustwasm.github.io/) ([source](https://github.com/rustwasm/wasm-bindgen)) | dependencies | patch | `0.2.91` -> `0.2.92` | | [wasm-bindgen](https://rustwasm.github.io/) ([source](https://github.com/rustwasm/wasm-bindgen)) | workspace.dependencies | patch | `0.2.91` -> `0.2.92` | | [wasm-bindgen-futures](https://rustwasm.github.io/wasm-bindgen/) ([source](https://github.com/rustwasm/wasm-bindgen/tree/HEAD/crates/futures)) | workspace.dependencies | patch | `0.4.41` -> `0.4.42` | --- ### Release Notes <details> <summary>rust-lang/backtrace-rs (backtrace)</summary> ### [`v0.3.73`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.73) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.72...0.3.73) This basically just is bugfixes so that backtrace works on Windows 7 again. ##### What's Changed - Fix signature of resolve_legacy for Windows 7 target by [@​aapanfilovv](https://github.com/aapanfilovv) in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - Update some comments by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/630](https://github.com/rust-lang/backtrace-rs/pull/630) - Update object to 0.36.0. by [@​afranchuk](https://github.com/afranchuk) in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) ##### New Contributors - [@​aapanfilovv](https://github.com/aapanfilovv) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - [@​afranchuk](https://github.com/afranchuk) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) **Full Changelog**: rust-lang/backtrace-rs@0.3.72...0.3.73 ### [`v0.3.72`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.72) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72) This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72. If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies. ##### What's Changed - Revert "Use rustc from stage0 instead of stage0-sysroot (rust-lang/ba… by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/603](https://github.com/rust-lang/backtrace-rs/pull/603) - Remove dead code by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/605](https://github.com/rust-lang/backtrace-rs/pull/605) - Fix CI and remove rustc-serialize by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/596](https://github.com/rust-lang/backtrace-rs/pull/596) - Use correct base address and update comment by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/604](https://github.com/rust-lang/backtrace-rs/pull/604) - Windows AArch64: Break out of tracing when no longer making progress by [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/610](https://github.com/rust-lang/backtrace-rs/pull/610) - Remove obsolete rustc-serialize references by [@​atouchet](https://github.com/atouchet) in [https://github.com/rust-lang/backtrace-rs/pull/614](https://github.com/rust-lang/backtrace-rs/pull/614) - Update `object` and `addr2line` dependencies by [@​a1phyr](https://github.com/a1phyr) in [https://github.com/rust-lang/backtrace-rs/pull/612](https://github.com/rust-lang/backtrace-rs/pull/612) - Fix tests for rust 1.79 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/621](https://github.com/rust-lang/backtrace-rs/pull/621) - Remove unused `libbacktrace` and `gimli-symbolize` features by [@​Enselic](https://github.com/Enselic) in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - remove some instances of dead_code by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/619](https://github.com/rust-lang/backtrace-rs/pull/619) - Reduce panics in dbghelp by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/608](https://github.com/rust-lang/backtrace-rs/pull/608) - Add Apple visionOS support by [@​QuentinPerez](https://github.com/QuentinPerez) in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - Update cc crate to v1.0.97 by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/623](https://github.com/rust-lang/backtrace-rs/pull/623) - chore: add docs for the global re-entrant lock by [@​Gankra](https://github.com/Gankra) in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) - Test with lld-compatible args by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/627](https://github.com/rust-lang/backtrace-rs/pull/627) - Bump rustc-demangle version by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/624](https://github.com/rust-lang/backtrace-rs/pull/624) - cleanup dead_code around cpp_demangle feature by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/622](https://github.com/rust-lang/backtrace-rs/pull/622) - Cut backtrace 0.3.72 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/628](https://github.com/rust-lang/backtrace-rs/pull/628) ##### New Contributors - [@​Enselic](https://github.com/Enselic) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - [@​QuentinPerez](https://github.com/QuentinPerez) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - [@​Gankra](https://github.com/Gankra) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) **Full Changelog**: rust-lang/backtrace-rs@0.3.71...0.3.72 ### [`v0.3.71`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.71) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.70...0.3.71) This is mostly CI changes, with a very mild bump to our effective cc crate version recorded, and a small modification to a previous changeset to allow backtrace to run at its current checked-in MSRV on Windows. Sorry about that! We will be getting 0.3.70 yanked shortly. ##### What's Changed - Make sgx functions exist with cfg(miri) by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/591](https://github.com/rust-lang/backtrace-rs/pull/591) - Update version of cc crate by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - Pull back MSRV on Windows by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/598](https://github.com/rust-lang/backtrace-rs/pull/598) - Force frame pointers on all i686 tests by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/601](https://github.com/rust-lang/backtrace-rs/pull/601) - Use rustc from stage0 instead of stage0-sysroot by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) - Cut backtrace 0.3.71 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/599](https://github.com/rust-lang/backtrace-rs/pull/599) ##### New Contributors - [@​jfgoog](https://github.com/jfgoog) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - [@​Nilstrieb](https://github.com/Nilstrieb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) **Full Changelog**: rust-lang/backtrace-rs@0.3.70...0.3.71 ### [`v0.3.70`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.70) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.70) ##### New API - A `BacktraceFrame` can now have `resolve(&mut self)` called on it thanks to [@​fraillt](https://github.com/fraillt) in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) ##### Platform Support We added support for new platforms in this release! - Thanks to [@​bzEq](https://github.com/bzEq) in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) we now have AIX support! - Thanks to [@​sthibaul](https://github.com/sthibaul) in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) we now have GNU/Hurd support! - Thanks to [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) we now support "emulation-compatible" AArch64 Windows (aka arm64ec) ##### Windows - Rewrite msvc backtrace support to be much faster on 64-bit platforms by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - Fix i686-pc-windows-gnu missing dbghelp module by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/571](https://github.com/rust-lang/backtrace-rs/pull/571) - Fix build errors on `thumbv7a-*-windows-msvc` targets by [@​kleisauke](https://github.com/kleisauke) in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - Fix panic in backtrace symbolication on win7 by [@​roblabla](https://github.com/roblabla) in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - remove few unused windows ffi fn by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/576](https://github.com/rust-lang/backtrace-rs/pull/576) - Make dbghelp look for PDBs next to their exe/dll. by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - Revert 32-bit dbghelp to a version WINE (presumably) likes by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/588](https://github.com/rust-lang/backtrace-rs/pull/588) - Update for Win10+ by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/589](https://github.com/rust-lang/backtrace-rs/pull/589) ##### SGX Thanks to - Adjust frame IP in SGX relative to image base by [@​mzohreva](https://github.com/mzohreva) in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) ##### Internals We did a bunch more work on our CI and internal cleanups - Modularise CI workflow and validate outputs for binary size checks. by [@​detly](https://github.com/detly) in [https://github.com/rust-lang/backtrace-rs/pull/549](https://github.com/rust-lang/backtrace-rs/pull/549) - Commit Cargo.lock by [@​bjorn3](https://github.com/bjorn3) in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - Enable calling build.rs externally v2 by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/568](https://github.com/rust-lang/backtrace-rs/pull/568) - Upgrade to 2021 ed and inline panics by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - Fix deny(unused) of an unused import with SGX + Miri by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/581](https://github.com/rust-lang/backtrace-rs/pull/581) - Fix unused_imports warning on latest nightly by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/575](https://github.com/rust-lang/backtrace-rs/pull/575) - Fix CI by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/582](https://github.com/rust-lang/backtrace-rs/pull/582) - Use `addr_of!` by [@​GrigorenkoPV](https://github.com/GrigorenkoPV) in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - Write down MSRV policy by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/561](https://github.com/rust-lang/backtrace-rs/pull/561) - Apply clippy::uninlined_format_args fixes by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/486](https://github.com/rust-lang/backtrace-rs/pull/486) - ignore clippy lints in `symbolize/gimli/stash.rs` by [@​onur-ozkan](https://github.com/onur-ozkan) in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) ##### New Contributors - [@​nyurik](https://github.com/nyurik) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - [@​bzEq](https://github.com/bzEq) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) - [@​bjorn3](https://github.com/bjorn3) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - [@​sthibaul](https://github.com/sthibaul) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) - [@​mzohreva](https://github.com/mzohreva) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) - [@​wesleywiser](https://github.com/wesleywiser) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - [@​kleisauke](https://github.com/kleisauke) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - [@​roblabla](https://github.com/roblabla) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - [@​michaelwoerister](https://github.com/michaelwoerister) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - [@​dpaoliello](https://github.com/dpaoliello) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) - [@​GrigorenkoPV](https://github.com/GrigorenkoPV) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - [@​fraillt](https://github.com/fraillt) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) - [@​onur-ozkan](https://github.com/onur-ozkan) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) **Full Changelog**: rust-lang/backtrace-rs@0.3.69...0.3.70 </details> <details> <summary>rust-fuzz/libfuzzer (libfuzzer-sys)</summary> ### [`v0.4.7`](https://github.com/rust-fuzz/libfuzzer/blob/HEAD/CHANGELOG.md#047) [Compare Source](https://github.com/rust-fuzz/libfuzzer/compare/0.4.6...0.4.7) Released 2023-08-10. ##### Added - Added the `link_libfuzzer` cargo feature. This feature is on by default and preserves the existing behavior of statically linking libfuzzer. You can disable it if you are linking your own version of libfuzzer some other way, or another library that provides the same ABI as libfuzzer. *** ### [`v0.4.6`](https://github.com/rust-fuzz/libfuzzer/blob/HEAD/CHANGELOG.md#046) [Compare Source](https://github.com/rust-fuzz/libfuzzer/compare/0.4.5...0.4.6) Released 2023-01-26. ##### Fixed - Fixed a potential name conflict in functions generated by the `fuzz_target!` macro. - Fixed potential stale builds when updating custom libfuzzers to link against. *** </details> <details> <summary>rust-num/num-bigint (num-bigint)</summary> ### [`v0.4.6`](https://github.com/rust-num/num-bigint/blob/HEAD/RELEASES.md#Release-046-2024-06-27) [Compare Source](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.5...num-bigint-0.4.6) - [Fixed compilation on `x86_64-unknown-linux-gnux32`.][312] **Contributors**: [@​cuviper](https://github.com/cuviper), [@​ralphtandetzky](https://github.com/ralphtandetzky), [@​yhx-12243](https://github.com/yhx-12243) [312]: https://github.com/rust-num/num-bigint/pull/312 ### [`v0.4.5`](https://github.com/rust-num/num-bigint/blob/HEAD/RELEASES.md#Release-045-2024-05-06) [Compare Source](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.4...num-bigint-0.4.5) - [Upgrade to 2021 edition, **MSRV 1.60**][292] - [Add `const ZERO` and implement `num_traits::ConstZero`][298] - [Add `modinv` methods for the modular inverse][288] - [Optimize multiplication with imbalanced operands][295] - [Optimize scalar division on x86 and x86-64][236] **Contributors**: [@​cuviper](https://github.com/cuviper), [@​joelonsql](https://github.com/joelonsql), [@​waywardmonkeys](https://github.com/waywardmonkeys) [236]: https://github.com/rust-num/num-bigint/pull/236 [288]: https://github.com/rust-num/num-bigint/pull/288 [292]: https://github.com/rust-num/num-bigint/pull/292 [295]: https://github.com/rust-num/num-bigint/pull/295 [298]: https://github.com/rust-num/num-bigint/pull/298 </details> <details> <summary>rust-num/num-traits (num-traits)</summary> ### [`v0.2.19`](https://github.com/rust-num/num-traits/blob/HEAD/RELEASES.md#Release-0219-2024-05-03) [Compare Source](https://github.com/rust-num/num-traits/compare/num-traits-0.2.18...num-traits-0.2.19) - [Upgrade to 2021 edition, **MSRV 1.60**][310] - [The new `Float::clamp` limits values by minimum and maximum][305] **Contributors**: [@​cuviper](https://github.com/cuviper), [@​michaelciraci](https://github.com/michaelciraci) [305]: https://github.com/rust-num/num-traits/pull/305 [310]: https://github.com/rust-num/num-traits/pull/310 ### [`v0.2.18`](https://github.com/rust-num/num-traits/blob/HEAD/RELEASES.md#Release-0218-2024-02-07) [Compare Source](https://github.com/rust-num/num-traits/compare/num-traits-0.2.17...num-traits-0.2.18) - [The new `Euclid::div_rem_euclid` and `CheckedEuclid::checked_div_rem_euclid` methods][291] compute and return the quotient and remainder at the same time. - [The new `TotalOrder` trait implements the IEEE 754 `totalOrder` predicate.][295] - [The new `ConstZero` and `ConstOne` traits offered associated constants][303], extending the non-const `Zero` and `One` traits for types that have constant values. **Contributors**: [@​andrewjradcliffe](https://github.com/andrewjradcliffe), [@​cuviper](https://github.com/cuviper), [@​tarcieri](https://github.com/tarcieri), [@​tdelabro](https://github.com/tdelabro), [@​waywardmonkeys](https://github.com/waywardmonkeys) [291]: https://github.com/rust-num/num-traits/pull/291 [295]: https://github.com/rust-num/num-traits/pull/295 [303]: https://github.com/rust-num/num-traits/pull/303 </details> <details> <summary>Amanieu/parking_lot (parking_lot)</summary> ### [`v0.12.3`](https://github.com/Amanieu/parking_lot/blob/HEAD/CHANGELOG.md#parkinglot-0123-2024-05-24) [Compare Source](https://github.com/Amanieu/parking_lot/compare/0.12.2...0.12.3) - Export types provided by arc_lock feature ([#​442](https://github.com/Amanieu/parking_lot/issues/442)) ### [`v0.12.2`](https://github.com/Amanieu/parking_lot/blob/HEAD/CHANGELOG.md#parkinglot-0122-parkinglotcore-0910-lockapi-0412-2024-04-15) [Compare Source](https://github.com/Amanieu/parking_lot/compare/0.12.1...0.12.2) - Fixed panic when calling `with_upgraded` twice on a `ArcRwLockUpgradableReadGuard` ([#​431](https://github.com/Amanieu/parking_lot/issues/431)) - Fixed `RwLockUpgradeableReadGuard::with_upgraded` - Added lock_api::{Mutex, ReentrantMutex, RwLock}::from_raw methods ([#​429](https://github.com/Amanieu/parking_lot/issues/429)) - Added Apple visionOS support ([#​433](https://github.com/Amanieu/parking_lot/issues/433)) </details> <details> <summary>petgraph/petgraph (petgraph)</summary> ### [`v0.6.5`](https://github.com/petgraph/petgraph/blob/HEAD/RELEASES.rst#Version-065-2024-05-06) [Compare Source](https://github.com/petgraph/petgraph/compare/petgraph@v0.6.4...petgraph@v0.6.5) \========================== - Add rayon support for `GraphMap` (`#573`*, `#615`*) - Add `Topo::with_initials` method (`#585`\_) - Add logo to the project (`#598`\_) - Add Ford-Fulkerson algorithm (`#640`\_) - Update `itertools` to 0.12.1 (`#628`\_) - Update `GraphMap` to allow custom hash functions (`#623`\_) - Fix documentation (`#630`\_) - Fix clippy warnings (`#627`\_) - (internal) Fix remove old `copyclone` macro (`#601`\_) - (internal) Move minimum spanning tree into own module (`#624`\_) .. \_`#573`: [https://github.com/petgraph/petgraph/pull/573](https://github.com/petgraph/petgraph/pull/573) .. \_`#615`: [https://github.com/petgraph/petgraph/pull/615](https://github.com/petgraph/petgraph/pull/615) .. \_`#585`: [https://github.com/petgraph/petgraph/pull/585](https://github.com/petgraph/petgraph/pull/585) .. \_`#598`: [https://github.com/petgraph/petgraph/pull/598](https://github.com/petgraph/petgraph/pull/598) .. \_`#640`: [https://github.com/petgraph/petgraph/pull/640](https://github.com/petgraph/petgraph/pull/640) .. \_`#628`: [https://github.com/petgraph/petgraph/pull/628](https://github.com/petgraph/petgraph/pull/628) .. \_`#623`: [https://github.com/petgraph/petgraph/pull/623](https://github.com/petgraph/petgraph/pull/623) .. \_`#630`: [https://github.com/petgraph/petgraph/pull/630](https://github.com/petgraph/petgraph/pull/630) .. \_`#627`: [https://github.com/petgraph/petgraph/pull/627](https://github.com/petgraph/petgraph/pull/627) .. \_`#601`: [https://github.com/petgraph/petgraph/pull/601](https://github.com/petgraph/petgraph/pull/601) .. \_`#624`: [https://github.com/petgraph/petgraph/pull/624](https://github.com/petgraph/petgraph/pull/624) </details> <details> <summary>toml-rs/toml (toml)</summary> ### [`v0.8.15`](https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15) ### [`v0.8.14`](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) ### [`v0.8.13`](https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13) ### [`v0.8.12`](https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12) ### [`v0.8.11`](https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11) ### [`v0.8.10`](https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10) ### [`v0.8.9`](https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9) </details> <details> <summary>unicode-rs/unicode-width (unicode-width)</summary> ### [`v0.1.13`](https://github.com/unicode-rs/unicode-width/compare/v0.1.12...v0.1.13) [Compare Source](https://github.com/unicode-rs/unicode-width/compare/v0.1.12...v0.1.13) ### [`v0.1.12`](https://github.com/unicode-rs/unicode-width/compare/v0.1.11...v0.1.12) [Compare Source](https://github.com/unicode-rs/unicode-width/compare/v0.1.11...v0.1.12) </details> <details> <summary>rustwasm/wasm-bindgen (wasm-bindgen)</summary> ### [`v0.2.92`](https://github.com/rustwasm/wasm-bindgen/blob/HEAD/CHANGELOG.md#0292) [Compare Source](https://github.com/rustwasm/wasm-bindgen/compare/0.2.91...0.2.92) Released 2024-03-04 ##### Added - Add bindings for `RTCPeerConnectionIceErrorEvent`. [#​3835](https://github.com/rustwasm/wasm-bindgen/pull/3835) - Add bindings for `CanvasState.reset()`, affecting `CanvasRenderingContext2D` and `OffscreenCanvasRenderingContext2D`. [#​3844](https://github.com/rustwasm/wasm-bindgen/pull/3844) - Add `TryFrom` implementations for `Number`, that allow losslessly converting from 64- and 128-bits numbers. [#​3847](https://github.com/rustwasm/wasm-bindgen/pull/3847) - Add support for `Option<*const T>`, `Option<*mut T>` and `NonNull<T>`. [#​3852](https://github.com/rustwasm/wasm-bindgen/pull/3852) [#​3857](https://github.com/rustwasm/wasm-bindgen/pull/3857) - Allow overriding the URL used for headless tests by setting `WASM_BINDGEN_TEST_ADDRESS`. [#​3861](https://github.com/rustwasm/wasm-bindgen/pull/3861) ##### Fixed - Make .wasm output deterministic when using `--reference-types`. [#​3851](https://github.com/rustwasm/wasm-bindgen/pull/3851) - Don't allow invalid Unicode scalar values in `char`. [#​3866](https://github.com/rustwasm/wasm-bindgen/pull/3866) *** </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/swc-project/swc). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [backtrace](https://github.com/rust-lang/backtrace-rs) | dependencies | patch | `0.3.69` -> `0.3.73` | | [backtrace](https://github.com/rust-lang/backtrace-rs) | dev-dependencies | patch | `0.3.69` -> `0.3.73` | --- ### Release Notes <details> <summary>rust-lang/backtrace-rs (backtrace)</summary> ### [`v0.3.73`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.73) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.72...0.3.73) This basically just is bugfixes so that backtrace works on Windows 7 again. #### What's Changed - Fix signature of resolve_legacy for Windows 7 target by [@​aapanfilovv](https://github.com/aapanfilovv) in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - Update some comments by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/630](https://github.com/rust-lang/backtrace-rs/pull/630) - Update object to 0.36.0. by [@​afranchuk](https://github.com/afranchuk) in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) #### New Contributors - [@​aapanfilovv](https://github.com/aapanfilovv) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - [@​afranchuk](https://github.com/afranchuk) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) **Full Changelog**: rust-lang/backtrace-rs@0.3.72...0.3.73 ### [`v0.3.72`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.72) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72) This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72. If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies. #### What's Changed - Revert "Use rustc from stage0 instead of stage0-sysroot (rust-lang/ba… by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/603](https://github.com/rust-lang/backtrace-rs/pull/603) - Remove dead code by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/605](https://github.com/rust-lang/backtrace-rs/pull/605) - Fix CI and remove rustc-serialize by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/596](https://github.com/rust-lang/backtrace-rs/pull/596) - Use correct base address and update comment by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/604](https://github.com/rust-lang/backtrace-rs/pull/604) - Windows AArch64: Break out of tracing when no longer making progress by [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/610](https://github.com/rust-lang/backtrace-rs/pull/610) - Remove obsolete rustc-serialize references by [@​atouchet](https://github.com/atouchet) in [https://github.com/rust-lang/backtrace-rs/pull/614](https://github.com/rust-lang/backtrace-rs/pull/614) - Update `object` and `addr2line` dependencies by [@​a1phyr](https://github.com/a1phyr) in [https://github.com/rust-lang/backtrace-rs/pull/612](https://github.com/rust-lang/backtrace-rs/pull/612) - Fix tests for rust 1.79 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/621](https://github.com/rust-lang/backtrace-rs/pull/621) - Remove unused `libbacktrace` and `gimli-symbolize` features by [@​Enselic](https://github.com/Enselic) in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - remove some instances of dead_code by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/619](https://github.com/rust-lang/backtrace-rs/pull/619) - Reduce panics in dbghelp by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/608](https://github.com/rust-lang/backtrace-rs/pull/608) - Add Apple visionOS support by [@​QuentinPerez](https://github.com/QuentinPerez) in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - Update cc crate to v1.0.97 by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/623](https://github.com/rust-lang/backtrace-rs/pull/623) - chore: add docs for the global re-entrant lock by [@​Gankra](https://github.com/Gankra) in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) - Test with lld-compatible args by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/627](https://github.com/rust-lang/backtrace-rs/pull/627) - Bump rustc-demangle version by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/624](https://github.com/rust-lang/backtrace-rs/pull/624) - cleanup dead_code around cpp_demangle feature by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/622](https://github.com/rust-lang/backtrace-rs/pull/622) - Cut backtrace 0.3.72 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/628](https://github.com/rust-lang/backtrace-rs/pull/628) #### New Contributors - [@​Enselic](https://github.com/Enselic) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - [@​QuentinPerez](https://github.com/QuentinPerez) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - [@​Gankra](https://github.com/Gankra) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) **Full Changelog**: rust-lang/backtrace-rs@0.3.71...0.3.72 ### [`v0.3.71`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.71) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.70...0.3.71) This is mostly CI changes, with a very mild bump to our effective cc crate version recorded, and a small modification to a previous changeset to allow backtrace to run at its current checked-in MSRV on Windows. Sorry about that! We will be getting 0.3.70 yanked shortly. #### What's Changed - Make sgx functions exist with cfg(miri) by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/591](https://github.com/rust-lang/backtrace-rs/pull/591) - Update version of cc crate by [@​jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - Pull back MSRV on Windows by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/598](https://github.com/rust-lang/backtrace-rs/pull/598) - Force frame pointers on all i686 tests by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/601](https://github.com/rust-lang/backtrace-rs/pull/601) - Use rustc from stage0 instead of stage0-sysroot by [@​Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) - Cut backtrace 0.3.71 by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/599](https://github.com/rust-lang/backtrace-rs/pull/599) #### New Contributors - [@​jfgoog](https://github.com/jfgoog) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - [@​Nilstrieb](https://github.com/Nilstrieb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) **Full Changelog**: rust-lang/backtrace-rs@0.3.70...0.3.71 ### [`v0.3.70`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.70) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.70) #### New API - A `BacktraceFrame` can now have `resolve(&mut self)` called on it thanks to [@​fraillt](https://github.com/fraillt) in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) #### Platform Support We added support for new platforms in this release! - Thanks to [@​bzEq](https://github.com/bzEq) in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) we now have AIX support! - Thanks to [@​sthibaul](https://github.com/sthibaul) in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) we now have GNU/Hurd support! - Thanks to [@​dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) we now support "emulation-compatible" AArch64 Windows (aka arm64ec) ##### Windows - Rewrite msvc backtrace support to be much faster on 64-bit platforms by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - Fix i686-pc-windows-gnu missing dbghelp module by [@​wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/571](https://github.com/rust-lang/backtrace-rs/pull/571) - Fix build errors on `thumbv7a-*-windows-msvc` targets by [@​kleisauke](https://github.com/kleisauke) in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - Fix panic in backtrace symbolication on win7 by [@​roblabla](https://github.com/roblabla) in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - remove few unused windows ffi fn by [@​klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/576](https://github.com/rust-lang/backtrace-rs/pull/576) - Make dbghelp look for PDBs next to their exe/dll. by [@​michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - Revert 32-bit dbghelp to a version WINE (presumably) likes by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/588](https://github.com/rust-lang/backtrace-rs/pull/588) - Update for Win10+ by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/589](https://github.com/rust-lang/backtrace-rs/pull/589) ##### SGX Thanks to - Adjust frame IP in SGX relative to image base by [@​mzohreva](https://github.com/mzohreva) in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) #### Internals We did a bunch more work on our CI and internal cleanups - Modularise CI workflow and validate outputs for binary size checks. by [@​detly](https://github.com/detly) in [https://github.com/rust-lang/backtrace-rs/pull/549](https://github.com/rust-lang/backtrace-rs/pull/549) - Commit Cargo.lock by [@​bjorn3](https://github.com/bjorn3) in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - Enable calling build.rs externally v2 by [@​pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/568](https://github.com/rust-lang/backtrace-rs/pull/568) - Upgrade to 2021 ed and inline panics by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - Fix deny(unused) of an unused import with SGX + Miri by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/581](https://github.com/rust-lang/backtrace-rs/pull/581) - Fix unused_imports warning on latest nightly by [@​ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/575](https://github.com/rust-lang/backtrace-rs/pull/575) - Fix CI by [@​saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/582](https://github.com/rust-lang/backtrace-rs/pull/582) - Use `addr_of!` by [@​GrigorenkoPV](https://github.com/GrigorenkoPV) in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - Write down MSRV policy by [@​workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/561](https://github.com/rust-lang/backtrace-rs/pull/561) - Apply clippy::uninlined_format_args fixes by [@​nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/486](https://github.com/rust-lang/backtrace-rs/pull/486) - ignore clippy lints in `symbolize/gimli/stash.rs` by [@​onur-ozkan](https://github.com/onur-ozkan) in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) #### New Contributors - [@​nyurik](https://github.com/nyurik) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - [@​bzEq](https://github.com/bzEq) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) - [@​bjorn3](https://github.com/bjorn3) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - [@​sthibaul](https://github.com/sthibaul) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) - [@​mzohreva](https://github.com/mzohreva) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) - [@​wesleywiser](https://github.com/wesleywiser) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - [@​kleisauke](https://github.com/kleisauke) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - [@​roblabla](https://github.com/roblabla) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - [@​michaelwoerister](https://github.com/michaelwoerister) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - [@​dpaoliello](https://github.com/dpaoliello) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) - [@​GrigorenkoPV](https://github.com/GrigorenkoPV) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - [@​fraillt](https://github.com/fraillt) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) - [@​onur-ozkan](https://github.com/onur-ozkan) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) **Full Changelog**: rust-lang/backtrace-rs@0.3.69...0.3.70 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- Release Notes: - N/A <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [backtrace](https://github.com/rust-lang/backtrace-rs) | dependencies | patch | `0.3.69` -> `0.3.73` | | [backtrace](https://github.com/rust-lang/backtrace-rs) | dev-dependencies | patch | `0.3.69` -> `0.3.73` | --- ### Release Notes <details> <summary>rust-lang/backtrace-rs (backtrace)</summary> ### [`v0.3.73`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.73) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.72...0.3.73) This basically just is bugfixes so that backtrace works on Windows 7 again. #### What's Changed - Fix signature of resolve_legacy for Windows 7 target by [@&zed-industries#8203;aapanfilovv](https://github.com/aapanfilovv) in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - Update some comments by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/630](https://github.com/rust-lang/backtrace-rs/pull/630) - Update object to 0.36.0. by [@&zed-industries#8203;afranchuk](https://github.com/afranchuk) in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) #### New Contributors - [@&zed-industries#8203;aapanfilovv](https://github.com/aapanfilovv) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/631](https://github.com/rust-lang/backtrace-rs/pull/631) - [@&zed-industries#8203;afranchuk](https://github.com/afranchuk) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/633](https://github.com/rust-lang/backtrace-rs/pull/633) **Full Changelog**: rust-lang/backtrace-rs@0.3.72...0.3.73 ### [`v0.3.72`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.72) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72) This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72. If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies. #### What's Changed - Revert "Use rustc from stage0 instead of stage0-sysroot (rust-lang/ba… by [@&zed-industries#8203;Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/603](https://github.com/rust-lang/backtrace-rs/pull/603) - Remove dead code by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/605](https://github.com/rust-lang/backtrace-rs/pull/605) - Fix CI and remove rustc-serialize by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/596](https://github.com/rust-lang/backtrace-rs/pull/596) - Use correct base address and update comment by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/604](https://github.com/rust-lang/backtrace-rs/pull/604) - Windows AArch64: Break out of tracing when no longer making progress by [@&zed-industries#8203;dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/610](https://github.com/rust-lang/backtrace-rs/pull/610) - Remove obsolete rustc-serialize references by [@&zed-industries#8203;atouchet](https://github.com/atouchet) in [https://github.com/rust-lang/backtrace-rs/pull/614](https://github.com/rust-lang/backtrace-rs/pull/614) - Update `object` and `addr2line` dependencies by [@&zed-industries#8203;a1phyr](https://github.com/a1phyr) in [https://github.com/rust-lang/backtrace-rs/pull/612](https://github.com/rust-lang/backtrace-rs/pull/612) - Fix tests for rust 1.79 by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/621](https://github.com/rust-lang/backtrace-rs/pull/621) - Remove unused `libbacktrace` and `gimli-symbolize` features by [@&zed-industries#8203;Enselic](https://github.com/Enselic) in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - remove some instances of dead_code by [@&zed-industries#8203;klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/619](https://github.com/rust-lang/backtrace-rs/pull/619) - Reduce panics in dbghelp by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/608](https://github.com/rust-lang/backtrace-rs/pull/608) - Add Apple visionOS support by [@&zed-industries#8203;QuentinPerez](https://github.com/QuentinPerez) in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - Update cc crate to v1.0.97 by [@&zed-industries#8203;jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/623](https://github.com/rust-lang/backtrace-rs/pull/623) - chore: add docs for the global re-entrant lock by [@&zed-industries#8203;Gankra](https://github.com/Gankra) in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) - Test with lld-compatible args by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/627](https://github.com/rust-lang/backtrace-rs/pull/627) - Bump rustc-demangle version by [@&zed-industries#8203;michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/624](https://github.com/rust-lang/backtrace-rs/pull/624) - cleanup dead_code around cpp_demangle feature by [@&zed-industries#8203;klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/622](https://github.com/rust-lang/backtrace-rs/pull/622) - Cut backtrace 0.3.72 by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/628](https://github.com/rust-lang/backtrace-rs/pull/628) #### New Contributors - [@&zed-industries#8203;Enselic](https://github.com/Enselic) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/615](https://github.com/rust-lang/backtrace-rs/pull/615) - [@&zed-industries#8203;QuentinPerez](https://github.com/QuentinPerez) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/613](https://github.com/rust-lang/backtrace-rs/pull/613) - [@&zed-industries#8203;Gankra](https://github.com/Gankra) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/609](https://github.com/rust-lang/backtrace-rs/pull/609) **Full Changelog**: rust-lang/backtrace-rs@0.3.71...0.3.72 ### [`v0.3.71`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.71) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.70...0.3.71) This is mostly CI changes, with a very mild bump to our effective cc crate version recorded, and a small modification to a previous changeset to allow backtrace to run at its current checked-in MSRV on Windows. Sorry about that! We will be getting 0.3.70 yanked shortly. #### What's Changed - Make sgx functions exist with cfg(miri) by [@&zed-industries#8203;saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/591](https://github.com/rust-lang/backtrace-rs/pull/591) - Update version of cc crate by [@&zed-industries#8203;jfgoog](https://github.com/jfgoog) in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - Pull back MSRV on Windows by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/598](https://github.com/rust-lang/backtrace-rs/pull/598) - Force frame pointers on all i686 tests by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/601](https://github.com/rust-lang/backtrace-rs/pull/601) - Use rustc from stage0 instead of stage0-sysroot by [@&zed-industries#8203;Nilstrieb](https://github.com/Nilstrieb) in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) - Cut backtrace 0.3.71 by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/599](https://github.com/rust-lang/backtrace-rs/pull/599) #### New Contributors - [@&zed-industries#8203;jfgoog](https://github.com/jfgoog) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/592](https://github.com/rust-lang/backtrace-rs/pull/592) - [@&zed-industries#8203;Nilstrieb](https://github.com/Nilstrieb) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/602](https://github.com/rust-lang/backtrace-rs/pull/602) **Full Changelog**: rust-lang/backtrace-rs@0.3.70...0.3.71 ### [`v0.3.70`](https://github.com/rust-lang/backtrace-rs/releases/tag/0.3.70) [Compare Source](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.70) #### New API - A `BacktraceFrame` can now have `resolve(&mut self)` called on it thanks to [@&zed-industries#8203;fraillt](https://github.com/fraillt) in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) #### Platform Support We added support for new platforms in this release! - Thanks to [@&zed-industries#8203;bzEq](https://github.com/bzEq) in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) we now have AIX support! - Thanks to [@&zed-industries#8203;sthibaul](https://github.com/sthibaul) in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) we now have GNU/Hurd support! - Thanks to [@&zed-industries#8203;dpaoliello](https://github.com/dpaoliello) in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) we now support "emulation-compatible" AArch64 Windows (aka arm64ec) ##### Windows - Rewrite msvc backtrace support to be much faster on 64-bit platforms by [@&zed-industries#8203;wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - Fix i686-pc-windows-gnu missing dbghelp module by [@&zed-industries#8203;wesleywiser](https://github.com/wesleywiser) in [https://github.com/rust-lang/backtrace-rs/pull/571](https://github.com/rust-lang/backtrace-rs/pull/571) - Fix build errors on `thumbv7a-*-windows-msvc` targets by [@&zed-industries#8203;kleisauke](https://github.com/kleisauke) in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - Fix panic in backtrace symbolication on win7 by [@&zed-industries#8203;roblabla](https://github.com/roblabla) in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - remove few unused windows ffi fn by [@&zed-industries#8203;klensy](https://github.com/klensy) in [https://github.com/rust-lang/backtrace-rs/pull/576](https://github.com/rust-lang/backtrace-rs/pull/576) - Make dbghelp look for PDBs next to their exe/dll. by [@&zed-industries#8203;michaelwoerister](https://github.com/michaelwoerister) in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - Revert 32-bit dbghelp to a version WINE (presumably) likes by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/588](https://github.com/rust-lang/backtrace-rs/pull/588) - Update for Win10+ by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/589](https://github.com/rust-lang/backtrace-rs/pull/589) ##### SGX Thanks to - Adjust frame IP in SGX relative to image base by [@&zed-industries#8203;mzohreva](https://github.com/mzohreva) in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) #### Internals We did a bunch more work on our CI and internal cleanups - Modularise CI workflow and validate outputs for binary size checks. by [@&zed-industries#8203;detly](https://github.com/detly) in [https://github.com/rust-lang/backtrace-rs/pull/549](https://github.com/rust-lang/backtrace-rs/pull/549) - Commit Cargo.lock by [@&zed-industries#8203;bjorn3](https://github.com/bjorn3) in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - Enable calling build.rs externally v2 by [@&zed-industries#8203;pitaj](https://github.com/pitaj) in [https://github.com/rust-lang/backtrace-rs/pull/568](https://github.com/rust-lang/backtrace-rs/pull/568) - Upgrade to 2021 ed and inline panics by [@&zed-industries#8203;nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - Fix deny(unused) of an unused import with SGX + Miri by [@&zed-industries#8203;saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/581](https://github.com/rust-lang/backtrace-rs/pull/581) - Fix unused_imports warning on latest nightly by [@&zed-industries#8203;ChrisDenton](https://github.com/ChrisDenton) in [https://github.com/rust-lang/backtrace-rs/pull/575](https://github.com/rust-lang/backtrace-rs/pull/575) - Fix CI by [@&zed-industries#8203;saethlin](https://github.com/saethlin) in [https://github.com/rust-lang/backtrace-rs/pull/582](https://github.com/rust-lang/backtrace-rs/pull/582) - Use `addr_of!` by [@&zed-industries#8203;GrigorenkoPV](https://github.com/GrigorenkoPV) in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - Write down MSRV policy by [@&zed-industries#8203;workingjubilee](https://github.com/workingjubilee) in [https://github.com/rust-lang/backtrace-rs/pull/561](https://github.com/rust-lang/backtrace-rs/pull/561) - Apply clippy::uninlined_format_args fixes by [@&zed-industries#8203;nyurik](https://github.com/nyurik) in [https://github.com/rust-lang/backtrace-rs/pull/486](https://github.com/rust-lang/backtrace-rs/pull/486) - ignore clippy lints in `symbolize/gimli/stash.rs` by [@&zed-industries#8203;onur-ozkan](https://github.com/onur-ozkan) in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) #### New Contributors - [@&zed-industries#8203;nyurik](https://github.com/nyurik) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/538](https://github.com/rust-lang/backtrace-rs/pull/538) - [@&zed-industries#8203;bzEq](https://github.com/bzEq) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/508](https://github.com/rust-lang/backtrace-rs/pull/508) - [@&zed-industries#8203;bjorn3](https://github.com/bjorn3) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/562](https://github.com/rust-lang/backtrace-rs/pull/562) - [@&zed-industries#8203;sthibaul](https://github.com/sthibaul) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/567](https://github.com/rust-lang/backtrace-rs/pull/567) - [@&zed-industries#8203;mzohreva](https://github.com/mzohreva) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/566](https://github.com/rust-lang/backtrace-rs/pull/566) - [@&zed-industries#8203;wesleywiser](https://github.com/wesleywiser) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/569](https://github.com/rust-lang/backtrace-rs/pull/569) - [@&zed-industries#8203;kleisauke](https://github.com/kleisauke) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/573](https://github.com/rust-lang/backtrace-rs/pull/573) - [@&zed-industries#8203;roblabla](https://github.com/roblabla) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/578](https://github.com/rust-lang/backtrace-rs/pull/578) - [@&zed-industries#8203;michaelwoerister](https://github.com/michaelwoerister) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/584](https://github.com/rust-lang/backtrace-rs/pull/584) - [@&zed-industries#8203;dpaoliello](https://github.com/dpaoliello) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/587](https://github.com/rust-lang/backtrace-rs/pull/587) - [@&zed-industries#8203;GrigorenkoPV](https://github.com/GrigorenkoPV) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/585](https://github.com/rust-lang/backtrace-rs/pull/585) - [@&zed-industries#8203;fraillt](https://github.com/fraillt) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/526](https://github.com/rust-lang/backtrace-rs/pull/526) - [@&zed-industries#8203;onur-ozkan](https://github.com/onur-ozkan) made their first contribution in [https://github.com/rust-lang/backtrace-rs/pull/586](https://github.com/rust-lang/backtrace-rs/pull/586) **Full Changelog**: rust-lang/backtrace-rs@0.3.69...0.3.70 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- Release Notes: - N/A <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
The backtraces printed by
panic!
are broken in SGX, this PR is a prerequisite for fixing the issue in the standard library.The SGX-only API added in this PR (
backtrace::set_image_base
) enables the standard library to set the correct image base address before callingtrace_unsynchronized
here: https://github.com/rust-lang/rust/blob/1.72.1/library/std/src/sys_common/backtrace.rs#L65.cc @jethrogb