Changes in 0.3.5:
Support C-unwind ABI
Adds support for extern "C-unwind" ABI through #[unwind_abi] attribute and unwind_abi_default/unwind_abi_ext feature flags:
unwind_abi_defaultwill default all functions to support unwinding, which can be overridden with#[no_unwind_abi]attribute.unwind_abi_extwill add#[unwind_abi]to all functions in the builtin ext system.
Add CWaker
Exposes CWaker as a static stable ABI waker type.