-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump backtrace to rust-lang/backtrace@fc37b22
It should be 0.3.74~ish. This should help with Android backtraces.
- Loading branch information
1 parent
bf662eb
commit 1e375a0
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule backtrace
updated
30 files
+167 −169 | .github/workflows/main.yml | |
+123 −31 | Cargo.lock | |
+3 −26 | Cargo.toml | |
+63 −0 | bindings.txt | |
+0 −55 | build.rs | |
+2 −2 | ci/android-ndk.sh | |
+1 −1 | ci/docker/arm-linux-androideabi/Dockerfile | |
+1 −1 | ci/docker/armv7-linux-androideabi/Dockerfile | |
+1 −1 | ci/docker/i686-linux-android/Dockerfile | |
+4 −4 | crates/as-if-std/Cargo.toml | |
+0 −8 | crates/as-if-std/build.rs | |
+1 −0 | crates/cpp_smoke_test/Cargo.toml | |
+8 −8 | src/backtrace/dbghelp32.rs | |
+11 −11 | src/backtrace/dbghelp64.rs | |
+0 −1 | src/backtrace/mod.rs | |
+110 −15 | src/capture.rs | |
+71 −129 | src/dbghelp.rs | |
+2 −1 | src/lib.rs | |
+2 −3 | src/print.rs | |
+10 −10 | src/symbolize/dbghelp.rs | |
+7 −8 | src/symbolize/gimli.rs | |
+2 −2 | src/symbolize/gimli/libs_windows.rs | |
+7 −5 | src/symbolize/gimli/mmap_windows.rs | |
+2 −2 | src/symbolize/mod.rs | |
+0 −749 | src/windows.rs | |
+893 −0 | src/windows_sys.rs | |
+3 −3 | tests/concurrent-panics.rs | |
+10 −0 | tests/current-exe-mismatch.rs | |
+8 −5 | tests/skip_inner_frames.rs | |
+21 −19 | tests/smoke.rs |