w3reality / wasm-mt

A multithreading library for Rust and WebAssembly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does This Only Work With #![feature(async_closure)]?

zicklag opened this issue · comments

Is it possible to use wasm-mt without requring the nightly feature flag?

Unfortunately not for now. Aside from the async_closure nightly feature, wasm-mt fundamentally depends on the serde_traitobject crate that requires Rust nightly.

Ah, OK. Thanks 🙂 👍