unwind-rs
unwind-rs copied to clipboard
Updates the requirements on [env_logger](https://github.com/sebasmagri/env_logger) to permit the latest version. Release notes *Sourced from [env_logger's releases](https://github.com/sebasmagri/env_logger/releases).* > ## 0.7.0 > # Key Changes > > - Indent multiline messages by...
Updates the requirements on [fallible-iterator](https://github.com/sfackler/rust-fallible-iterator) to permit the latest version. Changelog *Sourced from [fallible-iterator's changelog](https://github.com/sfackler/rust-fallible-iterator/blob/master/CHANGELOG.md).* > ## [v0.2.0] - 2019-03-10 > > ### Changed > > * All closures used...
When running the demo example on my machine (64-bit linux) using a new-ish nightly (rustc 1.33.0-nightly (b2b7a063a 2019-01-01)), unwind-rs crashes. ``` [roblabla@roblab unwind-rs]$ cargo run --example demo Finished dev [unoptimized...
Hey, This is not ready to be merged yet, but I figured I'd submit the PR early to get some feedback. So I added a partially working unwinder for AArch64...
Unwind-rs has a bunch of unwraps/panics/asserts. This is troublesome when using unwind-rs as a program unwinder, as it may cause it to infinite loop, eventually stack overflowing. Instead, it should...
Depends on https://github.com/gimli-rs/gimli/pull/319 Mostly necessary in the case of an i686 backend (unless someone happens upon a compiler/binary that uses them on other archs).
Unwind is already taken on crates.io for high-level bindings to libunwind., and libstd has its own unwind crate with bindings to the (other) libunwind.
I've had a look at some of the alternatives of doing a stack walk on stack overflow and I want to try and see if I can use unwind-rs to...