forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#88151 - alexcrichton:update-backtrace, r=Mark…
…-Simulacrum Update the backtrace crate in libstd This commit updates the backtrace crate in libstd now that dependencies have been updated to use `memchr` from the standard library as well. This is mostly just making sure deps are up-to-date and have all the latest-and-greatest fixes and such. Closes rust-lang/backtrace-rs#432
- Loading branch information
Showing
4 changed files
with
20 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule backtrace
updated
29 files
+12 −21 | .github/workflows/main.yml | |
+25 −29 | Cargo.toml | |
+41 −0 | build.rs | |
+29 −0 | ci/debuglink-docker.sh | |
+75 −0 | ci/debuglink.sh | |
+2 −1 | ci/docker/x86_64-unknown-linux-gnu/Dockerfile | |
+5 −4 | crates/as-if-std/Cargo.toml | |
+0 −27 | crates/backtrace-sys/Cargo.toml | |
+0 −1 | crates/backtrace-sys/LICENSE-APACHE | |
+0 −1 | crates/backtrace-sys/LICENSE-MIT | |
+0 −168 | crates/backtrace-sys/build.rs | |
+0 −58 | crates/backtrace-sys/src/lib.rs | |
+0 −1 | crates/backtrace-sys/src/libbacktrace | |
+7 −0 | crates/debuglink/Cargo.toml | |
+34 −0 | crates/debuglink/src/main.rs | |
+0 −0 | src/android-api.c | |
+35 −0 | src/capture.rs | |
+3 −21 | src/dbghelp.rs | |
+46 −22 | src/symbolize/gimli.rs | |
+11 −10 | src/symbolize/gimli/coff.rs | |
+243 −8 | src/symbolize/gimli/elf.rs | |
+2 −1 | src/symbolize/gimli/libs_haiku.rs | |
+3 −3 | src/symbolize/gimli/libs_macos.rs | |
+18 −17 | src/symbolize/gimli/macho.rs | |
+20 −0 | src/symbolize/gimli/stash.rs | |
+0 −460 | src/symbolize/libbacktrace.rs | |
+1 −11 | src/symbolize/mod.rs | |
+7 −7 | tests/accuracy/main.rs | |
+17 −59 | tests/smoke.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters