Skip to content

v0.3.5

Latest
Compare
Choose a tag to compare
@h33p h33p released this 24 Apr 11:21
· 2 commits to main since this release
a18dce0

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_default will default all functions to support unwinding, which can be overridden with #[no_unwind_abi] attribute.
  • unwind_abi_ext will add #[unwind_abi] to all functions in the builtin ext system.

Add CWaker

Exposes CWaker as a static stable ABI waker type.