An adapter for enabling Rayon-based concurrency on the Web with WebAssembly.
Is there any reason why spawning futures on the worker would not work? What I am trying is this: ```rust #[cfg(target_arch = "wasm32")] rayon::spawn(|| { tracing::info!("Rayon works"); wasm_bindgen_futures::spawn_local(async move { tracing::info!("For real"); crate::components::rtt::run(receiver, event_receiver).await; }); }); ``` I only ever see the first log.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by Yatekii and has received 2 comments.