unwind_aborts
Prevent your panics from unwinding past FFI boundaries with this one simple trick!
Intended to be used in place of #[unwind(aborts)]
until it is stabilized.
Usage
Add this to your [dependencies] in Cargo.toml:
= "0.1.0"
Annotate your functions with #[unwind_aborts] to catch stack unwinding and
abort the process instead:
use unwind_aborts;
pub extern
The example above is equivalent to:
pub extern