Skip to content

WasmEdge Rust SDK 0.14.0

Latest

Choose a tag to compare

@juntao juntao released this 17 Mar 02:49
e7a74ab

What's Changed

Bug Fixes

  • fix: gate TimeoutFiberFuture behind not(target_env = "musl") (#140)
    • TimeoutFiberFuture in wasmedge-sys referenced musl-gated symbols (JmpState, JMP_BUF, etc.) without itself being musl-gated, causing compilation errors on musl targets with the async feature
    • All TimeoutFiberFuture definitions are now gated with #[cfg(not(target_env = "musl"))]
    • Improved build_standalone.rs error messages for musl targets without the static feature

Crate Versions

  • wasmedge-sdk: 0.16.1
  • wasmedge-sys: 0.20.0
  • wasmedge-types: 0.5.1

Full Changelog: 0.13.2...0.14.0