You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue tracks the tokio features required to land wasi support for Yew Runtime:
wasi target currently lacks networking capability in general.
(needed for CSR and SSR.)
This is primarily due to sockets under wasi is not standardised.
There is an alternative proposal for an HTTP interface.
tokio::fs for wasi.
(needed for SSG and potentially SSR.)
multi-threading support so prokio can reliably spawn futures to current thread.
The text was updated successfully, but these errors were encountered:
Tokio has just landed support for
wasm32-wasi
.However,
wasi
misses some essential features for Yew Runtime to become useful under wasi.wasi
can be used for:(wasi in Browser)
(wasi in JavaScript-capable WebAssembly Runtime & Standalone WebAssembly Runtime)
(wasi in JavaScript-capable WebAssembly Runtime & Standalone WebAssembly Runtime)
This issue tracks the tokio features required to land wasi support for Yew Runtime:
wasi
target currently lacks networking capability in general.(needed for CSR and SSR.)
This is primarily due to sockets under wasi is not standardised.
There is an alternative proposal for an HTTP interface.
tokio::fs
forwasi
.(needed for SSG and potentially SSR.)
The text was updated successfully, but these errors were encountered: